/* ==========================================================================
   Typeface — FiraGO (SIL OFL), Georgian + Latin grotesque
   ========================================================================== */
@font-face {
  font-family: 'FiraGO';
  src: url('../fonts/firago-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'FiraGO';
  src: url('../fonts/firago-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'FiraGO';
  src: url('../fonts/firago-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'FiraGO';
  src: url('../fonts/firago-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ==========================================================================
   BIG ლომბარდი — design system
   Brand colours sampled from the logo: purple #7F008F · red #CC0000
   ========================================================================== */

:root {
  /* brand */
  --purple:      #7F008F;
  --purple-600:  #6B0079;
  --purple-700:  #55005F;
  --purple-800:  #3E0046;
  --purple-900:  #26002C;
  --purple-400:  #A63BB4;
  --purple-300:  #C77FD1;
  --purple-200:  #E9CDED;
  --purple-100:  #F7EDF9;
  --red:         #CC0000;
  --red-600:     #A80000;
  --red-400:     #F04438;
  --red-100:     #FDEDED;

  /* neutrals */
  --ink:      #180A1B;
  --ink-2:    #3B2C40;
  --body:     #5E4F63;
  --muted:    #8E7F92;
  --line:     #ECE2EE;
  --line-2:   #F6F0F7;
  --bg:       #FFFFFF;
  --bg-soft:  #FBF8FC;
  --bg-deep:  #F5EFF7;

  /* radii */
  --r-xs: 10px;
  --r-sm: 14px;
  --r:    20px;
  --r-lg: 26px;
  --r-xl: 34px;

  /* elevation — tinted, never grey */
  --sh-xs: 0 1px 2px rgba(38,0,44,.05), 0 2px 6px rgba(38,0,44,.04);
  --sh-sm: 0 2px 6px rgba(38,0,44,.05), 0 8px 20px rgba(38,0,44,.06);
  --sh:    0 4px 12px rgba(38,0,44,.06), 0 18px 40px rgba(38,0,44,.09);
  --sh-lg: 0 8px 22px rgba(38,0,44,.08), 0 34px 70px rgba(38,0,44,.14);
  --sh-p:  0 10px 24px rgba(127,0,143,.24), 0 22px 48px rgba(127,0,143,.18);
  --sh-r:  0 10px 24px rgba(204,0,0,.22), 0 22px 48px rgba(204,0,0,.16);

  /* gradients */
  --g-purple: linear-gradient(135deg, var(--purple) 0%, var(--purple-700) 100%);
  --g-red:    linear-gradient(135deg, var(--red) 0%, var(--red-600) 100%);
  --g-brand:  linear-gradient(105deg, var(--purple) 0%, #A3149B 48%, var(--red) 100%);
  --g-deep:   linear-gradient(155deg, #2E0035 0%, #5B0068 32%, #8B006F 64%, #A31414 100%);

  --font: 'FiraGO', 'Helvetica Neue', Helvetica, Arial, system-ui, -apple-system, sans-serif;
  --wrap: 1220px;
  --gut: 24px;
  --header-h: 78px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-back: cubic-bezier(.34, 1.4, .64, 1);
}

/* ============================================================ base */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.72;
  color: var(--body);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
}

img, svg, video, iframe { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
table { border-collapse: collapse; }

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.022em;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 1.35rem + 2.9vw, 3.7rem); letter-spacing: -.032em; }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.7rem); letter-spacing: -.028em; }
h3 { font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem); }
p  { text-wrap: pretty; }

::selection { background: var(--purple); color: #fff; }

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 3px solid var(--purple-400);
  outline-offset: 3px;
  border-radius: 8px;
}

.skip {
  position: fixed; left: -9999px; top: 0; z-index: 9999;
  background: var(--purple); color: #fff; padding: 14px 22px;
  border-radius: 0 0 14px 0; font-weight: 700;
}
.skip:focus { left: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================ layout */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.section { padding: clamp(58px, 3rem + 5vw, 118px) 0; position: relative; }
.section--tight { padding-top: clamp(30px, 1.6rem + 2.4vw, 58px); }
.section--soft { background: var(--bg-soft); }
.section--soft + .section--soft { padding-top: 0; }

/* keep every grid child from blowing out its track */
.services__grid > *, .prods > *, .cats > *, .steps > *,
.banks__grid > *, .reviews__grid > *, .infogrid > *,
.shop > *, .srv > *, .pdp > *, .about > *, .feature__inner > * { min-width: 0; }

/* ============================================================ type bits */

.section-head { max-width: 720px; margin-bottom: clamp(34px, 2rem + 2.4vw, 62px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 16px; font-size: 1.04rem; color: var(--body); }
.section-head--split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 26px; flex-wrap: wrap; max-width: none;
}
.section-head--split > div { max-width: 640px; }

.grad-text {
  background: var(--g-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.lead { font-size: 1.05rem; margin-top: 14px; }
.prose { max-width: 820px; margin-inline: auto; }
.prose p + p, .pdesc p + p, .srv__main > p + p, .feature p + p, .about__text p + p { margin-top: 15px; }

/* ============================================================ buttons */
.btn {
  --btn-bg: var(--g-purple);
  --btn-fg: #fff;
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 30px; border-radius: 999px;
  font-weight: 700; font-size: .96rem; letter-spacing: -.005em;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .3s var(--ease-back), box-shadow .3s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,.22), transparent 55%);
  opacity: .9;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.99); }

.btn--primary { box-shadow: var(--sh-p); }
.btn--primary:hover { box-shadow: 0 16px 32px rgba(127,0,143,.3), 0 32px 62px rgba(127,0,143,.24); }
.btn--red { --btn-bg: var(--g-red); box-shadow: var(--sh-r); }
.btn--red:hover { box-shadow: 0 16px 32px rgba(204,0,0,.28), 0 32px 62px rgba(204,0,0,.22); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--purple); border-color: var(--purple-200); }
.btn--ghost::after { display: none; }
.btn--ghost:hover { background: var(--purple); border-color: var(--purple); color: #fff; }
.btn--light {
  --btn-bg: rgba(255,255,255,.13); --btn-fg: #fff;
  border-color: rgba(255,255,255,.34); backdrop-filter: blur(10px);
}
.btn--light:hover { background: #fff; color: var(--purple); border-color: #fff; }
.btn--white { --btn-bg: #fff; --btn-fg: var(--purple); box-shadow: 0 14px 34px rgba(0,0,0,.22); }
.btn--sm { min-height: 44px; padding: 11px 22px; font-size: .88rem; }
.btn--block { width: 100%; }

/* ============================================================ topbar */
.topbar {
  background: var(--purple-900);
  color: rgba(255,255,255,.78);
  font-size: .83rem;
  position: relative; z-index: 2;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 44px; flex-wrap: wrap;
}
.topbar__list { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 15px; height: 15px; color: var(--purple-300); flex: none; }
.topbar a { transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar__social { display: flex; gap: 9px; }
.topbar__social a {
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255,255,255,.1); transition: .25s var(--ease);
}
.topbar__social a:hover { background: var(--red); transform: translateY(-2px); }
.topbar__social svg { width: 14px; height: 14px; }

/* ============================================================ header */
/* The blur lives on a pseudo-element, never on .header itself: an element with
   backdrop-filter becomes the containing block for its position:fixed children,
   which would trap the mobile drawer inside the header's own height. */
.header {
  position: sticky; top: 0; z-index: 900;
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s;
}
.header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: background .3s;
}
.header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 26px rgba(38,0,44,.07); }
.header.is-stuck::before { background: rgba(255,255,255,.96); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; height: var(--header-h);
}

.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 54px; width: auto; transition: transform .35s var(--ease-back); }
.brand:hover img { transform: scale(1.05); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav__head, .nav__foot { display: none; }
.nav > a {
  position: relative; padding: 10px 14px; border-radius: 11px;
  font-weight: 700; font-size: .94rem; color: var(--ink-2);
  transition: color .22s, background .22s;
}
.nav > a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 2.5px;
  background: var(--g-brand); border-radius: 3px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav > a:hover { color: var(--purple); }
.nav > a:hover::after, .nav > a.is-active::after { transform: scaleX(1); }
.nav > a.is-active { color: var(--purple); }

.header__cta { display: flex; align-items: center; gap: 12px; flex: none; }
.header__phone {
  display: inline-flex; align-items: center; gap: 11px;
  font-weight: 700; color: var(--purple); font-size: 1rem; white-space: nowrap;
  padding: 6px 6px 6px 6px; border-radius: 999px;
}
.header__phone .ico {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--g-purple); color: #fff; box-shadow: var(--sh-p); flex: none;
}
.header__phone .ico svg { width: 17px; height: 17px; animation: ring 3.4s infinite; }
@keyframes ring {
  0%, 70%, 100% { transform: rotate(0); }
  74% { transform: rotate(14deg); } 78% { transform: rotate(-14deg); }
  82% { transform: rotate(10deg); } 86% { transform: rotate(-10deg); } 90% { transform: rotate(0); }
}

.burger {
  display: none; width: 48px; height: 48px; border-radius: 14px;
  background: var(--purple-100); border: 1px solid var(--purple-200);
  place-items: center; align-content: center;
}
.burger span {
  display: block; width: 20px; height: 2.5px; margin: 4px auto;
  background: var(--purple); border-radius: 3px;
  transition: transform .35s var(--ease), opacity .2s;
}
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.navdim {
  position: fixed; inset: 0; z-index: 880;
  background: rgba(24,10,27,.5); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .3s;
}
.navdim.is-on { opacity: 1; }

/* ============================================================ hero */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg);
  padding: clamp(34px, 2rem + 3vw, 68px) 0 clamp(44px, 2.4rem + 3vw, 76px);
}
.hero__wash {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(720px 460px at 88% 6%, rgba(127,0,143,.09), transparent 64%),
    radial-gradient(560px 420px at 4% 96%, rgba(204,0,0,.06), transparent 64%);
}
.hero__inner { position: relative; z-index: 1; }

/* slides stack in one grid cell — switching can never change the height */
.hero__slides { display: grid; }
.hero__slide {
  grid-area: 1 / 1;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(28px, 2rem + 3vw, 64px); align-items: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .5s var(--ease), visibility 0s .5s;
}
.hero__slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }

.hero__text > * { opacity: 0; }
.hero__slide.is-active .hero__text > * { animation: heroIn .7s var(--ease) forwards; }
.hero__slide.is-active .hero__text > *:nth-child(1) { animation-delay: .05s; }
.hero__slide.is-active .hero__text > *:nth-child(2) { animation-delay: .13s; }
.hero__slide.is-active .hero__text > *:nth-child(3) { animation-delay: .19s; }
.hero__slide.is-active .hero__text > *:nth-child(4) { animation-delay: .27s; }
.hero__slide.is-active .hero__text > *:nth-child(5) { animation-delay: .35s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 20px;
  background: var(--purple-100); color: var(--purple);
  font-size: .78rem; font-weight: 700;
}
.hero__tag svg { width: 15px; height: 15px; }

.hero__t {
  color: var(--ink); margin-bottom: 4px;
  font-size: clamp(1.9rem, 1.2rem + 3.1vw, 3.5rem);
  font-weight: 700; line-height: 1.14; letter-spacing: -.034em;
}
h1.hero__t { margin-top: 0; }
.hero__stroke {
  display: block; width: clamp(150px, 30%, 240px); height: auto;
  color: var(--red); margin-bottom: 22px;
}
.hero__sub {
  color: var(--body); font-size: clamp(1rem, .95rem + .35vw, 1.14rem);
  max-width: 520px; margin-bottom: 32px;
}
.hero__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__link {
  display: inline-flex; align-items: center; gap: 11px;
  font-weight: 700; font-size: .95rem; color: var(--ink);
}
.hero__link i {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--g-red); color: #fff; box-shadow: var(--sh-r);
  transition: transform .3s var(--ease);
}
.hero__link i svg { width: 15px; height: 15px; }
.hero__link:hover i { transform: translateX(5px); }

/* ---- media side ---- */
.hero__media { position: relative; }
.hero__panel {
  position: absolute; inset: 12% -3% -8% 8%; z-index: 0;
  background: var(--bg-deep); border-radius: var(--r-xl);
}
.hero__media > img,
.hero__ph {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r-xl); box-shadow: var(--sh-lg);
}
.hero__ph {
  display: grid; place-items: center; overflow: hidden; isolation: isolate;
  background: linear-gradient(148deg, #3E0046 0%, var(--purple-700) 42%, #8E0071 78%, #A31414 100%);
}
.hero__ph::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 8%, transparent 74%);
  mask-image: radial-gradient(circle at 50% 45%, #000 8%, transparent 74%);
}
.hero__phglow {
  position: absolute; width: 58%; aspect-ratio: 1; border-radius: 50%;
  background: rgba(255,255,255,.2); filter: blur(52px);
}
.hero__ph svg {
  position: relative; width: 26%; max-width: 130px; height: auto;
  color: #fff; stroke-width: 1.4; filter: drop-shadow(0 16px 34px rgba(0,0,0,.34));
}

/* ---- controls ---- */
.hero__nav {
  display: flex; align-items: center; gap: 14px;
  margin-top: clamp(24px, 2vw, 36px);
}
.hero__arw {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); color: var(--ink);
  box-shadow: var(--sh-sm); transition: .25s var(--ease);
}
.hero__arw svg { width: 18px; height: 18px; }
.hero__arw:hover { background: var(--g-purple); border-color: transparent; color: #fff; box-shadow: var(--sh-p); }
.hero__dots { display: flex; align-items: center; gap: 9px; }
.hero__dots button {
  width: 9px; height: 9px; border-radius: 999px; padding: 0;
  background: var(--purple-200); transition: .3s var(--ease);
}
.hero__dots button.is-active { background: var(--red); width: 30px; }

.hero__note {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 22px;
  color: var(--muted); font-size: .88rem; font-weight: 600;
}
.hero__note svg { width: 18px; height: 18px; color: #16A34A; flex: none; }

/* ============================================================ strip */
.strip { position: relative; z-index: 10; }
.strip__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lg);
}
.strip__item {
  background: #fff; padding: 26px 24px;
  display: flex; align-items: center; gap: 16px; transition: background .25s;
}
.strip__item:hover { background: var(--bg-soft); }
.strip__ico {
  width: 50px; height: 50px; flex: none; border-radius: 15px;
  display: grid; place-items: center; background: var(--purple-100); color: var(--purple);
  border: 1px solid var(--purple-200);
}
.strip__item:nth-child(2) .strip__ico { background: var(--red-100); color: var(--red); border-color: #F8D4D4; }
.strip__ico svg { width: 22px; height: 22px; }
.strip__t { display: block; font-weight: 700; color: var(--ink); font-size: .97rem; }
.strip__d { display: block; font-size: .85rem; color: var(--muted); line-height: 1.5; margin-top: 2px; }

/* ============================================================ cards */
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(276px, 1fr)); gap: 24px; }
.services__grid--wide { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }

.card {
  --accent: var(--purple);
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px 28px 30px; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.card--red { --accent: var(--red); }
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--g-purple); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.card--red::before { background: var(--g-red); }
.card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card__img { margin: -32px -28px 22px; aspect-ratio: 16/9; overflow: hidden; background: var(--bg-soft); }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__img img { transform: scale(1.06); }

.card__ico {
  width: 62px; height: 62px; border-radius: 19px; display: grid; place-items: center;
  background: var(--g-purple); color: #fff; margin-bottom: 20px;
  box-shadow: var(--sh-p); transition: transform .4s var(--ease-back);
}
.card--red .card__ico { background: var(--g-red); box-shadow: var(--sh-r); }
.card:hover .card__ico { transform: rotate(-7deg) scale(1.07); }
.card__ico svg { width: 28px; height: 28px; }

.card h2, .card h3 { margin-bottom: 11px; }
.card h2 a, .card h3 a { color: inherit; transition: color .2s; }
.card h2 a:hover, .card h3 a:hover { color: var(--accent); }
.card p { font-size: .94rem; margin-bottom: 18px; }
.card--lg { padding: 36px 32px 32px; }
.card--lg h2 { font-size: clamp(1.22rem, 1.1rem + .5vw, 1.48rem); }

.card__list { display: grid; gap: 10px; }
.card__list li { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; }
.card__list svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--accent); }

.card__more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 20px;
  font-weight: 700; font-size: .89rem; color: var(--accent);
}
.card__more svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.card:hover .card__more svg { transform: translateX(5px); }

/* ============================================================ feature */
.feature { position: relative; overflow: hidden; background: var(--purple-900); color: #fff; isolation: isolate; }
.feature::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(680px 460px at 80% 18%, rgba(204,0,0,.44), transparent 62%),
    radial-gradient(600px 440px at 8% 84%, rgba(127,0,143,.72), transparent 62%),
    linear-gradient(160deg, #2E0035, #4A0055);
}
.feature__inner {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(32px, 2rem + 3vw, 68px); align-items: center;
}
.feature h2 { color: #fff; }
.feature p { color: rgba(255,255,255,.8); }
.feature .feature__actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 30px; }

.phonecard {
  position: relative;
  background: linear-gradient(155deg, rgba(255,255,255,.11), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.17);
  border-radius: var(--r-xl); padding: 32px 28px;
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px rgba(0,0,0,.4);
}
.phonecard__t { color: #fff; font-size: 1.04rem; margin-bottom: 22px; }
.phonecard__steps { display: grid; gap: 17px; }
.phonecard__step { display: flex; gap: 15px; align-items: flex-start; }
.phonecard__num {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--g-red); color: #fff; font-weight: 700; font-size: .84rem;
  line-height: 1; box-shadow: 0 8px 20px rgba(204,0,0,.5);
}
.phonecard__step strong { display: block; color: #fff; font-size: .94rem; margin-bottom: 2px; }
.phonecard__step > div span { display: block; font-size: .85rem; color: rgba(255,255,255,.66); line-height: 1.55; }
.phonecard__warn {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: 24px; padding: 14px 16px; border-radius: var(--r-xs);
  background: rgba(204,0,0,.2); border: 1px solid rgba(255,120,120,.28);
  font-size: .85rem; color: #FFDCDC;
}
.phonecard__warn svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }

/* ============================================================ steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); gap: 22px; counter-reset: s; }
.step {
  position: relative; padding: 30px 26px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--sh); border-color: transparent; }
.step__num {
  counter-increment: s; display: grid; place-items: center;
  width: 54px; height: 54px; border-radius: 17px; margin-bottom: 18px;
  background: var(--purple-100); color: var(--purple);
  border: 1px solid var(--purple-200);
  font-weight: 700; font-size: 1.12rem; transition: .4s var(--ease);
}
.step__num::before { content: counter(s, decimal-leading-zero); }
.step:hover .step__num { background: var(--g-purple); color: #fff; border-color: transparent; box-shadow: var(--sh-p); }
.step h3 { font-size: 1.08rem; margin-bottom: 9px; }
.step p { font-size: .91rem; }
.step::after {
  content: ''; position: absolute; top: 56px; right: -12px; width: 24px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--purple-300) 0 5px, transparent 5px 10px);
}
.step:last-child::after { display: none; }

/* ============================================================ stats */
.stats { background: var(--g-purple); position: relative; overflow: hidden; isolation: isolate; }
.stats::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(560px 340px at 86% 18%, rgba(204,0,0,.42), transparent 62%);
}
.stats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 28px; text-align: center; }
.stat__v {
  display: block; font-size: clamp(2rem, 1.4rem + 2.4vw, 3.1rem);
  font-weight: 700; color: #fff; line-height: 1.05; letter-spacing: -.035em;
}
.stat__l { display: block; color: rgba(255,255,255,.74); font-size: .88rem; margin-top: 8px; font-weight: 600; }

/* ============================================================ about */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 2rem + 3vw, 68px); align-items: center; }
.about__media { position: relative; }
.about__media > img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--sh-lg); aspect-ratio: 4/3; object-fit: cover; }
.about__ph {
  aspect-ratio: 4/3; border-radius: var(--r-xl); display: grid; place-items: center;
  background: var(--g-purple); box-shadow: var(--sh-lg); position: relative; overflow: hidden; isolation: isolate;
}
.about__ph::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(420px 320px at 82% 82%, rgba(204,0,0,.5), transparent 60%);
}
.about__ph img {
  width: 68%; max-width: 320px; border-radius: 22px;
  background: #fff; padding: 20px 24px; box-shadow: 0 26px 60px rgba(0,0,0,.34);
}
.about__badge {
  position: absolute; left: -20px; bottom: -22px;
  background: #fff; border-radius: var(--r); padding: 18px 24px;
  box-shadow: var(--sh-lg); display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line);
}
.about__badge .n { font-size: 1.85rem; font-weight: 700; color: var(--red); line-height: 1; }
.about__badge .n small { font-size: 1rem; }
.about__badge .t { font-size: .8rem; color: var(--muted); font-weight: 700; line-height: 1.35; }
.about__text .feature__actions { margin-top: 28px; }

/* ============================================================ banks */
.banks__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.banks__grid--lg { grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.bank {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 24px; text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.bank--lg { padding: 38px 28px; }
.bank:hover { transform: translateY(-6px); box-shadow: var(--sh); border-color: transparent; }
.bank__logo { height: 58px; display: grid; place-items: center; margin-bottom: 16px; }
.bank__logo img { max-height: 58px; width: auto; object-fit: contain; }
.bank__mark {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center;
  background: var(--purple-100); color: var(--purple); border: 1px solid var(--purple-200);
}
.bank__mark svg { width: 26px; height: 26px; }
.bank__name { display: block; font-weight: 700; color: var(--ink); font-size: 1rem; }
.bank__note {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 6px;
  font-size: .84rem; color: var(--muted);
}
.bank__note svg { width: 15px; height: 15px; color: #16A34A; }

/* ============================================================ reviews */
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(292px, 1fr)); gap: 22px; }
.review {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 26px; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.review:hover { transform: translateY(-6px); box-shadow: var(--sh); border-color: transparent; }
.review__quote {
  position: absolute; top: 14px; right: 24px; font-size: 4.4rem; line-height: 1;
  color: var(--purple-100); font-weight: 700; pointer-events: none;
}
.review__stars { display: flex; gap: 3px; margin-bottom: 15px; }
.review__stars svg { width: 17px; height: 17px; color: #F5A623; }
.review p { font-size: .94rem; margin-bottom: 20px; position: relative; }
.review__author { display: flex; align-items: center; gap: 13px; }
.review__av {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--g-purple); color: #fff; font-weight: 700; font-size: 1rem; flex: none;
}
.review__author > span:last-child { display: grid; }
.review__name { font-weight: 700; color: var(--ink); font-size: .94rem; }
.review__city { font-size: .81rem; color: var(--muted); }

/* ============================================================ gallery */
.gallery__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 16px; }
.gitem { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; background: var(--bg-deep); }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gitem:hover img { transform: scale(1.07); }
.gitem figcaption {
  position: absolute; inset: auto 0 0 0; padding: 28px 18px 15px;
  color: #fff; font-size: .87rem; font-weight: 700;
  background: linear-gradient(transparent, rgba(24,10,27,.9));
  transform: translateY(6px); opacity: 0; transition: .35s var(--ease);
}
.gitem:hover figcaption { transform: none; opacity: 1; }

/* ============================================================ faq */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 11px; }
.faq__item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; transition: border-color .3s, box-shadow .3s;
}
.faq__item.is-open { border-color: var(--purple-200); box-shadow: var(--sh-sm); }
.faq h2 { font-size: inherit; font-weight: inherit; letter-spacing: normal; }
.faq__q {
  width: 100%; min-height: 58px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 18px 22px; text-align: start;
  font-weight: 700; color: var(--ink); font-size: .99rem; line-height: 1.5;
  transition: color .2s;
}
.faq__q:hover { color: var(--purple); }
.faq__ic {
  width: 32px; height: 32px; flex: none; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--purple-100); color: var(--purple); transition: .35s var(--ease);
}
.faq__ic svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.faq__item.is-open .faq__ic { background: var(--g-purple); color: #fff; }
.faq__item.is-open .faq__ic svg { transform: rotate(180deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 22px 20px; font-size: .93rem; }

/* ============================================================ shop: categories */
.cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(158px, 1fr)); gap: 13px; margin-bottom: 36px; }
.cat {
  display: grid; justify-items: center; gap: 4px; text-align: center;
  padding: 22px 14px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); min-height: 128px; align-content: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.cat:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: transparent; }
.cat__ico {
  width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center;
  background: var(--purple-100); color: var(--purple); margin-bottom: 8px;
  border: 1px solid var(--purple-200); transition: .35s var(--ease);
}
.cat:hover .cat__ico { background: var(--g-purple); color: #fff; border-color: transparent; box-shadow: var(--sh-p); }
.cat__ico svg { width: 22px; height: 22px; }
.cat__n { font-weight: 700; color: var(--ink); font-size: .93rem; line-height: 1.35; }
.cat__c { font-size: .76rem; color: var(--muted); }

/* ============================================================ product cards */
.prods { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 20px; }
.prods--3 { grid-template-columns: repeat(auto-fill, minmax(256px, 1fr)); }
.prods--4 { grid-template-columns: repeat(auto-fill, minmax(228px, 1fr)); }

.prod {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.prod:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: transparent; }

.prod__media {
  position: relative; display: grid; place-items: center;
  aspect-ratio: 1/1; background: var(--bg-soft); overflow: hidden;
}
.prod__media > img {
  width: 100%; height: 100%; object-fit: contain; padding: 16px;
  transition: transform .55s var(--ease);
}
.prod:hover .prod__media > img { transform: scale(1.06); }

/* designed placeholder for products with no photo yet */
.prod__ph {
  --pa: var(--purple); --pb: var(--red);
  position: relative; display: grid; place-items: center;
  width: 100%; height: 100%; overflow: hidden;
  background: linear-gradient(145deg, var(--pa), var(--pb));
}
.prod__ph::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(circle at 50% 42%, #000 6%, transparent 72%);
  mask-image: radial-gradient(circle at 50% 42%, #000 6%, transparent 72%);
  opacity: .5;
}
.prod__ph-glow {
  position: absolute; width: 68%; aspect-ratio: 1; border-radius: 50%;
  background: rgba(255,255,255,.24); filter: blur(34px);
}
.prod__ph svg {
  position: relative; width: 40%; max-width: 84px; height: auto;
  color: #fff; opacity: .95;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.28));
  stroke-width: 1.5;
}
.prod:hover .prod__ph svg { transform: scale(1.06); transition: transform .5s var(--ease); }

.prod__tags {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
}
.tag {
  padding: 5px 11px; border-radius: 999px;
  font-size: .71rem; font-weight: 700; letter-spacing: .02em;
  background: var(--g-purple); color: #fff; box-shadow: 0 6px 16px rgba(38,0,44,.24);
}
.tag--red { background: var(--g-red); }
.tag--soft { background: rgba(255,255,255,.94); color: var(--ink-2); box-shadow: var(--sh-xs); }

.prod__body { padding: 18px 18px 16px; display: flex; flex-direction: column; flex: 1; }
.prod__cat {
  font-size: .74rem; font-weight: 700; color: var(--purple);
  text-transform: uppercase; letter-spacing: .07em;
}
.prod__cat:hover { text-decoration: underline; }
.prod__name { font-size: .99rem; margin: 7px 0 6px; line-height: 1.38; }
.prod__name a { color: var(--ink); transition: color .2s; }
.prod__name a:hover { color: var(--purple); }
.prod__desc { font-size: .84rem; color: var(--muted); line-height: 1.55; margin-bottom: 15px; }
.prod__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.prod__price { display: grid; }
.prod__price s { font-size: .79rem; color: var(--muted); }
.prod__price strong { font-size: 1.14rem; font-weight: 700; color: var(--ink); letter-spacing: -.025em; }
.prod__btn {
  width: 42px; height: 42px; flex: none; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--purple-100); color: var(--purple); transition: .3s var(--ease);
}
.prod__btn svg { width: 18px; height: 18px; }
.prod:hover .prod__btn { background: var(--g-purple); color: #fff; box-shadow: var(--sh-p); }

/* ============================================================ shop layout */
.shopbar {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: space-between;
  padding: 14px 18px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); margin-bottom: 28px; box-shadow: var(--sh-xs);
}
.shopbar__search { display: flex; align-items: center; gap: 10px; flex: 1 1 340px; min-width: 0; }
.shopbar__search > svg { width: 18px; height: 18px; color: var(--muted); flex: none; }
.shopbar__search input {
  flex: 1; min-width: 0; padding: 12px 15px;
  border: 1.5px solid var(--line); border-radius: var(--r-xs);
  background: var(--bg-soft); font-size: 16px;
}
.shopbar__search input:focus {
  outline: none; border-color: var(--purple); background: #fff;
  box-shadow: 0 0 0 4px rgba(127,0,143,.1);
}
.shopbar__sort { display: flex; align-items: center; gap: 10px; font-size: .86rem; color: var(--muted); font-weight: 700; }
.shopbar__sort select {
  padding: 11px 14px; border: 1.5px solid var(--line); border-radius: var(--r-xs);
  background: var(--bg-soft); font-weight: 700; color: var(--ink); font-size: .89rem; cursor: pointer;
}
.shopbar__sort select:focus { outline: none; border-color: var(--purple); }

.shop { display: grid; grid-template-columns: 268px 1fr; gap: 28px; align-items: start; }
.shop__side { display: grid; gap: 16px; position: sticky; top: calc(var(--header-h) + 16px); }
.shop__count { font-size: .9rem; color: var(--muted); margin-bottom: 18px; }
.shop__count strong { color: var(--ink); }

.sidebox { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 20px; }
.sidebox__t { font-size: 1rem; margin-bottom: 15px; }
.sidebox--cta {
  background: var(--g-purple); color: rgba(255,255,255,.86);
  border-color: transparent; box-shadow: var(--sh-p); position: relative; overflow: hidden; isolation: isolate;
}
.sidebox--cta::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(320px 220px at 90% 12%, rgba(204,0,0,.5), transparent 64%);
}
.sidebox--cta .sidebox__t { color: #fff; }
.sidebox--cta p { font-size: .88rem; margin-bottom: 16px; }
.sidebox__ico {
  width: 46px; height: 46px; border-radius: 15px; display: grid; place-items: center;
  background: rgba(255,255,255,.16); color: #fff; margin-bottom: 15px;
}
.sidebox__ico svg { width: 22px; height: 22px; }
.sidebox__banks { display: grid; gap: 9px; margin-bottom: 17px; font-size: .88rem; }
.sidebox__banks li { display: flex; align-items: center; gap: 9px; }
.sidebox__banks svg { width: 15px; height: 15px; flex: none; color: #8CEFB4; }
.sidebox:not(.sidebox--cta) .sidebox__banks svg { color: #16A34A; }
.sidebox--cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.sidebox--cta .btn--ghost:hover { background: #fff; color: var(--purple); }
.sidebox__link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: .87rem; color: var(--purple); }
.sidebox__link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.sidebox__link:hover svg { transform: translateX(3px); }

.sidelist { display: grid; gap: 3px; }
.sidelist a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  min-height: 46px; padding: 10px 13px; border-radius: 12px;
  font-size: .91rem; font-weight: 700; color: var(--body); transition: .22s;
}
.sidelist a > span { display: inline-flex; align-items: center; gap: 9px; min-width: 0; }
.sidelist svg { width: 16px; height: 16px; color: var(--muted); flex: none; }
.sidelist b { font-size: .77rem; color: var(--muted); font-weight: 700; flex: none; }
.sidelist a:hover { background: var(--purple-100); color: var(--purple); }
.sidelist a:hover svg, .sidelist a:hover b { color: var(--purple); }
.sidelist a.is-active { background: var(--g-purple); color: #fff; box-shadow: var(--sh-p); }
.sidelist a.is-active svg, .sidelist a.is-active b { color: #fff; }

/* ============================================================ pager */
.pager { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 42px; }
.pager a {
  min-width: 46px; height: 46px; padding: 0 15px; border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: #fff; border: 1px solid var(--line);
  font-weight: 700; font-size: .89rem; color: var(--body); transition: .25s var(--ease);
}
.pager svg { width: 15px; height: 15px; }
.pager a:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-2px); }
.pager a.is-active { background: var(--g-purple); color: #fff; border-color: transparent; box-shadow: var(--sh-p); }

/* ============================================================ empty */
.empty { text-align: center; max-width: 540px; margin: 36px auto; padding: 44px 24px; }
.empty__ico {
  width: 84px; height: 84px; border-radius: 27px; display: grid; place-items: center;
  margin: 0 auto 22px; background: var(--purple-100); color: var(--purple);
  border: 1px solid var(--purple-200);
}
.empty__ico svg { width: 38px; height: 38px; }
.empty h1, .empty h2 { margin-bottom: 12px; }
.empty p { margin-bottom: 24px; }
.empty__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.empty--404 { padding-top: 10px; }
.empty__code {
  display: block; font-size: clamp(4.4rem, 3rem + 9vw, 8rem); font-weight: 700; line-height: 1;
  background: var(--g-brand); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; margin-bottom: 8px; letter-spacing: -.045em;
}

/* ============================================================ breadcrumbs */
.crumbs { background: var(--bg-soft); border-bottom: 1px solid var(--line); font-size: .85rem; }
.crumbs ol { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; padding: 13px 0; }
.crumbs li { display: inline-flex; align-items: center; gap: 4px; color: var(--muted); }
.crumbs a { color: var(--purple); font-weight: 700; }
.crumbs a:hover { text-decoration: underline; }
.crumbs svg { width: 14px; height: 14px; color: var(--muted); opacity: .55; }
.crumbs [aria-current] { color: var(--muted); font-weight: 600; }

/* ============================================================ page hero */
.phero {
  position: relative; overflow: hidden; background: var(--purple-900);
  padding: clamp(48px, 2.6rem + 4vw, 96px) 0; isolation: isolate;
}
.phero__bg { position: absolute; inset: 0; z-index: -1; background: var(--g-deep); }
.phero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(640px 400px at 12% 8%, rgba(255,255,255,.17), transparent 62%),
    radial-gradient(540px 380px at 90% 96%, rgba(204,0,0,.44), transparent 64%);
}
.phero--red .phero__bg { background: linear-gradient(148deg, #46002B 0%, #8A0040 44%, var(--red) 100%); }
.phero__inner { position: relative; max-width: 820px; }
.phero h1 { color: #fff; margin-bottom: 13px; }
.phero p { color: rgba(255,255,255,.82); font-size: clamp(.98rem, .94rem + .3vw, 1.1rem); max-width: 660px; }
.phero__ico {
  display: grid; place-items: center; width: 64px; height: 64px; border-radius: 20px; margin-bottom: 20px;
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.24);
  color: #fff; backdrop-filter: blur(10px);
}
.phero__ico svg { width: 30px; height: 30px; }

/* ============================================================ product detail */
.pdp {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 1.6rem + 2.4vw, 56px); align-items: start;
  margin-bottom: clamp(38px, 2.4rem + 2vw, 64px);
}
.pdp__main {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); aspect-ratio: 1/1;
  display: grid; place-items: center; overflow: hidden;
}
.pdp__main > img { width: 100%; height: 100%; object-fit: contain; padding: 26px; }
.pdp__main .prod__ph { border-radius: 0; }
.pdp__main .prod__ph svg { width: 34%; max-width: 150px; }
.pdp__thumbs { display: flex; gap: 10px; margin-top: 13px; flex-wrap: wrap; }
.pdp__thumbs button {
  width: 76px; height: 76px; border-radius: 15px; overflow: hidden; padding: 6px;
  background: #fff; border: 2px solid var(--line); transition: .25s var(--ease);
}
.pdp__thumbs button img { width: 100%; height: 100%; object-fit: contain; }
.pdp__thumbs button:hover { border-color: var(--purple-300); }
.pdp__thumbs button.is-active { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(127,0,143,.12); }

.pdp__cat {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; border-radius: 999px;
  background: var(--purple-100); color: var(--purple); border: 1px solid var(--purple-200);
  font-size: .79rem; font-weight: 700; margin-bottom: 15px;
}
.pdp__cat svg { width: 15px; height: 15px; }
.pdp__info h1 { font-size: clamp(1.45rem, 1.2rem + 1.4vw, 2.2rem); margin-bottom: 15px; }
.pdp__meta { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: .86rem; color: var(--muted); margin-bottom: 17px; }
.pdp__meta span { display: inline-flex; align-items: center; gap: 7px; }
.pdp__meta b { color: var(--ink); font-weight: 700; }
.pdp__meta svg { width: 15px; height: 15px; color: var(--purple); }
.pdp__lead { font-size: .99rem; margin-bottom: 22px; }

.pdp__price {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding: 20px 22px; border-radius: var(--r);
  background: linear-gradient(135deg, var(--purple-100), var(--bg-soft));
  border: 1px solid var(--purple-200);
}
.pdp__price s { display: block; font-size: .93rem; color: var(--muted); }
.pdp__price strong {
  display: block; font-size: clamp(1.65rem, 1.2rem + 2vw, 2.3rem);
  font-weight: 700; color: var(--purple); letter-spacing: -.035em; line-height: 1.1;
}
.pdp__stock { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .87rem; }
.pdp__stock svg { width: 17px; height: 17px; }
.pdp__stock.is-in { color: #16A34A; }
.pdp__stock.is-out { color: var(--red); }

.pdp__inst { display: flex; align-items: center; gap: 10px; margin-top: 13px; font-size: .9rem; }
.pdp__inst svg { width: 18px; height: 18px; color: var(--red); flex: none; }
.pdp__inst strong { color: var(--ink); }

.pdp__actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0; }
.pdp__perks { display: grid; gap: 12px; padding-top: 22px; border-top: 1px solid var(--line); }
.pdp__perks li { display: flex; align-items: flex-start; gap: 11px; font-size: .89rem; }
.pdp__perks svg { width: 18px; height: 18px; flex: none; color: var(--purple); margin-top: 3px; }

.pdp__tabs { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(24px, 1.6rem + 2vw, 44px); align-items: start; }
.specs, .pdesc { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; }
.specs h2, .pdesc h2 { display: flex; align-items: center; gap: 11px; font-size: 1.12rem; margin-bottom: 18px; }
.specs h2 svg, .pdesc h2 svg { width: 20px; height: 20px; color: var(--purple); flex: none; }
.spectable { width: 100%; font-size: .9rem; }
.spectable tr { border-bottom: 1px solid var(--line); }
.spectable tr:last-child { border-bottom: 0; }
.spectable th { text-align: start; padding: 11px 14px 11px 0; font-weight: 700; color: var(--muted); width: 46%; vertical-align: top; }
.spectable td { padding: 11px 0; color: var(--ink); font-weight: 700; }
.spectable tr:nth-child(odd) { background: linear-gradient(90deg, var(--bg-soft), transparent); }

.orderbox {
  display: grid; grid-template-columns: .92fr 1.08fr;
  gap: clamp(24px, 1.6rem + 2.4vw, 50px); align-items: center;
  margin-top: clamp(40px, 2.6rem + 2.4vw, 72px);
  padding: clamp(26px, 1.8rem + 2vw, 46px);
  border-radius: var(--r-xl); background: var(--bg-soft); border: 1px solid var(--line);
}
.orderbox h2 { margin-bottom: 11px; }
.orderbox__prod {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; padding: 13px 18px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xs); font-size: .9rem;
}
.orderbox__prod svg { width: 18px; height: 18px; color: var(--red); flex: none; }
.related { margin-top: clamp(46px, 3rem + 2.4vw, 80px); }
.related .section-head--split { margin-bottom: 26px; }

/* ============================================================ service detail */
.srv { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: clamp(26px, 1.8rem + 2.4vw, 52px); align-items: start; }
.srv__main > p { font-size: .99rem; }
.srv__main h2 { font-size: 1.32rem; margin: 34px 0 16px; }
.srv__img { width: 100%; border-radius: var(--r-lg); margin-bottom: 26px; box-shadow: var(--sh); aspect-ratio: 16/9; object-fit: cover; }
.srv__side { display: grid; gap: 16px; position: sticky; top: calc(var(--header-h) + 16px); }
.srv__side .btn + .btn { margin-top: 10px; }

.ticks { display: grid; gap: 11px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; }
.ticks svg { width: 19px; height: 19px; flex: none; color: var(--purple); margin-top: 4px; }

.proc { display: grid; gap: 17px; }
.proc li { display: flex; gap: 15px; align-items: flex-start; }
.proc__n {
  width: 36px; height: 36px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--g-purple); color: #fff; font-weight: 700; font-size: .88rem; box-shadow: var(--sh-p);
}
.proc strong { display: block; color: var(--ink); font-size: .99rem; margin-bottom: 3px; }
.proc p { font-size: .92rem; }

/* ============================================================ info / ctabar */
.infogrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(246px, 1fr)); gap: 20px; margin-top: 42px; }
.infocard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.infocard:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: transparent; }
.infocard__ico {
  width: 52px; height: 52px; border-radius: 17px; display: grid; place-items: center;
  background: var(--purple-100); color: var(--purple); margin-bottom: 16px; border: 1px solid var(--purple-200);
}
.infocard:nth-child(even) .infocard__ico { background: var(--red-100); color: var(--red); border-color: #F8D4D4; }
.infocard__ico svg { width: 24px; height: 24px; }
.infocard h2 { font-size: 1.06rem; margin-bottom: 9px; }
.infocard p { font-size: .91rem; }

.ctabar {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin-top: clamp(42px, 2.8rem + 2.4vw, 72px); padding: clamp(26px, 1.8rem + 2vw, 44px);
  border-radius: var(--r-xl); background: var(--g-purple); color: rgba(255,255,255,.85);
  box-shadow: var(--sh-p); position: relative; overflow: hidden; isolation: isolate;
}
.ctabar::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(480px 300px at 90% 16%, rgba(204,0,0,.46), transparent 62%);
}
.ctabar h2 { color: #fff; margin-bottom: 7px; font-size: clamp(1.3rem, 1.1rem + 1vw, 1.8rem); }
.ctabar__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ctabar .btn--primary { background: #fff; color: var(--purple); box-shadow: 0 14px 32px rgba(0,0,0,.2); }

/* ============================================================ contact + forms */
.contact__grid { display: grid; grid-template-columns: .94fr 1.06fr; gap: clamp(26px, 1.8rem + 2.4vw, 54px); align-items: start; }
.contact__list { display: grid; gap: 14px; margin-top: 26px; }
.contact__row {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  transition: .3s var(--ease);
}
.contact__row:hover { border-color: var(--purple-200); box-shadow: var(--sh-sm); transform: translateX(4px); }
.contact__row > span:last-child { display: grid; min-width: 0; }
.contact__ico {
  width: 46px; height: 46px; flex: none; border-radius: 14px; display: grid; place-items: center;
  background: var(--purple-100); color: var(--purple); border: 1px solid var(--purple-200);
}
.contact__row:nth-child(even) .contact__ico { background: var(--red-100); color: var(--red); border-color: #F8D4D4; }
.contact__ico svg { width: 20px; height: 20px; }
.contact__k { font-size: .75rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.contact__v { font-weight: 700; color: var(--ink); font-size: .99rem; margin-top: 2px; overflow-wrap: anywhere; }
a.contact__v:hover { color: var(--purple); }

.form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 1.6rem + 1.6vw, 40px); box-shadow: var(--sh-sm);
}
.form__t { margin-bottom: 18px; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .83rem; font-weight: 700; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; font-size: 16px;
  border: 1.5px solid var(--line); border-radius: var(--r-xs);
  background: var(--bg-soft); transition: .25s;
}
.field textarea { min-height: 126px; resize: vertical; line-height: 1.65; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--purple); background: #fff;
  box-shadow: 0 0 0 4px rgba(127,0,143,.1);
}
.form .btn { margin-top: 10px; }

.alert {
  display: flex; gap: 10px; align-items: center;
  padding: 14px 18px; border-radius: var(--r-xs);
  font-size: .91rem; font-weight: 700; margin-bottom: 18px;
}
.alert svg { width: 18px; height: 18px; flex: none; }
.alert--ok { background: #E9F9EF; color: #12703B; }
.alert--err { background: var(--red-100); color: var(--red-600); }

.map {
  margin-top: clamp(42px, 2.8rem + 2.4vw, 76px);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh);
  line-height: 0; border: 1px solid var(--line);
}
.map iframe { width: 100%; height: clamp(280px, 40vw, 420px); border: 0; }
.map__ph {
  display: grid; place-items: center; align-content: center; gap: 10px;
  min-height: 260px; background: var(--bg-soft); color: var(--muted);
  text-align: center; line-height: 1.6; padding: 30px;
}
.map__ph svg { width: 40px; height: 40px; color: var(--purple-300); }
.map__ph strong { color: var(--ink); }

/* ============================================================ cta */
.cta { position: relative; overflow: hidden; background: var(--g-deep); color: #fff; text-align: center; isolation: isolate; }
.cta::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(620px 340px at 50% 0%, rgba(255,255,255,.15), transparent 62%);
}
.cta__inner { max-width: 720px; margin-inline: auto; }
.cta h2 { color: #fff; margin-bottom: 13px; }
.cta p { color: rgba(255,255,255,.84); font-size: 1.04rem; margin-bottom: 30px; }
.cta__actions { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* ============================================================ floating actions */
.floats { position: fixed; right: 18px; bottom: 18px; z-index: 800; display: grid; gap: 11px; }
.float {
  position: relative; width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  box-shadow: var(--sh-lg); transition: transform .3s var(--ease-back);
}
.float:hover { transform: scale(1.09) translateY(-2px); }
.float svg { width: 24px; height: 24px; }
.float--call { background: var(--g-purple); }
.float--call::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--purple); animation: ripple 2.4s infinite;
}
@keyframes ripple { 0% { transform: scale(1); opacity: .75; } 100% { transform: scale(1.7); opacity: 0; } }
.float--wa { background: #25D366; }
.float--top {
  background: #fff; color: var(--purple); border: 1px solid var(--line);
  opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s var(--ease-back);
}
.float--top.is-visible { opacity: 1; pointer-events: auto; }

/* mobile-only bottom action bar */
.callbar { display: none; }

/* ============================================================ reveal */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1180px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
}

@media (max-width: 1060px) {
  .feature__inner, .about, .contact__grid,
  .pdp, .pdp__tabs, .orderbox { grid-template-columns: 1fr; }
  .shop, .srv { grid-template-columns: 1fr; }
  .shop__side, .srv__side {
    position: static; display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .about__media { order: -1; }
  .strip__grid { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .orderbox__text { text-align: center; }
  .orderbox__prod { margin-inline: auto; }
}

/* ------------------------------------------------ tablet / phone */
@media (max-width: 900px) {
  :root { --header-h: 68px; --gut: 20px; }

  .burger { display: grid; }
  .header__phone span { display: none; }
  .header__phone { padding: 0; }

  /* full-screen drawer — no layout shift, no scroll bleed */
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(88vw, 360px); z-index: 890;
    background: #fff; flex-direction: column; align-items: stretch; gap: 2px;
    padding: 0 18px calc(22px + env(safe-area-inset-bottom));
    overflow-y: auto; overscroll-behavior: contain;
    box-shadow: -20px 0 60px rgba(38,0,44,.26);
    transform: translateX(102%);
    transition: transform .38s var(--ease);
    visibility: hidden;
  }
  .nav.is-open { transform: none; visibility: visible; }

  .nav__head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0 16px; margin-bottom: 8px; border-bottom: 1px solid var(--line);
    position: sticky; top: 0; background: #fff; z-index: 2;
  }
  .nav__head img { height: 44px; width: auto; }
  .nav__x {
    width: 44px; height: 44px; border-radius: 13px; font-size: 1.7rem; line-height: 1;
    background: var(--purple-100); color: var(--purple); display: grid; place-items: center;
  }
  .nav > a {
    padding: 15px 14px; border-radius: 14px; font-size: 1.02rem; min-height: 52px;
    display: flex; align-items: center;
  }
  .nav > a::after { display: none; }
  .nav > a:hover, .nav > a.is-active { background: var(--purple-100); color: var(--purple); }
  .nav__foot {
    display: grid; gap: 12px; margin-top: auto; padding-top: 22px;
    border-top: 1px solid var(--line);
  }
  .nav__call {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 52px; border-radius: 999px;
    background: var(--g-purple); color: #fff; font-weight: 700; box-shadow: var(--sh-p);
  }
  .nav__call svg { width: 18px; height: 18px; }
  .nav__addr { display: flex; gap: 9px; align-items: flex-start; font-size: .85rem; color: var(--muted); }
  .nav__addr svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--purple); }

  .brand img { height: 46px; }
  .topbar__item--hours { display: none; }

  .hero__nav { justify-content: center; }
  .hero__arrows { display: none; }

  /* bottom action bar replaces floating buttons on phones */
  .floats { display: none; }
  .callbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 850;
    display: grid; grid-template-columns: repeat(3, 1fr);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-top: 1px solid var(--line);
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -6px 24px rgba(38,0,44,.09);
  }
  .callbar__a {
    display: grid; justify-items: center; gap: 3px;
    padding: 10px 6px 9px; min-height: 58px; align-content: center;
    font-size: .72rem; font-weight: 700; color: var(--muted);
    transition: color .2s;
  }
  .callbar__a svg { width: 21px; height: 21px; }
  .callbar__a:active { color: var(--purple); }
  .callbar__a--call { color: var(--purple); }
  .callbar__a--call svg { color: var(--purple); }
  body { padding-bottom: 58px; }
}

/* ------------------------------------------------ small phones */
@media (max-width: 640px) {
  :root { --gut: 16px; }
  body { font-size: 15.5px; }

  .section { padding: 52px 0; }
  .section--tight { padding-top: 26px; }

  .topbar { font-size: .78rem; }
  .topbar__inner { justify-content: center; gap: 12px; min-height: 40px; }
  .topbar__item--addr { display: none; }

  .hero { padding: 44px 0 74px; }
  .hero__sub { margin-bottom: 26px; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__note { margin-top: 28px; font-size: .84rem; align-items: flex-start; }
  .hero__note svg { margin-top: 3px; }
  .hero__nav { margin-top: 30px; }

  .strip { margin-top: -34px; }
  .strip__item { padding: 20px 18px; }

  .card { padding: 26px 22px 24px; }
  .card__img { margin: -26px -22px 20px; }
  .card--lg { padding: 28px 22px 26px; }

  .cats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat { padding: 18px 10px; min-height: 116px; }
  .cat__ico { width: 42px; height: 42px; border-radius: 13px; }
  .cat__ico svg { width: 19px; height: 19px; }
  .cat__n { font-size: .85rem; }
  .cat__c { font-size: .72rem; }

  .prods, .prods--3, .prods--4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .prod { border-radius: var(--r); }
  .prod__body { padding: 12px 13px 12px; }
  .prod__cat { font-size: .66rem; letter-spacing: .05em; }
  .prod__name { font-size: .87rem; margin: 5px 0 4px; line-height: 1.35; }
  .prod__desc { display: none; }
  .prod__foot { gap: 8px; }
  .prod__price s { font-size: .72rem; }
  .prod__price strong { font-size: .98rem; }
  .prod__btn { width: 36px; height: 36px; border-radius: 11px; }
  .prod__btn svg { width: 16px; height: 16px; }
  .prod__media > img { padding: 10px; }
  .tag { font-size: .64rem; padding: 4px 9px; }
  .prod__tags { top: 8px; left: 8px; gap: 4px; }

  .shopbar { flex-direction: column; align-items: stretch; gap: 12px; padding: 14px; }
  .shopbar__search { flex: 1 1 auto; }
  .shopbar__search .btn { display: none; }
  .shopbar__sort { justify-content: space-between; }
  .shopbar__sort select { flex: 1; margin-inline-start: 10px; }

  .pdp__main { border-radius: var(--r); }
  .pdp__main > img { padding: 16px; }
  .pdp__thumbs button { width: 62px; height: 62px; border-radius: 13px; }
  .pdp__actions { gap: 10px; }
  .pdp__actions .btn { flex: 1 1 100%; }
  .pdp__price { padding: 17px 18px; }
  .specs, .pdesc { padding: 22px 18px; }
  .spectable th { width: 48%; font-size: .83rem; padding-right: 10px; }
  .spectable td { font-size: .86rem; }

  .form__grid { grid-template-columns: 1fr; }
  .form { padding: 22px 18px; }

  .steps { gap: 14px; }
  .step { padding: 24px 20px; }

  .faq__q { padding: 16px 16px; font-size: .93rem; gap: 12px; }
  .faq__a p { padding: 0 16px 18px; font-size: .89rem; }

  .about__badge { left: 10px; bottom: -18px; padding: 14px 18px; gap: 11px; }
  .about__badge .n { font-size: 1.5rem; }
  .about__badge .t { font-size: .74rem; }

  .ctabar { text-align: center; justify-content: center; }
  .ctabar__actions { width: 100%; }
  .ctabar__actions .btn { flex: 1 1 100%; }

  .cta__actions { width: 100%; }
  .cta__actions .btn { flex: 1 1 100%; }

  .footer { padding-top: 46px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__grid > div:first-child { grid-column: 1 / -1; }
  .footer__bar { justify-content: center; text-align: center; font-size: .8rem; }

  .reviews__grid, .gallery__grid { grid-template-columns: 1fr; }
  .empty { padding: 34px 12px; }
  .pager a { min-width: 42px; height: 42px; padding: 0 12px; }
}

@media (max-width: 380px) {
  .prods, .prods--3, .prods--4, .cats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------ motion / a11y */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero__slide { transition: none; }
}

@media (hover: none) {
  .card:hover, .prod:hover, .step:hover, .bank:hover,
  .review:hover, .infocard:hover, .cat:hover { transform: none; box-shadow: var(--sh-sm); }
  .contact__row:hover { transform: none; }
}

@media print {
  .topbar, .header, .floats, .callbar, .cta, .footer__social { display: none !important; }
  body { color: #000; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--purple-900); color: rgba(255,255,255,.62); }

.footer__top {
  background: linear-gradient(105deg, var(--purple-700) 0%, var(--purple) 46%, #A31414 100%);
  position: relative; overflow: hidden; isolation: isolate;
}
.footer__top::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(600px 260px at 18% 0%, rgba(255,255,255,.16), transparent 66%);
}
.footer__topin {
  display: flex; align-items: center; justify-content: space-between;
  gap: 26px; flex-wrap: wrap; padding: 28px 0;
}
.footer__claim { display: flex; align-items: center; gap: 16px; color: #fff; }
.footer__claimico {
  width: 52px; height: 52px; flex: none; border-radius: 16px; display: grid; place-items: center;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.24); color: #fff;
}
.footer__claimico svg { width: 24px; height: 24px; }
.footer__claim > span:last-child { display: grid; gap: 2px; }
.footer__claim b { font-size: 1.05rem; font-weight: 700; }
.footer__claim em { font-style: normal; font-size: .88rem; color: rgba(255,255,255,.78); }
.footer__actions { display: flex; gap: 11px; flex-wrap: wrap; }

.footer__grid {
  display: grid; grid-template-columns: 1.7fr 1fr 1.15fr 1fr 1.25fr;
  gap: 36px; padding: clamp(44px, 2.8rem + 2.4vw, 68px) 0 40px;
}
.footer__logo {
  height: 62px; width: auto; margin-bottom: 16px;
  background: #fff; padding: 6px 12px; border-radius: 15px;
}
.footer__brand p { font-size: .9rem; line-height: 1.75; max-width: 34ch; }
.footer h4 {
  color: #fff; font-size: .96rem; font-weight: 700;
  margin-bottom: 18px; padding-bottom: 12px; position: relative;
}
.footer h4::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 30px; height: 3px; border-radius: 3px; background: var(--g-brand);
}
.footer__links { display: grid; gap: 11px; font-size: .89rem; }
.footer__links a {
  display: inline-flex; align-items: center; gap: 8px;
  width: fit-content; transition: color .25s, transform .25s var(--ease);
}
.footer__links a::before {
  content: ''; width: 0; height: 1.5px; background: var(--purple-300);
  border-radius: 2px; transition: width .25s var(--ease);
}
.footer__links a:hover { color: #fff; }
.footer__links a:hover::before { width: 12px; }

.footer__contact { display: grid; gap: 14px; font-size: .89rem; }
.footer__contact > div { display: flex; gap: 11px; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--purple-300); flex: none; margin-top: 3px; }
.footer__contact a:hover { color: #fff; }

.footer__phone {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 16px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  transition: .3s var(--ease);
}
.footer__phone:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.footer__phoneico {
  width: 42px; height: 42px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--g-purple); color: #fff; box-shadow: 0 8px 20px rgba(127,0,143,.45);
}
.footer__phoneico svg { width: 18px; height: 18px; color: #fff; margin: 0; }
.footer__phone > span:last-child { display: grid; }
.footer__phone em { font-style: normal; font-size: .74rem; color: rgba(255,255,255,.55); letter-spacing: .06em; text-transform: uppercase; }
.footer__phone b { color: #fff; font-size: 1.06rem; font-weight: 700; letter-spacing: -.01em; }

.footer__banks {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,.09);
}
.footer__bankslbl {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.footer__bankslbl svg { width: 16px; height: 16px; color: var(--purple-300); }
.footer__bankslist { display: flex; gap: 9px; flex-wrap: wrap; }
.footer__bankslist span {
  padding: 7px 15px; border-radius: 999px; font-size: .82rem; font-weight: 500;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.82);
}

.footer__bar {
  border-top: 1px solid rgba(255,255,255,.09); padding: 20px 0;
  font-size: .83rem; display: flex; justify-content: space-between;
  gap: 14px; flex-wrap: wrap; align-items: center;
}
.footer__barlinks { display: flex; gap: 18px; }
.footer__bar a:hover { color: #fff; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(255,255,255,.09); transition: .3s var(--ease);
}
.footer__social a:hover { background: var(--red); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 17px; height: 17px; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.ccards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 16px; margin-bottom: clamp(38px, 2.4rem + 2.4vw, 62px);
}
.ccard {
  --c: var(--purple);
  --c-soft: var(--purple-100);
  --c-line: var(--purple-200);
  --c-grad: var(--g-purple);
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; align-content: start; gap: 5px;
  padding: 26px 24px 22px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.ccard::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(340px 220px at 92% -14%, var(--c-soft), transparent 70%);
  opacity: .9; transition: opacity .4s;
}
.ccard:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.ccard:hover::after { opacity: 1; }
.ccard--hi { --c: var(--red); --c-soft: var(--red-100); --c-line: #F8D4D4; --c-grad: var(--g-red); }
.ccard--wa { --c: #12A150; --c-soft: #E4F8EC; --c-line: #BFEBD2; --c-grad: linear-gradient(135deg,#25D366,#12A150); }

.ccard__ico {
  width: 52px; height: 52px; border-radius: 17px; display: grid; place-items: center;
  background: var(--c-grad); color: #fff; margin-bottom: 14px;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--c) 34%, transparent);
  transition: transform .4s var(--ease-back);
}
.ccard__ico svg { width: 23px; height: 23px; }
.ccard:hover .ccard__ico { transform: rotate(-7deg) scale(1.07); }
.ccard__k { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.ccard__v { font-size: 1.24rem; font-weight: 700; color: var(--ink); letter-spacing: -.02em; line-height: 1.3; }
.ccard__v--sm { font-size: .96rem; line-height: 1.5; }
.ccard__x { font-size: .95rem; font-weight: 600; color: var(--body); }
.ccard__go {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--line); font-size: .85rem; font-weight: 700; color: var(--c);
}
.ccard__go svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.ccard:hover .ccard__go svg { transform: translateX(5px); }
.ccard__go--flat { color: var(--muted); font-weight: 500; }
.ccard__go--flat svg { color: #16A34A; }

.cwhy { display: grid; gap: 16px; margin-top: 28px; }
.cwhy li { display: flex; gap: 14px; align-items: flex-start; }
.cwhy li > span {
  width: 44px; height: 44px; flex: none; border-radius: 14px; display: grid; place-items: center;
  background: var(--purple-100); color: var(--purple); border: 1px solid var(--purple-200);
}
.cwhy li:nth-child(2) > span { background: var(--red-100); color: var(--red); border-color: #F8D4D4; }
.cwhy li > span svg { width: 20px; height: 20px; }
.cwhy div { font-size: .89rem; color: var(--body); line-height: 1.6; }
.cwhy b { display: block; color: var(--ink); font-size: .97rem; font-weight: 700; margin-bottom: 2px; }

.csocial {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line);
  font-size: .88rem; color: var(--muted); font-weight: 500;
}
.csocial a {
  width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center;
  background: var(--purple-100); color: var(--purple); border: 1px solid var(--purple-200);
  transition: .3s var(--ease);
}
.csocial a:hover { background: var(--g-purple); color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: var(--sh-p); }
.csocial svg { width: 18px; height: 18px; }

.form--contact { position: relative; overflow: hidden; }
.form--contact::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--g-brand);
}
.form__sub { font-size: .89rem; color: var(--muted); margin: -12px 0 20px; }
.form__note {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-top: 16px; font-size: .8rem; color: var(--muted);
}
.form__note svg { width: 14px; height: 14px; flex: none; }

@media (max-width: 1180px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer__cont { grid-column: 1 / -1; }
  .footer__contact { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); display: grid; align-items: center; }
}
@media (max-width: 640px) {
  .footer__topin { padding: 22px 0; flex-direction: column; align-items: stretch; text-align: center; }
  .footer__claim { flex-direction: column; text-align: center; gap: 12px; }
  .footer__claimico { margin-inline: auto; }
  .footer__actions { justify-content: center; }
  .footer__actions .btn { flex: 1 1 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-top: 40px; }
  .footer__brand, .footer__cont { grid-column: 1 / -1; }
  .footer__contact { grid-template-columns: 1fr; }
  .footer__bar { justify-content: center; text-align: center; }
  .footer__banks { justify-content: center; }
  .ccards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ccard { padding: 20px 16px 18px; border-radius: var(--r); }
  .ccard__ico { width: 44px; height: 44px; border-radius: 14px; margin-bottom: 11px; }
  .ccard__ico svg { width: 20px; height: 20px; }
  .ccard__v { font-size: 1.02rem; }
  .ccard__v--sm { font-size: .86rem; }
  .ccard__go { font-size: .78rem; margin-top: 11px; padding-top: 11px; }
}
@media (max-width: 380px) {
  .ccards { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Services — pastel cards with a photo foot
   ========================================================================== */
.svcs { position: relative; overflow: hidden; isolation: isolate; }
.svcs__deco {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(700px 420px at 92% 4%, rgba(127,0,143,.05), transparent 66%),
    radial-gradient(620px 400px at 4% 96%, rgba(204,0,0,.045), transparent 66%);
}

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

.svc {
  --tint: #EFE6F6;
  --accent: var(--purple);
  --accent-grad: var(--g-purple);
  --accent-sh: var(--sh-p);
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--tint); border-radius: var(--r-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.svc--1 { --tint: #FDEBE4; --accent: var(--red); --accent-grad: var(--g-red); --accent-sh: var(--sh-r); }
.svc--2 { --tint: #E3EEFA; }
.svc--3 { --tint: #F3E9FA; --accent: var(--red); --accent-grad: var(--g-red); --accent-sh: var(--sh-r); }
.svc:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }

.svc__body { display: block; padding: 24px 22px 20px; flex: 1; }
.svc__ico {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 14px; margin-bottom: 15px;
  background: var(--accent-grad); color: #fff; box-shadow: var(--accent-sh);
  transition: transform .4s var(--ease-back);
}
.svc__ico svg { width: 21px; height: 21px; }
.svc:hover .svc__ico { transform: rotate(-8deg) scale(1.08); }

.svc__t { font-size: 1.06rem; color: var(--ink); margin-bottom: 8px; line-height: 1.3; transition: color .3s; }
.svc:hover .svc__t { color: var(--accent); }
.svc__d { font-size: .87rem; color: var(--ink-2); opacity: .78; line-height: 1.55; }
.svc__go {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
  font-size: .84rem; font-weight: 700; color: var(--accent);
}
.svc__go svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.svc:hover .svc__go svg { transform: translateX(5px); }

.svc__media {
  display: block; position: relative; overflow: hidden;
  aspect-ratio: 16 / 10; margin: 0 12px 12px; border-radius: var(--r);
  background: rgba(255,255,255,.55);
}
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.svc:hover .svc__media img { transform: scale(1.07); }
.svc__ph {
  display: grid; place-items: center; width: 100%; height: 100%;
  color: var(--accent); opacity: .34;
}
.svc__ph svg { width: 40%; max-width: 74px; height: auto; stroke-width: 1.3; }

.svcs__foot {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin-top: 30px; padding: 18px 26px;
  border: 1px dashed var(--purple-200); border-radius: 999px;
  background: var(--bg-soft); font-size: .92rem; color: var(--body);
}
.svcs__foot > svg { width: 20px; height: 20px; color: var(--purple); flex: none; }
.svcs__foot a { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--purple); white-space: nowrap; }
.svcs__foot a svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.svcs__foot a:hover svg { transform: translateX(4px); }

@media (max-width: 640px) {
  .svcs__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .svc__body { padding: 16px 14px 14px; }
  .svc__ico { width: 38px; height: 38px; border-radius: 12px; margin-bottom: 11px; }
  .svc__ico svg { width: 18px; height: 18px; }
  .svc__t { font-size: .93rem; }
  .svc__d { display: none; }
  .svc__go { font-size: .78rem; margin-top: 10px; }
  .svc__media { margin: 0 9px 9px; }
  .svcs__foot { flex-direction: column; gap: 10px; text-align: center; border-radius: var(--r); padding: 20px 18px; font-size: .87rem; }
}
@media (max-width: 380px) { .svcs__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--purple-900); color: rgba(255,255,255,.62); }

.footer__top {
  background: linear-gradient(105deg, var(--purple-700) 0%, var(--purple) 46%, #A31414 100%);
  position: relative; overflow: hidden; isolation: isolate;
}
.footer__top::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(600px 260px at 18% 0%, rgba(255,255,255,.16), transparent 66%);
}
.footer__topin {
  display: flex; align-items: center; justify-content: space-between;
  gap: 26px; flex-wrap: wrap; padding: 28px 0;
}
.footer__claim { display: flex; align-items: center; gap: 16px; color: #fff; }
.footer__claimico {
  width: 52px; height: 52px; flex: none; border-radius: 16px; display: grid; place-items: center;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.24); color: #fff;
}
.footer__claimico svg { width: 24px; height: 24px; }
.footer__claim > span:last-child { display: grid; gap: 2px; }
.footer__claim b { font-size: 1.05rem; font-weight: 700; }
.footer__claim em { font-style: normal; font-size: .88rem; color: rgba(255,255,255,.78); }
.footer__actions { display: flex; gap: 11px; flex-wrap: wrap; }

.footer__grid {
  display: grid; grid-template-columns: 1.7fr 1fr 1.15fr 1fr 1.25fr;
  gap: 36px; padding: clamp(44px, 2.8rem + 2.4vw, 68px) 0 40px;
}
.footer__logo {
  height: 62px; width: auto; margin-bottom: 16px;
  background: #fff; padding: 6px 12px; border-radius: 15px;
}
.footer__brand p { font-size: .9rem; line-height: 1.75; max-width: 34ch; }
.footer h4 {
  color: #fff; font-size: .96rem; font-weight: 700;
  margin-bottom: 18px; padding-bottom: 12px; position: relative;
}
.footer h4::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 30px; height: 3px; border-radius: 3px; background: var(--g-brand);
}
.footer__links { display: grid; gap: 11px; font-size: .89rem; }
.footer__links a {
  display: inline-flex; align-items: center; gap: 8px;
  width: fit-content; transition: color .25s, transform .25s var(--ease);
}
.footer__links a::before {
  content: ''; width: 0; height: 1.5px; background: var(--purple-300);
  border-radius: 2px; transition: width .25s var(--ease);
}
.footer__links a:hover { color: #fff; }
.footer__links a:hover::before { width: 12px; }

.footer__contact { display: grid; gap: 14px; font-size: .89rem; }
.footer__contact > div { display: flex; gap: 11px; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--purple-300); flex: none; margin-top: 3px; }
.footer__contact a:hover { color: #fff; }

.footer__phone {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 16px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  transition: .3s var(--ease);
}
.footer__phone:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.footer__phoneico {
  width: 42px; height: 42px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--g-purple); color: #fff; box-shadow: 0 8px 20px rgba(127,0,143,.45);
}
.footer__phoneico svg { width: 18px; height: 18px; color: #fff; margin: 0; }
.footer__phone > span:last-child { display: grid; }
.footer__phone em { font-style: normal; font-size: .74rem; color: rgba(255,255,255,.55); letter-spacing: .06em; text-transform: uppercase; }
.footer__phone b { color: #fff; font-size: 1.06rem; font-weight: 700; letter-spacing: -.01em; }

.footer__banks {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,.09);
}
.footer__bankslbl {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.footer__bankslbl svg { width: 16px; height: 16px; color: var(--purple-300); }
.footer__bankslist { display: flex; gap: 9px; flex-wrap: wrap; }
.footer__bankslist span {
  padding: 7px 15px; border-radius: 999px; font-size: .82rem; font-weight: 500;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.82);
}

.footer__bar {
  border-top: 1px solid rgba(255,255,255,.09); padding: 20px 0;
  font-size: .83rem; display: flex; justify-content: space-between;
  gap: 14px; flex-wrap: wrap; align-items: center;
}
.footer__barlinks { display: flex; gap: 18px; }
.footer__bar a:hover { color: #fff; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(255,255,255,.09); transition: .3s var(--ease);
}
.footer__social a:hover { background: var(--red); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 17px; height: 17px; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.ccards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 16px; margin-bottom: clamp(38px, 2.4rem + 2.4vw, 62px);
}
.ccard {
  --c: var(--purple);
  --c-soft: var(--purple-100);
  --c-line: var(--purple-200);
  --c-grad: var(--g-purple);
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; align-content: start; gap: 5px;
  padding: 26px 24px 22px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.ccard::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(340px 220px at 92% -14%, var(--c-soft), transparent 70%);
  opacity: .9; transition: opacity .4s;
}
.ccard:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.ccard:hover::after { opacity: 1; }
.ccard--hi { --c: var(--red); --c-soft: var(--red-100); --c-line: #F8D4D4; --c-grad: var(--g-red); }
.ccard--wa { --c: #12A150; --c-soft: #E4F8EC; --c-line: #BFEBD2; --c-grad: linear-gradient(135deg,#25D366,#12A150); }

.ccard__ico {
  width: 52px; height: 52px; border-radius: 17px; display: grid; place-items: center;
  background: var(--c-grad); color: #fff; margin-bottom: 14px;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--c) 34%, transparent);
  transition: transform .4s var(--ease-back);
}
.ccard__ico svg { width: 23px; height: 23px; }
.ccard:hover .ccard__ico { transform: rotate(-7deg) scale(1.07); }
.ccard__k { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.ccard__v { font-size: 1.24rem; font-weight: 700; color: var(--ink); letter-spacing: -.02em; line-height: 1.3; }
.ccard__v--sm { font-size: .96rem; line-height: 1.5; }
.ccard__x { font-size: .95rem; font-weight: 600; color: var(--body); }
.ccard__go {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--line); font-size: .85rem; font-weight: 700; color: var(--c);
}
.ccard__go svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.ccard:hover .ccard__go svg { transform: translateX(5px); }
.ccard__go--flat { color: var(--muted); font-weight: 500; }
.ccard__go--flat svg { color: #16A34A; }

.cwhy { display: grid; gap: 16px; margin-top: 28px; }
.cwhy li { display: flex; gap: 14px; align-items: flex-start; }
.cwhy li > span {
  width: 44px; height: 44px; flex: none; border-radius: 14px; display: grid; place-items: center;
  background: var(--purple-100); color: var(--purple); border: 1px solid var(--purple-200);
}
.cwhy li:nth-child(2) > span { background: var(--red-100); color: var(--red); border-color: #F8D4D4; }
.cwhy li > span svg { width: 20px; height: 20px; }
.cwhy div { font-size: .89rem; color: var(--body); line-height: 1.6; }
.cwhy b { display: block; color: var(--ink); font-size: .97rem; font-weight: 700; margin-bottom: 2px; }

.csocial {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line);
  font-size: .88rem; color: var(--muted); font-weight: 500;
}
.csocial a {
  width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center;
  background: var(--purple-100); color: var(--purple); border: 1px solid var(--purple-200);
  transition: .3s var(--ease);
}
.csocial a:hover { background: var(--g-purple); color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: var(--sh-p); }
.csocial svg { width: 18px; height: 18px; }

.form--contact { position: relative; overflow: hidden; }
.form--contact::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--g-brand);
}
.form__sub { font-size: .89rem; color: var(--muted); margin: -12px 0 20px; }
.form__note {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-top: 16px; font-size: .8rem; color: var(--muted);
}
.form__note svg { width: 14px; height: 14px; flex: none; }

@media (max-width: 1180px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer__cont { grid-column: 1 / -1; }
  .footer__contact { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); display: grid; align-items: center; }
}
@media (max-width: 640px) {
  .footer__topin { padding: 22px 0; flex-direction: column; align-items: stretch; text-align: center; }
  .footer__claim { flex-direction: column; text-align: center; gap: 12px; }
  .footer__claimico { margin-inline: auto; }
  .footer__actions { justify-content: center; }
  .footer__actions .btn { flex: 1 1 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-top: 40px; }
  .footer__brand, .footer__cont { grid-column: 1 / -1; }
  .footer__contact { grid-template-columns: 1fr; }
  .footer__bar { justify-content: center; text-align: center; }
  .footer__banks { justify-content: center; }
  .ccards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ccard { padding: 20px 16px 18px; border-radius: var(--r); }
  .ccard__ico { width: 44px; height: 44px; border-radius: 14px; margin-bottom: 11px; }
  .ccard__ico svg { width: 20px; height: 20px; }
  .ccard__v { font-size: 1.02rem; }
  .ccard__v--sm { font-size: .86rem; }
  .ccard__go { font-size: .78rem; margin-top: 11px; padding-top: 11px; }
}
@media (max-width: 380px) {
  .ccards { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Services — two-up cards, first one filled for hierarchy
   ========================================================================== */
.svcs { position: relative; overflow: hidden; isolation: isolate; }
.svcs__deco {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(700px 420px at 92% 4%, rgba(127,0,143,.055), transparent 66%),
    radial-gradient(620px 400px at 4% 96%, rgba(204,0,0,.05), transparent 66%);
}

.svcs__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }

.svc {
  --accent: var(--purple);
  --accent-soft: var(--purple-100);
  --accent-line: var(--purple-200);
  --accent-grad: var(--g-purple);
  --accent-sh: var(--sh-p);

  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column;
  padding: 34px 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.svc--red {
  --accent: var(--red);
  --accent-soft: var(--red-100);
  --accent-line: #F8D4D4;
  --accent-grad: var(--g-red);
  --accent-sh: var(--sh-r);
}

/* soft brand bloom, top-right */
.svc__glow {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(460px 300px at 96% -18%, var(--accent-soft), transparent 64%);
  transition: opacity .5s var(--ease);
}
.svc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent-grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease);
}
.svc:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: transparent; }
.svc:hover::before { transform: scaleX(1); }

/* ---- the lead card is filled, so it anchors the grid ---- */
.svc--lead {
  color: rgba(255,255,255,.8);
  background: linear-gradient(152deg, #350039 0%, var(--purple-700) 44%, #8E0071 100%);
  border-color: transparent;
  box-shadow: var(--sh-p);
}
.svc--lead .svc__glow {
  background: radial-gradient(520px 340px at 96% -14%, rgba(204,0,0,.42), transparent 62%);
}
.svc--lead::before { background: linear-gradient(90deg, #fff, rgba(255,255,255,.25)); }
.svc--lead .svc__t { color: #fff; }
.svc--lead .svc__d { color: rgba(255,255,255,.76); }
.svc--lead .svc__no { color: rgba(255,255,255,.42); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); }
.svc--lead .svc__ico { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); box-shadow: none; }
.svc--lead .svc__li { color: rgba(255,255,255,.86); }
.svc--lead .svc__li svg { color: #fff; }
.svc--lead .svc__li::before { background: rgba(255,255,255,.16); }
.svc--lead .svc__go { border-top-color: rgba(255,255,255,.16); }
.svc--lead .svc__golbl { color: #fff; }
.svc--lead .svc__arrow { background: #fff; color: var(--purple); }
.svc--lead:hover { box-shadow: 0 18px 40px rgba(127,0,143,.34), 0 40px 80px rgba(38,0,44,.28); }

/* ---- head ---- */
.svc__head { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.svc__ico {
  width: 66px; height: 66px; flex: none; border-radius: 21px;
  display: grid; place-items: center;
  background: var(--accent-grad); color: #fff; box-shadow: var(--accent-sh);
  transition: transform .45s var(--ease-back);
}
.svc__ico svg { width: 30px; height: 30px; }
.svc:hover .svc__ico { transform: rotate(-8deg) scale(1.08); }

.svc__heading { display: grid; gap: 7px; min-width: 0; }
.svc__no {
  justify-self: start;
  display: inline-grid; place-items: center;
  min-width: 34px; height: 22px; padding: 0 8px;
  border-radius: 999px; border: 1px solid var(--accent-line);
  background: var(--accent-soft); color: var(--accent);
  font-size: .7rem; font-weight: 700; letter-spacing: .06em;
}
.svc__t {
  font-size: clamp(1.18rem, 1rem + .7vw, 1.5rem);
  color: var(--ink); line-height: 1.25; transition: color .3s;
}
.svc:not(.svc--lead):hover .svc__t { color: var(--accent); }

.svc__d { font-size: .95rem; color: var(--body); margin-bottom: 22px; }

/* ---- features: two columns inside the wide card ---- */
.svc__list {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px; margin-top: auto;
}
.svc__li {
  position: relative; display: flex; align-items: flex-start; gap: 9px;
  font-size: .87rem; line-height: 1.5; color: var(--ink-2); font-weight: 500;
}
.svc__li svg {
  width: 13px; height: 13px; flex: none; margin-top: 4px;
  color: var(--accent); stroke-width: 3.2;
}

/* ---- footer link ---- */
.svc__go {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-top: 26px; padding-top: 20px;
  border-top: 1px solid var(--line);
}
.svc__golbl { font-weight: 700; font-size: .9rem; color: var(--accent); }
.svc__arrow {
  width: 40px; height: 40px; flex: none; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid var(--accent-line);
  transition: background .35s var(--ease), color .35s, transform .35s var(--ease), border-color .35s;
}
.svc__arrow svg { width: 17px; height: 17px; }
.svc:hover .svc__arrow {
  background: var(--accent-grad); color: #fff; border-color: transparent;
  transform: translateX(5px); box-shadow: var(--accent-sh);
}
.svc--lead:hover .svc__arrow { background: #fff; color: var(--purple); transform: translateX(5px); box-shadow: 0 10px 24px rgba(0,0,0,.28); }

/* ---- closing note ---- */
.svcs__foot {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin-top: 30px; padding: 18px 26px;
  border: 1px dashed var(--purple-200); border-radius: 999px;
  background: var(--bg-soft); font-size: .92rem; color: var(--body);
}
.svcs__foot > svg { width: 20px; height: 20px; color: var(--purple); flex: none; }
.svcs__foot a {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--purple); white-space: nowrap;
}
.svcs__foot a svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.svcs__foot a:hover svg { transform: translateX(4px); }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .svcs__grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 640px) {
  .svc { padding: 24px 20px 22px; border-radius: var(--r); }
  .svc__head { gap: 14px; margin-bottom: 16px; }
  .svc__ico { width: 54px; height: 54px; border-radius: 17px; }
  .svc__ico svg { width: 25px; height: 25px; }
  .svc__t { font-size: 1.1rem; }
  .svc__d { font-size: .89rem; margin-bottom: 18px; }
  .svc__list { grid-template-columns: 1fr; gap: 9px; }
  .svc__li { font-size: .85rem; }
  .svc__go { margin-top: 20px; padding-top: 16px; }
  .svc__golbl { font-size: .85rem; }
  .svc__arrow { width: 36px; height: 36px; border-radius: 11px; }
  .svcs__foot {
    flex-direction: column; gap: 10px; text-align: center;
    border-radius: var(--r); padding: 20px 18px; font-size: .87rem;
  }
}
@media (max-width: 420px) {
  .svc__head { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Client cabinet — login + dashboard
   ========================================================================== */
.login2 {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: clamp(26px, 1.8rem + 2.4vw, 52px); align-items: start;
  max-width: 1000px; margin-inline: auto;
}
.login2__form {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(26px, 1.8rem + 1.6vw, 40px); box-shadow: var(--sh-sm);
}
.login2__form::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--g-brand);
}
.login2__form h2 { font-size: 1.32rem; margin-bottom: 9px; }
.login2__sub { font-size: .91rem; color: var(--muted); margin-bottom: 24px; }
.login2__form .btn { margin-top: 6px; }

.login2__steps { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.login2__steps span {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .84rem; font-weight: 700; color: var(--muted);
}
.login2__steps i {
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: var(--bg-deep); color: var(--muted); font-style: normal; font-size: .82rem; font-weight: 700;
}
.login2__steps .is-on i { background: var(--g-purple); color: #fff; box-shadow: var(--sh-p); }
.login2__steps .is-on { color: var(--purple); }
.login2__steps .is-done i { background: var(--purple-100); color: var(--purple); }
.login2__line { flex: 1; height: 2px; background: var(--line); border-radius: 2px; }

.phonein {
  display: flex; align-items: stretch;
  border: 1.5px solid var(--line); border-radius: var(--r-xs);
  background: var(--bg-soft); overflow: hidden; transition: .25s;
}
.phonein:focus-within { border-color: var(--purple); background: #fff; box-shadow: 0 0 0 4px rgba(127,0,143,.1); }
.phonein > span {
  display: grid; place-items: center; padding: 0 14px;
  background: var(--purple-100); color: var(--purple);
  font-weight: 700; font-size: .93rem; border-inline-end: 1.5px solid var(--purple-200);
}
.phonein input { border: 0 !important; background: transparent !important; box-shadow: none !important; flex: 1; min-width: 0; }

.codein {
  text-align: center; font-size: 1.7rem !important; font-weight: 700;
  letter-spacing: .5em; text-indent: .5em;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  padding: 15px 12px !important;
}

.login2__alt { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.login2__alt button {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 15px; border-radius: 999px;
  background: var(--bg-soft); border: 1px solid var(--line);
  font-size: .84rem; font-weight: 700; color: var(--body); transition: .25s;
}
.login2__alt button svg { width: 14px; height: 14px; }
.login2__alt button:hover { border-color: var(--purple); color: var(--purple); }

.login2__help {
  display: flex; align-items: center; gap: 9px; justify-content: center;
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: .86rem; color: var(--muted);
}
.login2__help svg { width: 16px; height: 16px; flex: none; }
.login2__help a { color: var(--purple); font-weight: 700; }

.login2__side { padding-top: 8px; }
.login2__side h2 { font-size: 1.18rem; margin-bottom: 20px; }
.login2__note {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: 24px; padding: 15px 17px; border-radius: var(--r-xs);
  background: var(--purple-100); border: 1px solid var(--purple-200);
  font-size: .86rem; color: var(--purple-700);
}
.login2__note svg { width: 16px; height: 16px; flex: none; margin-top: 3px; }

.alert--test { background: #FFF6E5; color: #8A5A00; align-items: flex-start; }
.alert--test svg { margin-top: 3px; }
.alert--test code {
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 1.1rem; letter-spacing: .18em; font-weight: 700;
  background: #fff; padding: 2px 10px; border-radius: 7px; color: var(--red);
}

/* ---------------------------------------------------------- dashboard */
.cab__top {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 22px 26px; margin-bottom: 22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-xs);
}
.cab__who { display: flex; align-items: center; gap: 16px; min-width: 0; }
.cab__av {
  width: 56px; height: 56px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: var(--g-purple); color: #fff; font-size: 1.4rem; font-weight: 700; box-shadow: var(--sh-p);
}
.cab__who > span:last-child { display: grid; gap: 1px; min-width: 0; }
.cab__hi { font-size: .8rem; color: var(--muted); font-weight: 600; }
.cab__who b { font-size: 1.2rem; color: var(--ink); font-weight: 700; letter-spacing: -.02em; }
.cab__who em { display: inline-flex; align-items: center; gap: 7px; font-style: normal; font-size: .86rem; color: var(--muted); }
.cab__who em svg { width: 14px; height: 14px; }

.cab__kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; margin-bottom: 24px; }
.cabkpi {
  --c: var(--purple); --c-soft: var(--purple-100); --c-line: var(--purple-200); --c-grad: var(--g-purple);
  display: grid; gap: 3px; padding: 22px 22px 20px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.cabkpi--red { --c: var(--red); --c-soft: var(--red-100); --c-line: #F8D4D4; --c-grad: var(--g-red); }
.cabkpi:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.cabkpi__ico {
  width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 10px;
  background: var(--c-soft); color: var(--c); border: 1px solid var(--c-line);
}
.cabkpi__ico svg { width: 20px; height: 20px; }
.cabkpi__v { font-size: 1.5rem; font-weight: 700; color: var(--ink); letter-spacing: -.03em; line-height: 1.2; }
.cabkpi__l { font-size: .82rem; color: var(--muted); font-weight: 600; }

.cab__warn {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 16px 20px; border-radius: var(--r-xs); margin-bottom: 24px;
  background: var(--red-100); border: 1px solid #F8D4D4; color: var(--red-600); font-size: .92rem;
}
.cab__warn svg { width: 19px; height: 19px; flex: none; margin-top: 2px; }
.cab__warn a { font-weight: 700; text-decoration: underline; }

.cab__st {
  display: flex; align-items: center; gap: 11px;
  font-size: 1.2rem; margin: 34px 0 18px;
}
.cab__st svg { width: 20px; height: 20px; color: var(--purple); }

.cab__empty {
  display: grid; justify-items: center; gap: 12px; padding: 40px 20px; text-align: center;
  background: var(--bg-soft); border: 1px dashed var(--line); border-radius: var(--r-lg); color: var(--muted);
}
.cab__empty svg { width: 38px; height: 38px; color: var(--purple-300); opacity: .6; }

.loans { display: grid; gap: 16px; }
.loan {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-inline-start: 4px solid var(--purple);
  border-radius: var(--r-lg); padding: 24px 26px;
  transition: box-shadow .35s var(--ease);
}
.loan:hover { box-shadow: var(--sh); }
.loan--overdue { border-inline-start-color: var(--red); }
.loan--closed { border-inline-start-color: #16A34A; opacity: .92; }

.loan__h { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
.loan__ico {
  width: 50px; height: 50px; flex: none; border-radius: 16px; display: grid; place-items: center;
  background: var(--purple-100); color: var(--purple); border: 1px solid var(--purple-200);
}
.loan--overdue .loan__ico { background: var(--red-100); color: var(--red); border-color: #F8D4D4; }
.loan--closed .loan__ico { background: #E9F9EF; color: #16A34A; border-color: #C3EDD3; }
.loan__ico svg { width: 23px; height: 23px; }
.loan__id { display: grid; gap: 2px; flex: 1; min-width: 0; }
.loan__id b { font-size: 1.05rem; color: var(--ink); font-weight: 700; }
.loan__id em { font-style: normal; font-size: .82rem; color: var(--muted); }
.loan__st {
  padding: 7px 15px; border-radius: 999px; font-size: .78rem; font-weight: 700; white-space: nowrap;
}
.loan__st--active  { background: var(--purple-100); color: var(--purple); }
.loan__st--overdue { background: var(--g-red); color: #fff; }
.loan__st--closed  { background: #E9F9EF; color: #12703B; }

.loan__nums {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px; padding: 18px 20px; margin-bottom: 16px;
  background: var(--bg-soft); border-radius: var(--r-xs);
}
.loan__nums span { display: grid; gap: 2px; min-width: 0; }
.loan__nums em { font-style: normal; font-size: .76rem; color: var(--muted); font-weight: 600; }
.loan__nums b { font-size: 1.06rem; color: var(--ink); font-weight: 700; letter-spacing: -.02em; }
.loan__nums b.is-ok { color: #16A34A; }
.loan__nums b.is-left { color: var(--red); }

.loan__bar { height: 9px; border-radius: 999px; background: var(--bg-deep); overflow: hidden; }
.loan__bar > span {
  display: block; height: 100%; border-radius: 999px;
  background: var(--g-purple); transition: width .8s var(--ease);
}
.loan--closed .loan__bar > span { background: linear-gradient(135deg, #22C55E, #16A34A); }
.loan--overdue .loan__bar > span { background: var(--g-red); }
.loan__pct { font-size: .82rem; color: var(--muted); margin-top: 7px; }
.loan__pct b { color: var(--ink); }

.loan__meta {
  display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 16px;
  font-size: .86rem; color: var(--muted);
}
.loan__meta span { display: inline-flex; align-items: center; gap: 7px; }
.loan__meta svg { width: 15px; height: 15px; color: var(--purple); flex: none; }
.loan__meta b { color: var(--ink); font-weight: 700; }
.loan__meta i { font-style: normal; }
.loan__meta i.is-bad { color: var(--red); font-weight: 700; }

.loan__note {
  display: flex; gap: 10px; align-items: flex-start; margin-top: 16px;
  padding: 13px 16px; border-radius: var(--r-xs);
  background: var(--purple-100); font-size: .87rem; color: var(--purple-700);
}
.loan__note svg { width: 16px; height: 16px; flex: none; margin-top: 3px; }

.loan__pays { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.loan__pays summary {
  display: flex; align-items: center; gap: 9px; cursor: pointer; list-style: none;
  font-size: .88rem; font-weight: 700; color: var(--purple);
}
.loan__pays summary::-webkit-details-marker { display: none; }
.loan__pays summary svg { width: 16px; height: 16px; }
.loan__pays summary svg:last-child { margin-inline-start: auto; transition: transform .3s var(--ease); }
.loan__pays[open] summary svg:last-child { transform: rotate(180deg); }
.paytable { width: 100%; margin-top: 14px; font-size: .87rem; }
.paytable th {
  text-align: start; padding: 9px 12px 9px 0; font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: var(--muted); border-bottom: 1px solid var(--line);
}
.paytable td { padding: 10px 12px 10px 0; border-bottom: 1px solid var(--line-2); }
.paytable tr:last-child td { border-bottom: 0; }

@media (max-width: 900px) {
  .login2 { grid-template-columns: 1fr; }
  .login2__side { order: -1; padding-top: 0; }
}
@media (max-width: 640px) {
  .login2__form { padding: 24px 18px; }
  .codein { font-size: 1.4rem !important; letter-spacing: .35em; text-indent: .35em; }
  .cab__top { padding: 18px; }
  .cab__who { gap: 13px; }
  .cab__av { width: 48px; height: 48px; font-size: 1.2rem; }
  .cab__who b { font-size: 1.05rem; }
  .cab__kpis { grid-template-columns: 1fr 1fr; gap: 11px; }
  .cabkpi { padding: 16px 15px 14px; }
  .cabkpi__ico { width: 38px; height: 38px; border-radius: 12px; margin-bottom: 8px; }
  .cabkpi__ico svg { width: 17px; height: 17px; }
  .cabkpi__v { font-size: 1.14rem; }
  .cabkpi__l { font-size: .75rem; }
  .loan { padding: 18px 16px; border-radius: var(--r); }
  .loan__h { gap: 12px; margin-bottom: 16px; }
  .loan__ico { width: 42px; height: 42px; border-radius: 13px; }
  .loan__id b { font-size: .96rem; }
  .loan__nums { grid-template-columns: 1fr 1fr; padding: 14px; gap: 12px; }
  .loan__nums b { font-size: .98rem; }
  .cab__st { font-size: 1.08rem; margin: 26px 0 14px; }
}

/* ---------------------------------------------------------- pay panel */
.loan__pay { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.payform { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.payform__l {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .84rem; font-weight: 700; color: var(--muted);
}
.payform__l svg { width: 16px; height: 16px; color: var(--purple); }
.payform__in {
  display: flex; align-items: center;
  border: 1.5px solid var(--line); border-radius: var(--r-xs);
  background: var(--bg-soft); overflow: hidden; transition: .25s;
}
.payform__in:focus-within { border-color: var(--purple); background: #fff; box-shadow: 0 0 0 4px rgba(127,0,143,.1); }
.payform__in input {
  width: 116px; padding: 11px 12px; border: 0; background: transparent;
  font-size: 16px; font-weight: 700; color: var(--ink);
}
.payform__in input:focus { outline: none; }
.payform__in em { font-style: normal; padding-inline-end: 12px; color: var(--muted); font-weight: 700; }
.payform__b {
  min-height: 44px; padding: 11px 18px; border-radius: 999px;
  font-size: .86rem; font-weight: 700;
  background: var(--purple-100); color: var(--purple);
  transition: .28s var(--ease);
}
.payform__b:hover { background: var(--g-purple); color: #fff; box-shadow: var(--sh-p); transform: translateY(-2px); }
.payform__b--full { background: var(--red-100); color: var(--red); }
.payform__b--full:hover { background: var(--g-red); color: #fff; box-shadow: var(--sh-r); }

.loan__pending {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 13px 16px; border-radius: var(--r-xs);
  background: #FFF6E5; color: #8A5A00; font-size: .87rem;
}
.loan__pending svg { width: 16px; height: 16px; flex: none; margin-top: 3px; }

@media (max-width: 640px) {
  .payform { gap: 8px; }
  .payform__l { width: 100%; }
  .payform__in { flex: 1 1 120px; }
  .payform__in input { width: 100%; }
  .payform__b { flex: 1 1 100%; }
}

/* ==========================================================================
   Loan calculator
   ========================================================================== */
.calc__box {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh);
}
.calc__form { padding: clamp(24px, 1.6rem + 1.6vw, 38px); display: grid; gap: 22px; align-content: start; }
.calc__field { display: grid; gap: 10px; }
/* an author `display` would otherwise override the UA rule for [hidden] */
.calc__field[hidden], [hidden] { display: none !important; }
.calc__lbl { font-size: .82rem; font-weight: 700; color: var(--ink); }
.calc__lbl--mt { margin-top: 6px; }

.calc__tabs { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 9px; }
.calc__tab {
  display: grid; justify-items: center; gap: 7px; text-align: center;
  padding: 15px 10px; border-radius: var(--r-sm);
  background: var(--bg-soft); border: 1.5px solid var(--line);
  font-size: .82rem; font-weight: 700; color: var(--body);
  transition: .28s var(--ease); min-height: 84px; align-content: center;
}
.calc__tab svg { width: 21px; height: 21px; color: var(--muted); transition: color .28s; }
.calc__tab:hover { border-color: var(--purple-300); color: var(--purple); }
.calc__tab.is-on {
  background: var(--g-purple); border-color: transparent; color: #fff; box-shadow: var(--sh-p);
}
.calc__tab.is-on svg { color: #fff; }

.calc__in {
  display: flex; align-items: center;
  border: 1.5px solid var(--line); border-radius: var(--r-xs);
  background: var(--bg-soft); overflow: hidden; transition: .25s;
}
.calc__in:focus-within { border-color: var(--purple); background: #fff; box-shadow: 0 0 0 4px rgba(127,0,143,.1); }
.calc__in input {
  flex: 1; min-width: 0; padding: 14px 16px; border: 0; background: transparent;
  font-size: 1.15rem; font-weight: 700; color: var(--ink); -moz-appearance: textfield;
}
.calc__in input::-webkit-outer-spin-button,
.calc__in input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc__in input:focus { outline: none; }
.calc__in em { font-style: normal; padding-inline-end: 16px; color: var(--muted); font-weight: 700; }

.calc__range { width: 100%; height: 6px; border-radius: 999px; background: var(--bg-deep); appearance: none; cursor: pointer; }
.calc__range::-webkit-slider-thumb {
  appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--g-purple); border: 3px solid #fff; box-shadow: var(--sh-p); cursor: pointer;
}
.calc__range::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; border: 3px solid #fff;
  background: var(--purple); box-shadow: var(--sh-p); cursor: pointer;
}

.calc__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.calc__chip {
  min-height: 42px; padding: 10px 17px; border-radius: 999px;
  background: var(--bg-soft); border: 1.5px solid var(--line);
  font-size: .86rem; font-weight: 700; color: var(--body); transition: .25s var(--ease);
}
.calc__chip:hover { border-color: var(--purple-300); color: var(--purple); }
.calc__chip.is-on { background: var(--g-purple); border-color: transparent; color: #fff; box-shadow: var(--sh-p); }

.calc__hint {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: .84rem; color: var(--muted); min-height: 20px;
}
.calc__hint svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--purple); }

/* ---- result panel ---- */
.calc__out {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(24px, 1.6rem + 1.6vw, 38px);
  background: var(--g-deep); color: rgba(255,255,255,.82);
  display: grid; align-content: start; gap: 18px;
}
.calc__out::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(420px 300px at 88% -10%, rgba(204,0,0,.42), transparent 64%);
}
.calc__outlbl { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 700; }
.calc__amount {
  display: block; font-size: clamp(2.1rem, 1.4rem + 3vw, 3.1rem); font-weight: 700;
  color: #fff; letter-spacing: -.035em; line-height: 1.05; margin-top: -8px;
}
.calc__rows { display: grid; gap: 1px; background: rgba(255,255,255,.13); border-radius: var(--r-sm); overflow: hidden; }
.calc__row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 16px; background: rgba(255,255,255,.07); font-size: .88rem;
}
.calc__row b { color: #fff; font-size: 1rem; font-weight: 700; white-space: nowrap; }
.calc__row--total { background: rgba(255,255,255,.14); }
.calc__row--total b { font-size: 1.14rem; }

.calc__actions { display: grid; gap: 10px; margin-top: 4px; }
.calc__note {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: .78rem; color: rgba(255,255,255,.6); line-height: 1.55;
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,.13);
}
.calc__note svg { width: 15px; height: 15px; flex: none; margin-top: 2px; }

@media (max-width: 900px) {
  .calc__box { grid-template-columns: 1fr; border-radius: var(--r-lg); }
}
@media (max-width: 640px) {
  .calc__form, .calc__out { padding: 22px 18px; }
  .calc__tabs { grid-template-columns: 1fr; gap: 8px; }
  .calc__tab { grid-template-columns: auto 1fr; justify-items: start; text-align: start; min-height: 56px; padding: 12px 16px; gap: 12px; }
  .calc__chip { min-height: 40px; padding: 9px 14px; font-size: .82rem; }
  .calc__amount { font-size: 2.1rem; }
}

/* ---------------------------------------------------------- cabinet nav item */
.nav > a.nav__cab {
  display: inline-flex; align-items: center; gap: 8px;
  margin-inline-start: 8px; padding: 9px 18px;
  border-radius: 999px;
  background: var(--purple-100); color: var(--purple);
  transition: background .28s var(--ease), color .28s, box-shadow .28s var(--ease), transform .28s var(--ease);
}
.nav > a.nav__cab svg { width: 16px; height: 16px; }
.nav > a.nav__cab::after { display: none; }
.nav > a.nav__cab:hover {
  background: var(--g-purple); color: #fff;
  box-shadow: var(--sh-p); transform: translateY(-2px);
}
.nav > a.nav__cab.is-active { background: var(--g-purple); color: #fff; box-shadow: var(--sh-p); }

@media (max-width: 900px) {
  .nav > a.nav__cab {
    margin-inline-start: 0; margin-top: 8px;
    justify-content: center; border-radius: 14px;
    background: var(--g-purple); color: #fff; box-shadow: var(--sh-p);
  }
  .nav > a.nav__cab:hover, .nav > a.nav__cab.is-active { transform: none; }
}

/* purity chips carry their own per-gram price */
.calc__chips--purity .calc__chip { display: grid; gap: 1px; padding: 8px 15px; line-height: 1.25; }
.calc__chips--purity .calc__chip b { font-size: .9rem; font-weight: 700; }
.calc__chips--purity .calc__chip em { font-style: normal; font-size: .68rem; opacity: .7; font-weight: 600; }

/* a pasted embed may carry fixed-size wrappers — never let them size the map */
.map > div, .map .mapouter, .map .gmap_canvas { width: 100% !important; height: auto !important; }
.map iframe { display: block; width: 100% !important; height: clamp(300px, 42vw, 460px) !important; border: 0; }

/* ---------------------------------------------------------- footer credits */
.footer__legal { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer__legal em {
  font-style: normal; padding: 3px 10px; border-radius: 999px;
  background: rgba(255,255,255,.08); font-size: .78rem;
}
.footer__made {
  display: flex; align-items: center; justify-content: center; gap: 10px 20px; flex-wrap: wrap;
  padding: 18px 0 24px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .83rem; color: rgba(255,255,255,.5); text-align: center;
}
.footer__flag { display: inline-flex; align-items: center; gap: 9px; }
.footer__flag svg { width: 22px; height: auto; border-radius: 3px; flex: none; box-shadow: 0 1px 4px rgba(0,0,0,.35); }
.footer__flag b { color: rgba(255,255,255,.78); font-weight: 700; }
.footer__dev a { color: var(--purple-300); font-weight: 700; transition: color .25s; }
.footer__dev a:hover { color: #fff; }
@media (max-width: 640px) { .footer__made { flex-direction: column; gap: 8px; padding-bottom: 20px; } }
