@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Unbounded:wght@300;400;500&display=swap');

:root{
  --bg:#162b39;
  --bg-2:#203948;
  --bg-3:#274759;
  --surface:rgba(255,255,255,0.06);
  --surface-2:rgba(255,255,255,0.09);
  --surface-3:rgba(255,255,255,0.12);
  --text:#f7fbfd;
  --text-soft:#dde7ef;
  --muted:#b7c7d3;
  --line:rgba(255,255,255,0.08);
  --line-strong:rgba(255,255,255,0.14);
  --primary:#7988ff;
  --primary-2:#a3b0ff;
  --accent:#cfd8e3;
  --success:#9ae6b4;
  --danger:#feb2b2;
  --shadow:0 24px 64px rgba(5,12,22,0.34);
  --shadow-soft:0 14px 34px rgba(8,15,28,0.20);
  --glass:rgba(255,255,255,0.05);
  --glass-border:rgba(255,255,255,0.08);
  --container:1180px;
  --radius:18px;
  --radius-sm:14px;
  --heroX:50%;
  --heroY:28%;
  --header-height:76px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{overflow-x:clip}

body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(163,176,255,0.14), transparent 60%),
    radial-gradient(1100px 560px at 90% 0%, rgba(255,255,255,0.08), transparent 60%),
    linear-gradient(180deg, #172d3b 0%, #213a4a 42%, #29485a 100%);
  min-height:100vh;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  position:relative;
  isolation:isolate;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size:72px 72px;
  mask-image:radial-gradient(circle at 50% 20%, rgba(0,0,0,0.55), rgba(0,0,0,0));
  opacity:.08;
  z-index:-1;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,textarea{font:inherit}
.small{font-size:13px}
.muted{color:var(--muted)}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
  position:relative;
  z-index:1;
}

/* Header */
:root{
  --header-height: 76px;
}

.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 120;
  overflow-x: clip;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(17,30,40,0.62), rgba(17,30,40,0.34));
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header__inner{
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  padding: 8px 20px;
  gap: 16px;
}

body{
  padding-top: var(--header-height);
}

.brand,
.brand__text{
  font-family:"Unbounded",sans-serif !important;
  font-weight:300;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
  cursor:pointer;
}

.brand__text{
  font-size:27px;
  letter-spacing:-0.02em;
}

.header__center {
  position: static; /* usuń absolute */
  transform: none;

  flex: 1;
  display: flex;
  justify-content: center;

  min-width: 0; /* bardzo ważne */
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  max-width: 600px; /* klucz */
  width: 100%;
}

.nav__link{
  font-weight:600;
  color:rgba(247,251,253,0.96);
  opacity:.94;
  padding:8px 10px;
  border-radius:10px;
  transition:background .18s ease, color .18s ease, transform .18s ease;
}

.nav__link:hover{
  background:rgba(255,255,255,0.05);
  transform:translateY(-1px);
}

.header__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;

  flex-shrink: 0; /* klucz */
}

.nav-toggle{
  display:none;
  border-radius:12px;
  padding:8px;
  background:var(--glass);
  border:1px solid var(--glass-border);
  cursor:pointer;
}

.nav-toggle__bar{
  display:block;
  width:18px;
  height:2px;
  background:rgba(247,249,250,0.92);
  margin:3px 0;
  border-radius:99px;
}

/* CTA in header — calmer premium version */
.navlink--cta{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 16px;
  border-radius:999px;
  color:#f7fbfd;
  font-weight:700;
  letter-spacing:-0.01em;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 10px 28px rgba(5,12,24,0.22),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
  overflow:hidden;
  isolation:isolate;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease;
}

.navlink--cta::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
  opacity:.75;
}

.navlink--cta::after{
  content:none;
}

.navlink--cta:hover{
  transform:translateY(-1px);
  border-color:rgba(163,176,255,0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  box-shadow:
    0 14px 34px rgba(5,12,24,0.28),
    0 0 0 1px rgba(163,176,255,0.08);
}

.navlink--cta:focus-visible{
  outline:none;
  border-color:rgba(163,176,255,0.28);
  box-shadow:
    0 0 0 4px rgba(163,176,255,0.14),
    0 14px 34px rgba(5,12,24,0.28);
}

/* Language switch */
.lang-switch{
  --lang-gap:4px;
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:var(--lang-gap);
  padding:4px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 8px 22px rgba(2,8,20,0.26),
    inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter:blur(10px);
  isolation:isolate;
}

.lang-switch__glow{
  position:absolute;
  inset:-6px;
  border-radius:inherit;
  background:radial-gradient(circle at 50% 50%, rgba(140,160,182,0.10), transparent 70%);
  opacity:.55;
  z-index:-1;
  pointer-events:none;
}

.lang-switch__btn{
  appearance:none;
  border:0;
  background:transparent;
  min-width:42px;
  height:32px;
  padding:0 12px;
  border-radius:999px;
  color:rgba(200,211,222,0.86);
  font-weight:800;
  font-size:12px;
  letter-spacing:.03em;
  cursor:pointer;
  position:relative;
  transition:color .22s ease, transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.lang-switch__text{
  position:relative;
  z-index:1;
}

.lang-switch__btn::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  opacity:0;
  transition:opacity .22s ease;
}

.lang-switch__btn:hover{color:rgba(247,251,252,0.96)}
.lang-switch__btn:hover::before{opacity:1}

.lang-switch__btn.is-active{
  color:#f7fbfc;
  background:linear-gradient(180deg, rgba(151,170,191,0.18), rgba(112,131,153,0.12));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 6px 14px rgba(6,12,24,0.18);
  transform:translateY(-1px);
}

.lang-switch__btn.is-active::after{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:inherit;
  border:1px solid rgba(210,222,234,0.08);
  pointer-events:none;
}

.lang-switch__btn:focus-visible{
  outline:none;
  box-shadow:
    0 0 0 4px rgba(154,175,198,0.14),
    0 6px 14px rgba(6,12,24,0.18);
}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  padding:40px 0 62px;
}

.hero__bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
}

.blob{
  position:absolute;
  border-radius:50%;
  filter:blur(26px) saturate(105%);
  opacity:.78;
  transform:translate3d(0,0,0);
}

.blob--one{
  width:560px;
  height:420px;
  left:-10%;
  top:-8%;
  background:radial-gradient(circle at 30% 30%, rgba(121,136,255,0.22), rgba(121,136,255,0.02));
  animation:blobMove 20s ease-in-out infinite;
}

.blob--two{
  width:520px;
  height:420px;
  right:-8%;
  top:4%;
  background:radial-gradient(circle at 70% 40%, rgba(255,255,255,0.16), rgba(255,255,255,0.02));
  animation:blobMove 24s ease-in-out infinite reverse;
}

.hero__spotlight{
  position:absolute;
  inset:-120px;
  background:
    radial-gradient(760px 360px at var(--heroX) var(--heroY), rgba(121,136,255,0.16), rgba(121,136,255,0)),
    radial-gradient(620px 260px at 18% 22%, rgba(255,255,255,0.10), rgba(255,255,255,0));
  opacity:.82;
}

.hero__grid{
  position:absolute;
  inset:0;
  opacity:.14;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(48% 40% at 50% 18%, rgba(0,0,0,1), rgba(0,0,0,0));
}

.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:34px;
  align-items:start;
  z-index:1;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 13px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  color:var(--text-soft);
  font-weight:700;
  box-shadow:var(--shadow-soft);
}

.pill__dot{
  width:9px;
  height:9px;
  border-radius:99px;
  background:var(--primary-2);
  box-shadow:0 0 0 6px rgba(163,176,255,0.12);
}

.hero__title{
  margin:0px 0 12px;
  font-size:clamp(34px,5vw,58px);
  line-height:1.03;
  letter-spacing:-0.04em;
  max-width:17ch;
  font-weight: bold;
  font-size: 52px;
}

.hero__subtitle{
  margin:0 0 22px;
  max-width:64ch;
  color:var(--text-soft);
  font-size:17px;
}

.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:12px 18px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:800;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}

.btn--primary{
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#fff;
  box-shadow:0 18px 44px rgba(121,136,255,0.22);
}

.btn--ghost{
  background:rgba(255,255,255,0.06);
  border-color:rgba(255,255,255,0.10);
  color:var(--text);
}

.btn--full{width:100%}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.badge {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "text text";
  column-gap: 12px;
  row-gap: 10px;
  align-items: start;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow-soft);
}

.badge__icon {
  grid-area: icon;
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
}

.badge__content {
  display: contents;
}


.badge__icon::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), transparent 42%),
    radial-gradient(circle at 75% 80%, rgba(255,255,255,0.08), transparent 40%);
  pointer-events:none;
}

.badge__icon::before{
  content:"";
  width:18px;
  height:18px;
  position:relative;
  z-index:1;
  background:linear-gradient(180deg, #ffffff, #dfe9f6);
  filter:drop-shadow(0 2px 6px rgba(0,0,0,0.18));
  -webkit-mask-position:center;
  -webkit-mask-repeat:no-repeat;
  -webkit-mask-size:contain;
  mask-position:center;
  mask-repeat:no-repeat;
  mask-size:contain;
}

/* Mail */
.hero__badges .badge:nth-child(1) .badge__icon{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05)),
    radial-gradient(circle at 30% 20%, rgba(121,136,255,0.34), transparent 58%),
    rgba(255,255,255,0.04);
}
.hero__badges .badge:nth-child(1) .badge__icon::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='6.5' width='17' height='11' rx='2.2'/%3E%3Cpath d='M4.8 8l7.2 5.2L19.2 8'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='6.5' width='17' height='11' rx='2.2'/%3E%3Cpath d='M4.8 8l7.2 5.2L19.2 8'/%3E%3C/svg%3E");
}

/* Lead */
.hero__badges .badge:nth-child(2) .badge__icon{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05)),
    radial-gradient(circle at 30% 20%, rgba(115,220,190,0.28), transparent 58%),
    rgba(255,255,255,0.04);
}
.hero__badges .badge:nth-child(2) .badge__icon::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='5.5'/%3E%3Cpath d='M20 20l-4.2-4.2'/%3E%3Cpath d='M11 8.7v4.6'/%3E%3Cpath d='M8.7 11h4.6'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='5.5'/%3E%3Cpath d='M20 20l-4.2-4.2'/%3E%3Cpath d='M11 8.7v4.6'/%3E%3Cpath d='M8.7 11h4.6'/%3E%3C/svg%3E");
}

/* Calendar */
.hero__badges .badge:nth-child(3) .badge__icon{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05)),
    radial-gradient(circle at 30% 20%, rgba(255,188,120,0.28), transparent 58%),
    rgba(255,255,255,0.04);
}
.hero__badges .badge:nth-child(3) .badge__icon::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5.5' width='16' height='14' rx='2.2'/%3E%3Cpath d='M8 3.8v3.2'/%3E%3Cpath d='M16 3.8v3.2'/%3E%3Cpath d='M4 9.5h16'/%3E%3Cpath d='M8 13h3'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5.5' width='16' height='14' rx='2.2'/%3E%3Cpath d='M8 3.8v3.2'/%3E%3Cpath d='M16 3.8v3.2'/%3E%3Cpath d='M4 9.5h16'/%3E%3Cpath d='M8 13h3'/%3E%3C/svg%3E");
}

.badge__title {
  grid-area: title;
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  align-self: center;
}

.badge__text {
  grid-area: text;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.stat{
  padding:14px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  border:1px solid rgba(255,255,255,0.1);
  box-shadow:var(--shadow-soft);
}

.stat__value{
  margin:0;
  font-size:28px;
  line-height:1;
  font-weight:900;
  letter-spacing:-0.04em;
}

.stat__label{
  margin:8px 0 0;
  color:var(--muted);
  font-size:13px;
}

/* Preview panel */
.hero__panel{
  position:relative;
}

.panel{
  background:linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.06));
  border-radius:22px;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:var(--shadow);
  overflow:hidden;
  backdrop-filter:blur(10px);
}

.panel__top{
  display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel__dots span{
  display:inline-block;
  width:10px;
  height:10px;
  border-radius:99px;
  margin-right:6px;
  background:rgba(255,255,255,0.22);
}

.panel__title{
  margin:0;
  font-size:13px;
  font-weight:800;
  color:var(--text-soft);
}

.panel__subtitle{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

.panel__body{
  padding:18px;
}

.panel-thread{
  display:grid;
  gap:12px;
}

.panel-message{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.panel-message--client{
  align-items:flex-start;
}

.panel-message--ai{
  align-items:flex-end;
}

.panel-message__meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.panel-message__bubble{
  max-width:92%;
  padding:14px 16px;
  border-radius:18px;
  font-size:14px;
  line-height:1.65;
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:var(--shadow-soft);
}

.panel-message--client .panel-message__bubble{
  background:rgba(255,255,255,0.07);
  color:var(--text);
}

.panel-message--ai .panel-message__bubble{
  background:linear-gradient(180deg, rgba(121,136,255,0.14), rgba(121,136,255,0.06));
  border-color:rgba(163,176,255,0.24);
  color:var(--text);
}

.chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding:7px 11px;
  border-radius:999px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.1);
  font-weight:700;
  color:var(--text-soft);
  font-size:12px;
}

.panel__note{
  margin-top:14px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  color:var(--text-soft);
  font-size:13px;
  font-weight:700;
}

.panel__note-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#d9e2eb;
  box-shadow:0 0 0 6px rgba(217,226,235,0.12);
}

/* Sections */
.section{
  padding:78px 0;
}

.section--light{
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border-top:1px solid rgba(255,255,255,0.07);
  border-bottom:1px solid rgba(255,255,255,0.07);
}

.section--cta{
  padding-top:84px;
  padding-bottom:84px;
}

.section__head{
  margin-bottom:24px;
}

.section__title{
  margin:0 0 8px;
  font-size:clamp(28px,4vw,40px);
  line-height:1.08;
  letter-spacing:-0.03em;
}

.section__subtitle{
  margin:0;
  max-width:75ch;
  color:var(--text-soft);
}

/* Generic grids/cards */
.grid{
  display:grid;
  gap:18px;
}
.grid--3{grid-template-columns:repeat(3,1fr)}
.grid--2{grid-template-columns:repeat(2,1fr)}

.feature,
.faq__item,
.cta,
.step,
.usecase-card,
.implementation-card,
.implementation__intro,
.price-card{
  backdrop-filter:blur(8px);
}

.feature{
  padding:20px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05));
  border:1px solid rgba(255,255,255,0.11);
  box-shadow:var(--shadow-soft);
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.feature:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,0.16);
  box-shadow:0 18px 40px rgba(8,15,28,0.22);
}

.feature--accent{
  background:
    radial-gradient(600px 160px at 0% 0%, rgba(163,176,255,0.16), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.06));
}

.feature__eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  color:var(--text-soft);
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  margin-bottom:12px;
}

.feature__title{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.15;
  letter-spacing:-0.02em;
}

.feature__text{
  margin:0;
  color:var(--muted);
}

/* Steps */
.steps{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.step{
  display:flex;
  gap:16px;
  padding:22px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05));
  border:1px solid rgba(255,255,255,0.11);
  box-shadow:var(--shadow-soft);
}

.step__num{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  flex:0 0 42px;
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#fff;
  font-weight:900;
  box-shadow:0 14px 24px rgba(121,136,255,0.24);
}

.step__title{
  margin:0 0 6px;
  font-size:20px;
  line-height:1.15;
  letter-spacing:-0.02em;
}

.step__text{
  margin:0;
  color:var(--muted);
}

/* Use cases */
.usecases-premium{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
  margin-top:30px;
}

.usecase-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)),
    radial-gradient(120% 140% at 0% 0%, rgba(163,176,255,0.11), transparent 58%);
  box-shadow:0 18px 60px rgba(5,10,20,0.20);
  overflow:hidden;
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.usecase-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
  opacity:.75;
}

.usecase-card:hover{
  transform:translateY(-6px);
  border-color:rgba(163,176,255,0.28);
  box-shadow:0 24px 80px rgba(5,10,20,0.28);
}

.usecase-card--featured{
  border-color:rgba(163,176,255,0.34);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05)),
    radial-gradient(130% 150% at 10% 0%, rgba(163,176,255,0.20), transparent 56%);
  box-shadow:0 28px 90px rgba(89,106,255,0.18);
  transform:translateY(-6px);
}

.usecase-card__top,
.usecase-card__meta,
.usecase-card__list,
.usecase-card__footer{
  position:relative;
  z-index:1;
}

.usecase-card__top{margin-bottom:18px}

.usecase-card__eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  margin-bottom:14px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  color:var(--text-soft);
  border:1px solid rgba(255,255,255,0.1);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.usecase-card__title{
  margin:0 0 10px;
  font-size:clamp(24px,3vw,32px);
  line-height:1.05;
  letter-spacing:-0.04em;
}

.usecase-card__desc{
  margin:0;
  color:var(--text-soft);
  line-height:1.7;
  font-size:15px;
}

.usecase-card__meta{
  display:grid;
  gap:12px;
  margin-bottom:18px;
}

.usecase-meta{
  display:grid;
  gap:4px;
  padding:14px;
  border-radius:16px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.07);
}

.usecase-meta__k{
  color:var(--muted);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.usecase-meta__v{
  color:var(--text);
  font-size:14px;
  line-height:1.6;
  font-weight:600;
}

.usecase-card__list{
  margin:0 0 20px;
  padding-left:18px;
  color:var(--text-soft);
}
.usecase-card__list li{margin-bottom:10px}
.usecase-card__list li:last-child{margin-bottom:0}

.usecase-card__footer{
  margin-top:auto;
}

.usecase-card__pill{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  color:var(--text-soft);
  font-size:13px;
  font-weight:700;
}

.usecase-card__pill--strong{
  background:rgba(163,176,255,0.14);
  border-color:rgba(163,176,255,0.24);
  color:#eef2ff;
}

.usecases-note{
  margin-top:18px;
  padding:18px 20px;
  border-radius:18px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  color:var(--text-soft);
}

/* Implementation */
.implementation{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:22px;
  align-items:start;
}

.implementation__intro{
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(700px 220px at 0% 0%, rgba(163,176,255,0.14), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  box-shadow:var(--shadow-soft);
}

.implementation__eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  margin-bottom:14px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.10);
  color:var(--text-soft);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.implementation__title{
  margin:0 0 12px;
  font-size:clamp(28px,4vw,38px);
  line-height:1.05;
  letter-spacing:-0.04em;
}

.implementation__text{
  margin:0 0 18px;
  color:var(--text-soft);
  line-height:1.75;
}

.implementation__facts{
  display:grid;
  gap:12px;
}

.implementation__fact{
  display:grid;
  gap:4px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
}

.implementation__fact-k{
  color:var(--muted);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.implementation__fact-v{
  color:var(--text);
  font-weight:700;
  line-height:1.55;
}

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

.implementation-card{
  padding:22px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05));
  border:1px solid rgba(255,255,255,0.11);
  box-shadow:var(--shadow-soft);
}

.implementation-card__num{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  margin-bottom:14px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#fff;
  font-weight:900;
  box-shadow:0 14px 24px rgba(121,136,255,0.24);
}

.implementation-card__title{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.18;
  letter-spacing:-0.02em;
}

.implementation-card__text{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

/* Pricing */
.pricing--premium{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
  margin-top:30px;
}

.price-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)),
    radial-gradient(120% 140% at 0% 0%, rgba(163,176,255,0.11), transparent 58%);
  box-shadow:0 18px 60px rgba(5,10,20,0.2);
  overflow:hidden;
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.price-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
  opacity:.75;
}

.price-card:hover{
  transform:translateY(-6px);
  border-color:rgba(163,176,255,0.32);
  box-shadow:0 24px 80px rgba(5,10,20,0.28);
}

.price-card--featured{
  border-color:rgba(163,176,255,0.34);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05)),
    radial-gradient(130% 150% at 10% 0%, rgba(163,176,255,0.2), transparent 56%);
  box-shadow:0 28px 90px rgba(89,106,255,0.18);
  transform:translateY(-6px);
}

.price-card__badge{
  position:absolute;
  top:28px;
  right:18px;
  z-index:1;
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(163,176,255,0.16);
  border:1px solid rgba(163,176,255,0.24);
  color:#eaf0ff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.price-card__top,
.price-card__pricebox,
.price-card__list,
.price-card__footer{
  position:relative;
  z-index:1;
}

.price-card__top{
  margin-bottom:18px;
}

.price-card__eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  margin-bottom:14px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  color:var(--text-soft);
  border:1px solid rgba(255,255,255,0.1);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.price-card__title{
  margin:0 0 10px;
  font-size:clamp(28px,4vw,36px);
  line-height:1.02;
  letter-spacing:-0.04em;
}

.price-card__desc{
  margin:0;
  color:var(--text-soft);
  line-height:1.7;
  font-size:15px;
  max-width:34ch;
}

.price-card__pricebox{
  display:grid;
  gap:12px;
  margin-bottom:20px;
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.07);
}

.price-point{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.price-point__label{
  color:var(--muted);
  font-size:12px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:4px;
}

.price-point__value{
  font-size:22px;
  line-height:1.1;
  font-weight:900;
  letter-spacing:-0.03em;
  color:var(--text);
}

.price-card__list{
  margin:0 0 20px;
  padding-left:18px;
  color:var(--text-soft);
}
.price-card__list li{margin-bottom:10px}
.price-card__list li:last-child{margin-bottom:0}

.price-card__footer{
  margin-top:auto;
}

.price-card__note{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.7;
}

.pricing-note{
  margin-top:18px;
  padding:18px 20px;
  border-radius:18px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  color:var(--text-soft);
}

/* FAQ */
.faq{
  display:grid;
  gap:14px;
}

.faq__item{
  margin:0;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.10);
  background:linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05));
  box-shadow:0 14px 34px rgba(8,15,28,0.18);
  overflow:hidden;
  transition:border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.faq__item:hover{
  border-color:rgba(255,255,255,0.16);
  box-shadow:0 18px 42px rgba(8,15,28,0.22);
}

.faq__item[open]{
  border-color:rgba(180,195,215,0.22);
  box-shadow:0 22px 48px rgba(8,15,28,0.24);
}

.faq__summary{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 22px;
  cursor:pointer;
  user-select:none;
}

.faq__summary::-webkit-details-marker{
  display:none;
}

.faq__question{
  display:block;
  font-size:17px;
  line-height:1.4;
  font-weight:800;
  color:var(--text);
  letter-spacing:-0.01em;
}

.faq__icon{
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: rgba(235,242,247,0.92);
  opacity: .88;
  transition: transform .28s ease, opacity .22s ease;
}

.faq__item[open] .faq__icon{
  transform: rotate(180deg);
  opacity: 1;
}

.faq__content{
  height:0;
  overflow:hidden;
  transition:height .34s cubic-bezier(.22,.61,.36,1);
}

.faq__answer{
  padding:0 22px 22px;
  color:var(--muted);
  line-height:1.75;
}

.faq__answer p{
  margin:0;
}

.faq__answer ul{
  margin:10px 0 0 18px;
}

/* CTA / contact */
.cta{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:20px;
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(700px 220px at 0% 0%, rgba(163,176,255,0.14), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  box-shadow:var(--shadow);
}

.cta__title{
  margin:0 0 8px;
  font-size:clamp(30px,4vw,42px);
  line-height:1.04;
  letter-spacing:-0.04em;
}

.cta__text{
  margin:0 0 16px;
  color:var(--text-soft);
}

.cta__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:14px;
}

.meta{
  display:flex;
  gap:8px;
  align-items:center;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.10);
  color:var(--text-soft);
  font-weight:700;
  font-size:14px;
}

.meta__k{color:var(--muted)}

.form{
  padding:18px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
  border:1px solid rgba(255,255,255,0.11);
}

.field{margin-bottom:14px}

.field__label{
  display:block;
  margin:0 0 6px;
  font-weight:700;
  color:var(--text-soft);
}

.field__input{
  width:100%;
  padding:13px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.11);
  background:rgba(255,255,255,0.07);
  color:var(--text);
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.field__input::placeholder{color:rgba(220,231,239,0.58)}

.field__input:focus{
  border-color:rgba(185,198,215,0.24);
  box-shadow:0 0 0 4px rgba(163,176,255,0.14);
  background:rgba(255,255,255,0.09);
}

.field__textarea{
  min-height:132px;
  resize:vertical;
}

.form__note{
  margin:10px 0 0;
  font-size:13px;
}

.form__status{
  margin-top:12px;
  font-weight:800;
  font-size:14px;
}
.form__status.ok{color:var(--success)}
.form__status.err{color:var(--danger)}

/* Footer */
.footer{
  padding: 32px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer--simple{
  padding: 44px 0 34px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__simple{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer__topline{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer__brandblock{
  max-width: 540px;
}

.footer__tagline{
  margin: 10px 0 5px;
  color: rgba(247,251,253,0.78);
  line-height: 1.7;
  white-space: nowrap;
}

.footerlocation,
.footer__location {
  margin-top: unset;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.75;
  margin-bottom: 25px;
  white-space: nowrap;
  max-width: none;
}

@media (max-width: 640px) {
  .footerlocation,
  .footer__location {
    white-space: normal;
    max-width: 260px;
  }
}

.footer__linksrow{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
}

.footer__textlink{
  color: rgba(247,251,253,0.88);
  font-size: 14px;
  text-decoration: none;
  transition: opacity .2s ease;
}

.footer__textlink:hover{
  opacity: .72;
}

.footer__right{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  min-width: 360px;
}

.footer__newsletter--make{
  width: min(100%, 460px);
}

.footer__newsletter-group label{
  display: block;
  margin: 0 0 8px;
  color: rgba(247,251,253,0.92);
  font-size: 14px;
  font-weight: 700;
}

.footer__newsletter-inputwrap{
  width: 100%;
}

.footer__newsletter-inputwrap input{
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.footer__newsletter-inputwrap input::placeholder{
  color: rgba(220,231,239,0.56);
}

.footer__newsletter-inputwrap input:focus{
  border-color: rgba(185,198,215,0.24);
  box-shadow: 0 0 0 4px rgba(163,176,255,0.12);
  background: rgba(255,255,255,0.07);
}

.footer__newsletter-description{
  margin-top: 10px;
}

.footer__newsletter-description p{
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.footer__newsletter-description p a{
  color: #f7fbfd;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__newsletter-description a:hover{
  opacity: .78;
}

.footer__newsletter-submit{
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f7fbfd;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}

.footer__newsletter-submit:hover{
  opacity: .8;
  transform: translateX(2px);
}

.footer__newsletter-status{
  min-height: 20px;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-soft);
}

.footer__newsletter-status.is-success{
  color: #b9f5cf;
}

.footer__newsletter-status.is-error{
  color: #ffb4b4;
}

.footer__mail{
  color: #f7fbfd;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}

.footer__mail:hover{
  opacity: .82;
  transform: translateY(-1px);
}

.footer__bottomline{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 6px;
}

.footer__copy{
  margin: 0;
  color: rgba(247,251,253,0.58);
  font-size: 13px;
}

.footer__socials{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__social{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #f7fbfd;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04)),
    radial-gradient(circle at 30% 20%, rgba(163,176,255,0.22), transparent 58%),
    rgba(255,255,255,0.03);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 10px 24px rgba(7,14,26,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform .24s cubic-bezier(.2,.9,.2,1),
    box-shadow .24s ease,
    border-color .24s ease,
    background .24s ease;
}

.footer__social:hover{
  transform: translateY(-3px) rotate(-4deg);
  border-color: rgba(210,222,234,0.20);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 16px 30px rgba(7,14,26,0.22);
}

.footer__social:nth-child(2){
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04)),
    radial-gradient(circle at 30% 20%, rgba(255,120,170,0.20), transparent 58%),
    rgba(255,255,255,0.03);
}

.footer__social:nth-child(3){
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04)),
    radial-gradient(circle at 30% 20%, rgba(121,136,255,0.24), transparent 58%),
    rgba(255,255,255,0.03);
}

.footer__social:nth-child(4){
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04)),
    radial-gradient(circle at 30% 20%, rgba(255,120,120,0.18), transparent 58%),
    rgba(255,255,255,0.03);
}

.footer__social svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

input::placeholder,
textarea::placeholder{
  font-size: 13px;
}

@media (max-width: 900px){
  .footer__topline{
    flex-direction: column;
  }

  .footer__right{
    width: 100%;
    min-width: 0;
    align-items: stretch;
  }

  .footer__newsletter{
    width: 100%;
  }

  .footer__bottomline{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px){
  .footer__social{
    width: 42px;
    height: 42px;
  }

  .footer__tagline{
    white-space: normal;
  }
}

/* Reveal */
.reveal{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .7s cubic-bezier(.2,.9,.2,1), transform .7s cubic-bezier(.2,.9,.2,1);
}
.reveal.is-in{
  opacity:1;
  transform:none;
}

/* Tilt */
[data-tilt]{
  transform-style:preserve-3d;
  will-change:auto;
  transition:transform .12s cubic-bezier(.2,.9,.2,1);
}

/* Animations */
@keyframes blobMove{
  0%{transform:translateY(0) scale(1)}
  50%{transform:translateY(18px) scale(1.03)}
  100%{transform:translateY(0) scale(1)}
}

@keyframes ctaBorderSpin{
  to{transform:rotate(360deg)}
}

@keyframes ctaGlowPulse{
  0%,100%{opacity:.38;transform:scale(1)}
  50%{opacity:.62;transform:scale(1.02)}
}

/* Responsive */
@media (max-width: 1180px){
  .usecases-premium,
  .pricing--premium{
    grid-template-columns:1fr;
  }
}

@media (max-width:1080px){
  .hero__inner{grid-template-columns:1fr}
  .hero__title{max-width:none}
  .hero__panel{max-width:720px}
  .cta{grid-template-columns:1fr}
  .implementation{grid-template-columns:1fr}
}

@media (max-width:980px){
  .header__inner{
    min-height:72px;
    padding:10px 14px;
    gap:10px;
  }

  @media (max-width: 980px){
  :root{
    --header-height: 72px;
  }
  }

  .header__center{
    position:static;
    transform:none;
    width:0;
    display:block;
  }

  .header__right{
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:8px;
    flex-shrink:0;
  }

  .header__right .navlink--cta,
  .header__right .navlink--cta-desktop{
    display:none !important;
  }

  .lang-switch{
    transform:scale(.96);
    transform-origin:right center;
  }

  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:4px;
    width:48px;
    height:48px;
    padding:0;
    border-radius:14px;
    background:linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
    border:1px solid rgba(255,255,255,0.10);
    box-shadow:0 10px 24px rgba(4,10,20,0.22);
    backdrop-filter:blur(10px);
    flex-shrink:0;
  }

  .nav-toggle:hover{
    background:linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
  }

  .nav-toggle__bar{
    width:20px;
    height:2px;
    margin:0;
    border-radius:999px;
    background:rgba(247,249,250,0.95);
    transition:transform .22s ease, opacity .18s ease;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1){
    transform:translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2){
    opacity:0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3){
    transform:translateY(-6px) rotate(-45deg);
  }

  .nav{
    position:absolute;
    left:14px;
    right:14px;
    top:calc(100% + 10px);
    width:auto;
    max-width:none;
    z-index:30;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:14px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.10);
    background:linear-gradient(180deg, rgba(24,41,54,0.97), rgba(24,41,54,0.93));
    box-shadow:0 24px 60px rgba(0,0,0,0.30);
    backdrop-filter:blur(10px);
    transform:translateY(-8px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  .nav.is-open{
    transform:translateY(0);
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }

  .nav__link{
    width:100%;
    min-height:46px;
    display:flex;
    align-items:center;
    padding:0 14px;
    border-radius:14px;
    background:rgba(255,255,255,0.03);
  }

  .navlink--mobile-cta{
    margin-top:6px;
    justify-content:center;
    font-weight:700;
    color:#fff;
    background:rgba(255,255,255,0.05);
    box-shadow:none;
    border:1px solid rgba(255,255,255,0.08);
  }

  .navlink--mobile-cta::before,
  .navlink--mobile-cta::after{
    content:none !important;
    animation:none !important;
  }

  .hero{padding-top:20px}
  .hero__badges{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .grid--3,.grid--2{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .implementation__steps{grid-template-columns:1fr}
  .footer__topline{flex-direction:column}
  .footer__right{
    width:100%;
    min-width:0;
    align-items:stretch;
  }
  .footer__bottomline{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width:640px){
  .container{padding:0 18px}
  .header__inner{padding:8px 14px}
  .brand__text{font-size:27px}
  .lang-switch__btn{
    min-width:40px;
    height:30px;
    padding:0 10px;
    font-size:11px;
  }

  .hero__title{font-size:clamp(32px,11vw,46px)}
  .section{padding:64px 0}
  .cta__meta{flex-direction:column;align-items:flex-start}
  .cta{padding:20px}
  .panel__body{padding:16px}
  .panel-message__bubble{max-width:100%}
  .faq__summary{padding:17px 16px}
  .faq__question{font-size:15px}
  .faq__answer{padding:0 16px 18px;font-size:14px}
  .footer__social{width:42px;height:42px}
  .footer__tagline{white-space:normal}
}

.mobile-only{display:none !important}
.desktop-only{display:inline-flex}

@media (max-width:980px){
  .desktop-only{display:none !important}
  .mobile-only{display:flex !important}
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal,
  .blob,
  .nav,
  [data-tilt],
  .navlink--cta::before,
  .navlink--cta::after{
    transition:none !important;
    animation:none !important;
  }
}

/* ===== Mega menu ===== */

.nav-item{
  position:relative;
  display:flex;
  align-items:center;
}

.nav-item--mega{
  position:relative;
}

.nav__link--button{
  appearance:none;
  border:0;
  background:none;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font:inherit;
}

.nav__chevron{
  width:16px;
  height:16px;
  opacity:.82;
  transition:transform .18s ease, opacity .18s ease;
}

.nav-item--mega.is-open .nav__chevron{
  transform:rotate(180deg);
  opacity:1;
}

.mega-menu{
  position:absolute;
  top:calc(100% + 6px);
  left:50%;
  transform:translateX(-50%) translateY(3px);
  width:min(980px, calc(100vw - 40px));
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index:140;
}

.nav-item--mega.is-open .mega-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}

.mega-menu__inner{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
  padding:18px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(180deg, rgba(24,41,54,0.96), rgba(24,41,54,0.92));
  box-shadow:0 28px 70px rgba(0,0,0,0.28);
  backdrop-filter:blur(18px);
}

.mega-menu__col{
  display:grid;
  gap:10px;
}

.mega-menu__col--aside{
  padding-left:6px;
}

.mega-menu__eyebrow{
  margin:0 0 4px;
  color:var(--muted);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.mega-link,
.mega-mini{
  display:grid;
  gap:6px;
  align-items:start;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.04);
  transition:transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.mega-link{
  grid-template-columns:46px 1fr;
  gap:12px;
}

.mega-link:hover,
.mega-mini:hover{
  transform:translateY(-2px);
  border-color:rgba(163,176,255,0.22);
  background:rgba(255,255,255,0.06);
  box-shadow:0 16px 34px rgba(5,12,24,0.18);
}

.mega-link__icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-size:20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06)),
    radial-gradient(circle at 30% 20%, rgba(163,176,255,0.18), transparent 58%);
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.10);
}

.mega-link__title,
.mega-mini__title{
  color:var(--text);
  font-size:15px;
  font-weight:800;
  line-height:1.35;
}

.mega-link__desc,
.mega-mini__desc{
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

@media (max-width:980px){
  .nav-item,
  .nav-item--mega{
    display:block;
    width:100%;
  }

  .nav__link--button{
    width:100%;
    min-height:46px;
    justify-content:space-between;
    padding:0 14px;
    border-radius:14px;
    background:rgba(255,255,255,0.03);
  }

  .mega-menu{
    position:static;
    left:auto;
    top:auto;
    width:100%;
    margin-top:8px;
    transform:none;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    display:none;
  }

  .nav-item--mega.is-open .mega-menu{
    display:block;
  }

  .mega-menu__inner{
    grid-template-columns:1fr;
    padding:12px;
    border-radius:18px;
    box-shadow:none;
  }

  .mega-menu__col--aside{
    padding-left:0;
  }
}

.panel-thread {
  gap: 14px;
}

.panel-message {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  filter: blur(6px);
  transition:
    opacity .38s ease,
    transform .42s cubic-bezier(.22,.61,.36,1),
    filter .38s ease;
  will-change: opacity, transform, filter;
}

.panel-message.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.panel-message__meta {
  opacity: .72;
  transition: opacity .28s ease;
}

.panel-message.is-visible .panel-message__meta {
  opacity: 1;
}

.panel-message__bubble {
  position: relative;
  min-height: 52px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition:
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
}

.panel-message.is-visible .panel-message__bubble {
  box-shadow:
    0 14px 34px rgba(6, 12, 24, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.panel-message__bubble.is-typing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1.1em;
  margin-left: 6px;
  vertical-align: -0.15em;
  border-radius: 999px;
  background: currentColor;
  opacity: .8;
  animation: panelCaretBlink .9s steps(1, end) infinite;
}

@keyframes panelCaretBlink {
  0%, 48% { opacity: .85; }
  49%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .panel-message,
  .panel-message.is-visible,
  .panel-message__meta,
  .panel-message__bubble,
  .panel-message__bubble.is-typing::after {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }
}

.panel-message--ai .panel-messagebubble,
.panel-message--ai .panel-message__bubble {
  width: min(92%, 420px);
  max-width: min(92%, 420px);
  text-align: left;
  align-self: flex-end;
}

.panel-message--ai .panel-messagemeta,
.panel-message--ai .panel-message__meta {
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .panel-message--ai .panel-messagebubble,
  .panel-message--ai .panel-message__bubble {
    width: 100%;
    max-width: 100%;
  }
}

/* ===== Solutions mega menu ===== */

.nav-item--solutions{
  position:relative;
  padding-bottom:15px;
  margin-bottom:-15px;
}

.mega-menu--solutions{
  top:calc(100% + 15px);
  left:50%;
  transform:translateX(-50%) translateY(6px);
  width:min(940px, calc(100vw - 40px));
  max-width:calc(100vw - 40px);
  z-index:160;
}

.nav-item--mega.is-open .mega-menu--solutions{
  transform:translateX(-50%) translateY(0);
}

.mega-menu--solutions::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-15px;
  height:15px;
}

.mega-menu--solutions .mega-menu__inner{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  padding:18px;
  border-radius:24px;
}

.mega-menu--solutions .mega-menu__eyebrow{
  margin:0;
}

.mega-menu--solutions .mega-menu__cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  min-width:0;
}

.mega-menu--solutions .mega-link--solution{
  min-width:0;
  min-height:144px;
  height:100%;
  padding:18px;
  grid-template-columns:52px minmax(0, 1fr);
  gap:14px;
  align-content:start;
  border-radius:20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.04)),
    radial-gradient(120% 140% at 0% 0%, rgba(163,176,255,0.12), transparent 58%);
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 14px 34px rgba(5,12,24,0.14);
}

.mega-menu--solutions .mega-link--solution:hover{
  transform:translateY(-2px);
  border-color:rgba(163,176,255,0.24);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05)),
    radial-gradient(120% 140% at 0% 0%, rgba(163,176,255,0.16), transparent 58%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 18px 40px rgba(5,12,24,0.18);
}

.mega-menu--solutions .mega-link__icon{
  position:relative;
  width:52px;
  height:52px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06)),
    radial-gradient(circle at 30% 20%, rgba(163,176,255,0.22), transparent 58%);
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 10px 24px rgba(7,14,26,0.18);
}

.mega-menu--solutions .mega-link__icon::before{
  content:"";
  width:22px;
  height:22px;
  background:linear-gradient(180deg, #ffffff, #dfe9f6);
  filter:drop-shadow(0 2px 6px rgba(0,0,0,0.18));
  -webkit-mask-position:center;
  -webkit-mask-repeat:no-repeat;
  -webkit-mask-size:contain;
  mask-position:center;
  mask-repeat:no-repeat;
  mask-size:contain;
}

.mega-menu--solutions .mega-link__icon--estate::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 10.5L12 3l9 7.5'/%3E%3Cpath d='M5.5 9.5V21h13V9.5'/%3E%3Cpath d='M9.5 21v-6h5v6'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 10.5L12 3l9 7.5'/%3E%3Cpath d='M5.5 9.5V21h13V9.5'/%3E%3Cpath d='M9.5 21v-6h5v6'/%3E%3C/svg%3E");
}

.mega-menu--solutions .mega-link__icon--services::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='6'/%3E%3Cpath d='M20 20l-4.2-4.2'/%3E%3Cpath d='M11 8.5v5'/%3E%3Cpath d='M8.5 11h5'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='6'/%3E%3Cpath d='M20 20l-4.2-4.2'/%3E%3Cpath d='M11 8.5v5'/%3E%3Cpath d='M8.5 11h5'/%3E%3C/svg%3E");
}

.mega-menu--solutions .mega-link__icon--ecom::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 7h12l-1.2 6.3a2 2 0 0 1-2 1.7H9.2a2 2 0 0 1-2-1.7L6 7Z'/%3E%3Cpath d='M9 7a3 3 0 0 1 6 0'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 7h12l-1.2 6.3a2 2 0 0 1-2 1.7H9.2a2 2 0 0 1-2-1.7L6 7Z'/%3E%3Cpath d='M9 7a3 3 0 0 1 6 0'/%3E%3C/svg%3E");
}

.mega-menu--solutions .mega-link__title{
  display:block;
  margin:1px 0 6px;
  font-size:16px;
  line-height:1.35;
}

.mega-menu--solutions .mega-link__desc{
  display:block;
  font-size:13px;
  line-height:1.65;
}

@media (max-width:980px){
  .nav-item--solutions{
    padding-bottom:0;
    margin-bottom:0;
  }

  .mega-menu--solutions{
    position:static;
    left:auto;
    right:auto;
    top:auto;
    width:100%;
    max-width:100%;
    margin-top:8px;
    transform:none;
  }

  .nav-item--mega.is-open .mega-menu--solutions{
    transform:none;
  }

  .mega-menu--solutions::before{
    display:none;
  }

  .mega-menu--solutions .mega-menu__inner{
    width:100%;
    max-width:100%;
    padding:12px;
    gap:10px;
    border-radius:18px;
    overflow:hidden;
  }

  .mega-menu--solutions .mega-menu__cards{
    grid-template-columns:1fr;
    gap:10px;
    width:100%;
    min-width:0;
  }

  .mega-menu--solutions .mega-link--solution{
    min-width:0;
    min-height:auto;
    padding:14px;
    grid-template-columns:48px minmax(0, 1fr);
    gap:12px;
    border-radius:18px;
  }

  .mega-menu--solutions .mega-link__icon{
    width:48px;
    height:48px;
    border-radius:14px;
  }

  .mega-menu--solutions .mega-link__title{
    font-size:15px;
    margin-bottom:4px;
  }

  .mega-menu--solutions .mega-link__desc{
    font-size:12px;
    line-height:1.55;
  }
}

@media (max-width:640px){
  .mega-menu--solutions .mega-menu__inner{
    padding:10px;
  }

  .mega-menu--solutions .mega-link--solution{
    padding:13px;
  }
}

/* ===== Developers & Real Estate / editorial premium ===== */

.dre-page{
  position:relative;
}

.dre-section{
  position:relative;
}

.dre-section--soft{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border-top:1px solid rgba(255,255,255,0.06);
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.dre-masthead{
  position:relative;
  overflow:hidden;
  padding:44px 0 34px;
}

.dre-masthead__bg{
  position:absolute;
  inset:0;
  pointer-events:none;
}

.dre-masthead__orb{
  position:absolute;
  border-radius:50%;
  filter:blur(32px);
  opacity:.82;
}

.dre-masthead__orb--one{
  width:640px;
  height:420px;
  left:-10%;
  top:-8%;
  background:radial-gradient(circle at 30% 30%, rgba(121,136,255,0.22), rgba(121,136,255,0.02));
}

.dre-masthead__orb--two{
  width:580px;
  height:420px;
  right:-10%;
  top:6%;
  background:radial-gradient(circle at 70% 40%, rgba(255,255,255,0.14), rgba(255,255,255,0.02));
}

.dre-masthead__grid{
  position:absolute;
  inset:0;
  opacity:.13;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size:68px 68px;
  mask-image:radial-gradient(circle at 50% 16%, rgba(0,0,0,0.95), rgba(0,0,0,0));
}

.dre-kicker{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.10);
  color:var(--text-soft);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.dre-overline{
  margin:20px 0 10px;
  color:rgba(231,239,246,0.84);
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.dre-masthead__copy{
  max-width:920px;
}

.dre-masthead__title{
  margin:0 0 16px;
  font-size:48px;
  line-height:.98;
  letter-spacing:-0.055em;
  max-width:20ch;
}

.dre-masthead__text{
  margin:0;
  max-width:68ch;
  color:var(--text-soft);
  font-size:17px;
  line-height:1.78;
  max-width:60ch;
}

.dre-masthead__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.dre-proofbar{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
  margin-top:40px;
  grid-column:1 / -1;
}

.dre-proofbar__item{
  position:relative;
  padding:18px 18px 20px;
  border-radius:16px;

  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);

  transition:all .25s ease;
}

/* subtelny hover – premium SaaS */
.dre-proofbar__item:hover{
  background:rgba(255,255,255,0.07);
  border-color:rgba(163,176,255,0.25);
  transform:translateY(-3px);
}

/* cienki glow (Make-style) */
.dre-proofbar__item::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:radial-gradient(120% 120% at 0% 0%, rgba(163,176,255,0.18), transparent 60%);
  opacity:0;
  transition:opacity .3s ease;
}

.dre-proofbar__item:hover::before{
  opacity:1;
}

.dre-proofbar__label{
  display:block;
  margin-bottom:10px;

  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;

  color:rgba(231,239,246,0.55);
}

.dre-proofbar__value{
  display:block;

  font-size:15px;
  line-height:1.5;
  font-weight:500;

  color:#ffffff;
}

.dre-intro{
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  gap:26px;
  align-items:start;
}

.dre-intro__lead{
  padding:8px 0 0;
}

.dre-block-title{
  margin:14px 0 12px;
  font-size:24px;
  line-height:1.04;
  letter-spacing:-0.045em;
  margin-bottom: 19px;
}

.dre-block-text{
  margin:0;
  color:var(--text-soft);
  line-height:1.78;
}

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

.dre-signal{
  padding:22px;
  border-radius:22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05));
  border:1px solid rgba(255,255,255,0.11);
  box-shadow:var(--shadow-soft);
}

.dre-signal__tag{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  margin-bottom:14px;
  border-radius:999px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.09);
  color:var(--text-soft);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.dre-signal__title{
  margin:0 0 8px;
  font-size:22px;
  line-height:1.12;
  letter-spacing:-0.025em;
}

.dre-signal__text{
  margin:0;
  color:var(--muted);
  line-height:1.72;
}

.dre-columns{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
  align-items:stretch;
}

.dre-column{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)),
    radial-gradient(130% 150% at 0% 0%, rgba(163,176,255,0.11), transparent 58%);
  box-shadow:0 18px 60px rgba(5,10,20,0.20);
}

.dre-column--featured{
  border-color:rgba(163,176,255,0.30);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05)),
    radial-gradient(130% 160% at 10% 0%, rgba(163,176,255,0.20), transparent 56%);
  box-shadow:0 28px 90px rgba(89,106,255,0.18);
  transform:translateY(-6px);
}

.dre-column__badge{
  align-self:flex-start;
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  margin-bottom:16px;
  border-radius:999px;
  background:rgba(163,176,255,0.16);
  border:1px solid rgba(163,176,255,0.24);
  color:#eef2ff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.dre-column__top{
  margin-bottom:14px;
}

.dre-column__eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  margin-bottom:14px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.10);
  color:var(--text-soft);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.dre-column__title{
  margin:0;
  font-size:30px;
  line-height:1.02;
  letter-spacing:-0.04em;
}

.dre-column__text{
  margin:0 0 18px;
  color:var(--text-soft);
  line-height:1.75;
}

.dre-list{
  margin:0;
  padding-left:18px;
  color:var(--text-soft);
}

.dre-list li{
  margin-bottom:10px;
  line-height:1.68;
}

.dre-list li:last-child{
  margin-bottom:0;
}

.dre-matrix{
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.12);
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  box-shadow:0 22px 60px rgba(8,15,28,0.20);
}

.dre-matrix__head,
.dre-matrix__row{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
}

.dre-matrix__head{
  background:rgba(255,255,255,0.05);
}

.dre-matrix__head > div{
  padding:18px 22px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--text-soft);
}

.dre-matrix__row + .dre-matrix__row{
  border-top:1px solid rgba(255,255,255,0.08);
}

.dre-matrix__label,
.dre-matrix__value{
  padding:20px 22px;
  line-height:1.72;
}

.dre-matrix__label{
  color:var(--text);
  border-right:1px solid rgba(255,255,255,0.08);
}

.dre-matrix__value{
  color:var(--muted);
}

.dre-process{
  display:grid;
  gap:26px;
}

.dre-process__intro{
  max-width:760px;
}

.dre-timeline{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.dre-timeline__item{
  position:relative;
  padding:24px 20px 22px;
  border-radius:22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05));
  border:1px solid rgba(255,255,255,0.11);
  box-shadow:var(--shadow-soft);
}

.dre-timeline__num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:54px;
  height:34px;
  margin-bottom:14px;
  padding:0 12px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(121,136,255,0.26), rgba(163,176,255,0.16));
  border:1px solid rgba(163,176,255,0.18);
  color:#eef2ff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.1em;
}

.dre-timeline__item h3{
  margin:0 0 8px;
  font-size:21px;
  line-height:1.14;
  letter-spacing:-0.02em;
}

.dre-timeline__item p{
  margin:0;
  color:var(--muted);
  line-height:1.72;
}

.dre-faq{
  max-width:980px;
}

.dre-cta{
  position: relative;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:center;
  padding:36px;

  border-radius:32px;
  border:1px solid rgba(255,255,255,0.10);

  background:
    radial-gradient(900px 300px at 0% 0%, rgba(163,176,255,0.18), transparent 60%),
    radial-gradient(700px 260px at 100% 100%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));

  box-shadow:
    0 30px 90px rgba(10,20,40,0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);

  backdrop-filter: blur(6px);
  overflow: hidden;
}

.dre-cta::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  background:linear-gradient(120deg, rgba(163,176,255,0.25), transparent 40%);
  opacity:.4;
  pointer-events:none;
}

.dre-cta__title{
  margin:0 0 12px;
  font-size:31px;
  line-height:1.02;
  letter-spacing:-0.05em;
  justify-self: center;

  background:linear-gradient(180deg, #ffffff, #cfd8ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.dre-cta__text{
  margin:0;
  color:rgba(231,239,246,0.78);
  line-height:1.8;
  max-width:60ch;
  font-size:16px;
}

.dre-cta__action{
  display:grid;
  gap:16px;
  justify-items:start;
}

.dre-cta .btn--primary{
  width:100%;
  max-width:320px;

  font-size:15px;
  font-weight:700;

  box-shadow:
    0 12px 30px rgba(121,136,255,0.35),
    0 4px 12px rgba(0,0,0,0.25);

  transition:all .25s ease;
}

.dre-cta .btn--primary:hover{
  transform:translateY(-2px);
  box-shadow:
    0 18px 40px rgba(121,136,255,0.45),
    0 6px 18px rgba(0,0,0,0.3);
}

.dre-cta__note{
  margin:0;
  font-size:13px;
  color:rgba(231,239,246,0.6);
  line-height:1.6;
}

@media (max-width:768px){
  .dre-cta{
    grid-template-columns:1fr;
    padding:28px;
    text-align:center;
  }

  .dre-cta__action{
    justify-items:center;
  }

  .dre-cta .btn--primary{
    max-width:100%;
  }
}

@media (max-width:1180px){
  .dre-proofbar,
  .dre-timeline{
    grid-template-columns:repeat(2, 1fr);
  }

  .dre-columns{
    grid-template-columns:1fr;
  }

  .dre-column--featured{
    transform:none;
  }
}

@media (max-width:1080px){
  .dre-intro,
  .dre-cta{
    grid-template-columns:1fr;
  }
}

@media (max-width:980px){
  .dre-signals,
  .dre-proofbar,
  .dre-timeline{
    grid-template-columns:1fr;
  }

  .dre-matrix__head,
  .dre-matrix__row{
    grid-template-columns:1fr;
  }

  .dre-matrix__label{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
}

@media (max-width:640px){
  .dre-masthead{
    padding:28px 0 20px;
  }

  .dre-masthead__title{
    font-size:clamp(34px, 11vw, 48px);
  }

  .dre-signal,
  .dre-column,
  .dre-timeline__item,
  .dre-cta{
    padding:20px;
  }

  .dre-matrix__head > div,
  .dre-matrix__label,
  .dre-matrix__value{
    padding:17px 16px;
  }
}

.dre-masthead__inner {
  position: relative;
  z-index: 1;
  padding: 28px 0 0;
  display: grid;
  gap: 34px;
}

.dre-masthead__top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.dre-masthead__copy {
  max-width: none;
}

.dre-masthead__image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.dre-masthead__image img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .dre-masthead__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .dre-masthead__image {
    justify-content: center;
  }

  .dre-masthead__image img {
    max-width: 100%;
  }
}

/* Login button in header */
.navlink--login{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 16px;
  border-radius:999px;
  color:#f7fbfd;
  font-weight:700;
  letter-spacing:-0.01em;
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 10px 26px rgba(5,12,24,0.18),
    inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease,
    color .18s ease;
}

.navlink--login:hover{
  transform:translateY(-1px);
  border-color:rgba(163,176,255,0.22);
  background:linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05));
  box-shadow:
    0 14px 32px rgba(5,12,24,0.24),
    0 0 0 1px rgba(163,176,255,0.06);
}

.navlink--login:focus-visible{
  outline:none;
  border-color:rgba(163,176,255,0.28);
  box-shadow:
    0 0 0 4px rgba(163,176,255,0.14),
    0 14px 32px rgba(5,12,24,0.24);
}

/* Login page */
.login-page{
  position:relative;
  min-height:calc(100vh - var(--header-height));
}

.login-shell{
  padding:50px 0 66px;
}

@media (max-width: 640px) {
  .login-shell {
    padding: 20px 0 66px;
  }
}

.login-layout{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:28px;
  align-items:stretch;
}

.login-eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  width:max-content;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.10);
  color:var(--text-soft);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:16px;
}

.login-title{
  margin:0 0 50px;
  font-size:52px;
  line-height:1.02;
  letter-spacing:-0.04em;
  max-width:14ch;
}

.login-subtitle{
  margin:0 0 24px;
  max-width:62ch;
  color:var(--text-soft);
  font-size:17px;
  line-height:1.75;
}

.login-sidecard{
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(163,176,255,0.14), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  box-shadow:var(--shadow-soft);
  max-width:620px;
}

.login-sidecard__title{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.12;
  letter-spacing:-0.03em;
}

.login-sidecard__text{
  margin:0 0 18px;
  color:var(--text-soft);
  line-height:1.75;
}

.login-points{
  margin:0;
  padding-left:18px;
  color:var(--text-soft);
}

.login-points li{
  margin-bottom:10px;
}

.login-points li:last-child{
  margin-bottom:0;
}

.login-card{
  display:flex;
  align-items:center;
}

.login-card__inner{
  width:100%;
  padding:28px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05)),
    radial-gradient(140% 160% at 100% 0%, rgba(163,176,255,0.12), transparent 55%);
  box-shadow:var(--shadow);
  backdrop-filter:blur(12px);
}

.login-card__title{
  margin:0 0 8px;
  font-size:30px;
  line-height:1.08;
  letter-spacing:-0.03em;
}

.login-card__text{
  margin:0 0 22px;
  color:var(--text-soft);
  line-height:1.7;
}

.login-form{
  display:grid;
  gap:16px;
}

.login-form__field{
  display:grid;
  gap:5px;
}

.login-form__label{
  color:var(--text-soft);
  font-size:13px;
  font-weight:700;
}

.login-form__input{
  width:100%;
  min-height:52px;
  padding:0 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.06);
  color:var(--text);
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.login-form__input::placeholder{
  color:rgba(183,199,211,0.82);
}

.login-form__input:focus{
  border-color:rgba(163,176,255,0.30);
  box-shadow:0 0 0 4px rgba(163,176,255,0.12);
  background:rgba(255,255,255,0.08);
}

.login-form__submit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 18px;
  border-radius:16px;
  border:1px solid rgba(163,176,255,0.22);
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#fff;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 18px 44px rgba(121,136,255,0.22);
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.login-form__submit:hover{
  transform:translateY(-1px);
  box-shadow:0 22px 52px rgba(121,136,255,0.28);
  filter:saturate(1.04);
}

.login-form__status{
  min-height:22px;
  margin:2px 0 0;
  color:var(--text-soft);
  font-size:14px;
}

.login-form__status.is-success{
  color:#dfe8ff;
}

.login-note{
  margin:18px 0 0;
  color:var(--muted);
  font-size:14px;
}

@media (max-width: 980px){
  .navlink--login{
    display:none;
  }

  .login-layout{
    grid-template-columns:1fr;
  }

  .login-title{
    max-width:none;
    font-size: clamp(32px, 11vw, 46px);
    margin-bottom: 12px;
  }
}

.header-login-floating{
  position:absolute;
  top:50%;
  right:28px;
  transform:translateY(-50%);
  z-index:130;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 16px;
  border-radius:999px;

  color:#f7fbfd;
  font-weight:700;
  letter-spacing:-0.01em;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 10px 28px rgba(5,12,24,0.22),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease;
}

.header-login-floating:hover{
  transform:translateY(calc(-50% - 1px));
  border-color:rgba(163,176,255,0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  box-shadow:
    0 14px 34px rgba(5,12,24,0.28),
    0 0 0 1px rgba(163,176,255,0.08);
}

.header-login-floating:focus-visible{
  outline:none;
  border-color:rgba(163,176,255,0.28);
  box-shadow:
    0 0 0 4px rgba(163,176,255,0.14),
    0 14px 34px rgba(5,12,24,0.28);
}

@media (max-width: 1280px){
  .header-login-floating{
    right:18px;
  }
}

@media (max-width: 980px){
  .header-login-floating{
    display:none;
  }
}

.header-login-floating {
  position: fixed;
  right: 32px; /* margines od prawej krawędzi strony */
  top: calc(var(--header-height) / 2);
  transform: translateY(-50%);

  z-index: 200;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;

  font-weight: 600;
  color: rgba(247,251,253,0.92);

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(10px);

  transition: all .2s ease;
}

.header-login-floating:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-50%) translateX(-2px);
}

@media (max-width: 980px) {
  .header-login-floating {
    display: none;
  }
}

@media (max-width: 980px){
  .login-layout{
    display:flex;
    flex-direction:column;
    gap:18px;
  }

  .login-side{
    display:contents;
  }

  .login-eyebrow{
    order:1;
  }

  .login-title{
    order:2;
  }

  .login-subtitle{
    order:3;
    margin-bottom:6px;
  }

  .login-card{
    order:4;
  }

  .login-sidecard{
    order:5;
    margin-top: 48px;
  }
}

.recovery-page{
  position:relative;
}

.recovery-hero{
  position:relative;
  overflow:hidden;
  padding:50px 0 300px;
}

.recovery-hero__bg{
  position:absolute;
  inset:0;
  pointer-events:none;
}

.recovery-orb{
  position:absolute;
  border-radius:50%;
  filter:blur(30px);
  opacity:.82;
}

.recovery-orb--one{
  width:560px;
  height:420px;
  left:-8%;
  top:-10%;
  background:radial-gradient(circle at 30% 30%, rgba(121,136,255,.22), rgba(121,136,255,.02));
}

.recovery-orb--two{
  width:520px;
  height:400px;
  right:-8%;
  top:2%;
  background:radial-gradient(circle at 70% 40%, rgba(255,255,255,.14), rgba(255,255,255,.02));
}

.recovery-grid{
  position:absolute;
  inset:0;
  opacity:.12;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:68px 68px;
  mask-image:radial-gradient(circle at 50% 18%, rgba(0,0,0,.95), rgba(0,0,0,0));
}

.recovery-layout{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:30px;
  align-items:stretch;
}

.recovery-copy{
  display:flex;
  flex-direction:column;
  gap:0;
}

.recovery-eyebrow{
  display:inline-flex;
  align-self:flex-start;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  margin-bottom:14px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  color:var(--text-soft);
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.recovery-title{
  font-size:clamp(34px,5vw,52px);
  line-height:1.02;
  letter-spacing:-.045em;
  max-width:14ch;
  margin-bottom: unset;
  margin-top: unset;
}

.recovery-subtitle{
  margin:0 0 22px;
  max-width:58ch;
  color:var(--text-soft);
  font-size:16px;
  line-height:1.75;
}

.recovery-sidecard{
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(700px 220px at 0 0, rgba(163,176,255,.14), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.05));
  box-shadow:var(--shadow-soft);
}

.recovery-sidecard__title{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.08;
  letter-spacing:-.03em;
}

.recovery-sidecard__text{
  margin:0 0 18px;
  color:var(--text-soft);
  line-height:1.75;
}

.recovery-points{
  margin:0;
  padding-left:18px;
  color:var(--text-soft);
}

.recovery-points li{
  margin-bottom:10px;
  line-height:1.65;
}

.recovery-points li:last-child{
  margin-bottom:0;
}

.recovery-card{
  display:flex;
  align-items:stretch;
}

.recovery-card__inner{
  width:100%;
  padding:28px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
}

.recovery-card__title{
  margin:0 0 10px;
  font-size:30px;
  line-height:1.04;
  letter-spacing:-.04em;
}

.recovery-card__text{
  margin:0 0 22px;
  color:var(--text-soft);
  line-height:1.75;
}

.recovery-form__field{
  display:block;
  margin-bottom:16px;
}

.recovery-form__label{
  display:block;
  margin:0 0 8px;
  font-weight:700;
  color:var(--text-soft);
}

.recovery-form__input{
  width:100%;
  min-height:54px;
  padding:0 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.11);
  background:rgba(255,255,255,.07);
  color:var(--text);
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.recovery-form__input::placeholder{
  color:rgba(220,231,239,.58);
}

.recovery-form__input:focus{
  border-color:rgba(185,198,215,.24);
  box-shadow:0 0 0 4px rgba(163,176,255,.14);
  background:rgba(255,255,255,.09);
}

.recovery-form__submit{
  width:100%;
  min-height:50px;
  padding:12px 18px;
  border:0;
  border-radius:14px;
  cursor:pointer;
  font-weight:800;
  color:#fff;
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow:0 18px 44px rgba(121,136,255,.22);
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.recovery-form__submit:hover{
  transform:translateY(-1px);
}

.recovery-form__status{
  margin-top:14px;
  min-height:1.6em;
  font-size:14px;
  font-weight:700;
  line-height:1.6;
}

.recovery-form__status.is-success{
  color:var(--success);
}

.recovery-form__status.is-error{
  color:var(--danger);
}

.recovery-note{
  margin:18px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

.recovery-back{
  margin:16px 0 0;
  font-size:14px;
  font-weight:700;
}

.recovery-back a{
  color:var(--text);
  text-decoration:none;
  transition:color .18s ease, border-color .18s ease;
}

.recovery-back a:hover{
  color:#cfd8ff;
  border-color:rgba(163,176,255,.42);
}

@media (max-width: 1080px){
  .recovery-layout{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .recovery-hero{
    padding:20px 0 46px;
  }

  .recovery-card__inner,
  .recovery-sidecard{
    padding:20px;
  }

  .recovery-title{
    max-width:none;
    font-size: clamp(32px, 11vw, 46px);
  }
}

.login-forgot{
  margin: 0px 0 18px;
  text-align: right;
}

.login-forgot a{
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color .18s ease, border-color .18s ease, opacity .18s ease;
}

.login-forgot a:hover{
  color: #cfd8ff;
  border-color: rgba(163,176,255,0.42);
}

.dre-cta__title {
  font-size: 31px;
  line-height: 1.22; /* było 1.02 */
  letter-spacing: -0.05em;
  justify-self: center;
  background: linear-gradient(180deg, #ffffff, #cfd8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}