@layer reset, tokens, layout, components, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
  body { min-height: 100vh; overflow-x: hidden; }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: none; background: none; }
  input, textarea, select { font: inherit; }
  ul, ol { list-style: none; }
  h1,h2,h3,h4 { font-weight: 700; line-height: 1.15; }
}

@layer tokens {
  :root {
    --color-bg: #FBFAFD;
    --color-surface: #FFFFFF;
    --color-ink: #1A1330;
    --color-ink-soft: #564C72;
    --color-ink-faint: #837A9C;
    --color-primary: #5B3FE0;
    --color-primary-dark: #34208F;
    --color-primary-light: #8B6FF0;
    --color-secondary: #0EA5C4;
    --color-secondary-dark: #0A7A94;
    --color-accent: #F5A623;
    --color-accent-soft: #FFE3B0;
    --color-border: #E7E1F5;

    --gradient-hero: linear-gradient(160deg, #170D33 0%, #3B2494 48%, #0EA5C4 100%);
    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --gradient-warm: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    --gradient-surface: linear-gradient(160deg, #FBFAFD 0%, #F2EEFC 100%);

    --shadow-sm: 0 1px 2px rgba(26,19,48,.06), 0 1px 1px rgba(26,19,48,.05);
    --shadow-md: 0 6px 16px rgba(26,19,48,.09), 0 2px 6px rgba(26,19,48,.06);
    --shadow-lg: 0 16px 36px rgba(26,19,48,.14), 0 6px 14px rgba(26,19,48,.08);
    --shadow-xl: 0 28px 64px rgba(26,19,48,.20), 0 10px 26px rgba(26,19,48,.10);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-full: 999px;

    --space-1: .25rem; --space-2: .5rem; --space-3: .75rem;
    --space-4: 1rem; --space-5: 1.5rem; --space-6: 2rem;
    --space-8: 3rem; --space-10: 4rem; --space-12: 5rem;
    --space-16: 7rem; --space-20: 9rem;

    --font-heading: 'Urbanist', sans-serif;
    --font-body: 'Urbanist', sans-serif;
    --ease: cubic-bezier(.4,0,.2,1);
  }
}

@layer layout {
  html, body { background: var(--color-bg); color: var(--color-ink); font-family: var(--font-body); }
  body { font-size: 1rem; line-height: 1.65; }
  h1,h2,h3,h4 { font-family: var(--font-heading); color: var(--color-ink); }
  main { display: block; }
  section { position: relative; }
  .global-skip { position: absolute; left: -999px; top: 0; background: var(--color-primary); color:#fff; padding: var(--space-3) var(--space-5); border-radius: var(--radius-sm); z-index: 2000; }
  .global-skip:focus { left: var(--space-4); top: var(--space-4); }
}

@layer components {


.global-header {
  position: fixed; inset: 0 0 auto 0; z-index: 800;
  transform: translateY(-100%);
  transition: transform .5s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  background: rgba(251,250,253,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}
.global-header.is-visible { transform: translateY(0); box-shadow: var(--shadow-md); border-bottom-color: var(--color-border); }
.global-header__inner {
  max-width: 1280px; margin: 0 auto; padding: var(--space-3) var(--space-5);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
}
.global-logo { display: flex; align-items: center; gap: var(--space-3); }
.global-logo__text { font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; }
.global-header__cta {
  padding: .65rem 1.3rem; border-radius: var(--radius-full); background: var(--gradient-primary);
  color: #fff; font-weight: 600; font-size: .9rem; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), filter .35s var(--ease);
  min-height: 44px; display: inline-flex; align-items: center;
}
.global-header__cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); filter: brightness(1.06); }

.global-hamburger {
  width: 44px; height: 44px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border-radius: var(--radius-sm); transition: background .3s var(--ease);
}
.global-hamburger:hover { background: rgba(91,63,224,.08); }
.global-hamburger span { width: 22px; height: 2px; background: var(--color-ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .3s var(--ease); }
.global-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.global-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.global-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.global-drawer {
  position: fixed; inset: 0; z-index: 900;
  background: var(--gradient-hero);
  clip-path: circle(0px at var(--origin-x, 40px) var(--origin-y, 40px));
  transition: clip-path .65s var(--ease);
  pointer-events: none;
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--space-8) var(--space-6);
}
.global-drawer.is-open { clip-path: circle(150% at var(--origin-x, 40px) var(--origin-y, 40px)); pointer-events: auto; }
.global-drawer__close {
  position: absolute; top: var(--space-5); right: var(--space-5); width: 44px; height: 44px;
  color: #fff; font-size: 1.3rem; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s var(--ease) .3s, background .3s var(--ease), transform .3s var(--ease);
}
.global-drawer.is-open .global-drawer__close { opacity: 1; }
.global-drawer__close:hover { background: rgba(255,255,255,.14); transform: rotate(90deg); }
.global-drawer__nav { display: flex; flex-direction: column; gap: var(--space-3); max-width: 600px; }
.global-drawer__link {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 6vw, 3.2rem); font-weight: 700; color: #fff;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s var(--ease);
  position: relative; width: fit-content;
}
.global-drawer.is-open .global-drawer__link { opacity: 1; transform: translateY(0); }
.global-drawer.is-open .global-drawer__link:nth-child(1) { transition-delay: .15s; }
.global-drawer.is-open .global-drawer__link:nth-child(2) { transition-delay: .22s; }
.global-drawer.is-open .global-drawer__link:nth-child(3) { transition-delay: .29s; }
.global-drawer.is-open .global-drawer__link:nth-child(4) { transition-delay: .36s; }
.global-drawer.is-open .global-drawer__link:nth-child(5) { transition-delay: .43s; }
.global-drawer__link::after {
  content: ''; position: absolute; left: 0; bottom: -.15em; width: 0; height: 3px; background: var(--color-accent);
  transition: width .35s var(--ease);
}
.global-drawer__link:hover::after, .global-drawer__link.is-active::after { width: 100%; }
.global-drawer__link:hover { color: var(--color-accent-soft); }
.global-drawer__footer { margin-top: var(--space-10); color: rgba(255,255,255,.75); font-size: .95rem; display: flex; flex-direction: column; gap: var(--space-2);
  opacity: 0; transition: opacity .5s var(--ease) .55s; }
.global-drawer.is-open .global-drawer__footer { opacity: 1; }
.global-drawer__footer i { margin-right: var(--space-2); color: var(--color-secondary); }


.global-button {
  display: inline-flex; align-items: center; gap: var(--space-2); justify-content: center;
  min-height: 48px; padding: .85rem 1.7rem; border-radius: var(--radius-full);
  font-weight: 600; font-size: .95rem; position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), color .3s var(--ease), background .4s var(--ease);
}
.global-button--solid { background: var(--gradient-primary); color: #fff; box-shadow: var(--shadow-md); }
.global-button--solid:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); filter: brightness(1.05); }
.global-button--outline-light { border: 1.5px solid rgba(255,255,255,.5); color: #fff; }
.global-button--outline-light:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); border-color: #fff; }
.global-button--ghost {
  border: 1.5px solid rgba(255,255,255,.35); color: #fff; background: rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
}
.global-button--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.global-button--ghost i { transition: transform .4s var(--ease); }
.global-button--ghost:hover i { transform: translateX(4px); }

.global-eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-secondary-dark); margin-bottom: var(--space-3);
}
.global-eyebrow--light { color: var(--color-accent-soft); }


.home-hero {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  background: var(--gradient-hero); color: #fff; padding: var(--space-8) var(--space-5); position: relative; overflow: hidden;
}
.home-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.08), transparent 55%), radial-gradient(circle at 80% 80%, rgba(255,255,255,.08), transparent 55%);
  pointer-events: none;
}
.home-hero__inner { position: relative; z-index: 2; max-width: 900px; }
.home-hero__eyebrow { font-size: .85rem; letter-spacing: .25em; text-transform: uppercase; color: var(--color-accent-soft); margin-bottom: var(--space-5); font-weight: 700; }
.home-hero__title { font-size: clamp(3.5rem, 14vw, 9rem); font-weight: 800; letter-spacing: -.03em; line-height: .95; margin-bottom: var(--space-6); }
.home-hero__subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto var(--space-8); line-height: 1.6; }
.home-hero__cta { margin: 0 auto; }
.home-hero__scroll { position: absolute; bottom: var(--space-8); left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: var(--space-2); color: rgba(255,255,255,.6); font-size: .8rem; z-index: 2; }
.home-hero__scroll i { animation: bounceDown 2s infinite; }
@keyframes bounceDown { 0%,100% { transform: translateY(0);} 50% { transform: translateY(8px);} }
.home-hero__sentinel { position: absolute; bottom: 0; height: 1px; width: 100%; }


.home-intro { padding: var(--space-16) var(--space-5); background: var(--color-surface); }
.home-intro__inner { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--space-8); }
.home-intro__heading { font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.2; }
.home-intro__text p { color: var(--color-ink-soft); font-size: 1.05rem; margin-bottom: var(--space-4); max-width: 640px; }


.home-features { padding: var(--space-16) var(--space-5); background: var(--color-bg); }
.home-features__head { max-width: 700px; margin: 0 auto var(--space-10); text-align: center; }
.home-features__heading { font-size: clamp(1.9rem, 3.5vw, 2.7rem); margin-bottom: var(--space-3); }
.home-features__subtitle { color: var(--color-ink-soft); font-size: 1.05rem; }
.home-features__grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
.home-features__card {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: var(--space-6); box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.home-features__card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--color-primary-light); }
.home-features__icon {
  width: 56px; height: 56px; border-radius: var(--radius-md); background: var(--gradient-primary);
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: var(--space-4);
  transition: transform .45s var(--ease);
}
.home-features__card:hover .home-features__icon { transform: rotate(-8deg) scale(1.08); }
.home-features__card h3 { font-size: 1.2rem; margin-bottom: var(--space-3); }
.home-features__card p { color: var(--color-ink-soft); font-size: .98rem; }
.home-features__reveal {
  max-height: 0; opacity: 0; overflow: hidden; color: var(--color-secondary-dark); font-size: .9rem; font-weight: 600;
  transition: max-height .45s var(--ease), opacity .4s var(--ease), margin-top .45s var(--ease);
}
.home-features__card:hover .home-features__reveal { max-height: 100px; opacity: 1; margin-top: var(--space-3); }


.home-sticky { padding: var(--space-16) var(--space-5); background: var(--color-surface); }
.home-sticky__head { max-width: 700px; margin: 0 auto var(--space-10); text-align: center; }
.home-sticky__head h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); }
.home-sticky__grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--space-8); }
.home-sticky__visual { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); height: 320px; }
.home-sticky__visual img { width: 100%; height: 100%; object-fit: cover; }
.home-sticky__steps { display: flex; flex-direction: column; gap: var(--space-8); }
.home-sticky__step { padding-bottom: var(--space-6); border-bottom: 1px solid var(--color-border); }
.home-sticky__step:last-child { border-bottom: none; }
.home-sticky__num { font-family: var(--font-heading); font-weight: 800; font-size: 1.6rem; color: var(--color-primary-light); display: block; margin-bottom: var(--space-2); }
.home-sticky__step h3 { font-size: 1.3rem; margin-bottom: var(--space-2); }
.home-sticky__step p { color: var(--color-ink-soft); }

@media (min-width: 900px) {
  .home-sticky__grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .home-sticky__visual { position: sticky; top: 110px; height: 560px; }
}


.home-tabs { padding: var(--space-16) var(--space-5); background: var(--color-bg); }
.home-tabs__head { max-width: 700px; margin: 0 auto var(--space-10); text-align: center; }
.home-tabs__head h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); margin-bottom: var(--space-3); }
.home-tabs__subtitle { color: var(--color-ink-soft); }
.home-tabs__wrap { max-width: 1150px; margin: 0 auto; }
.home-tabs__nav { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-8); border-bottom: 1px solid var(--color-border); }
.home-tabs__btn {
  padding: var(--space-3) var(--space-5); font-weight: 600; font-size: .95rem; color: var(--color-ink-soft);
  position: relative; transition: color .3s var(--ease); min-height: 44px;
}
.home-tabs__btn::after { content:''; position: absolute; left: 0; bottom: -1px; width: 0; height: 3px; background: var(--gradient-primary); border-radius: var(--radius-full); transition: width .35s var(--ease); }
.home-tabs__btn:hover { color: var(--color-primary); }
.home-tabs__btn.is-active { color: var(--color-primary); }
.home-tabs__btn.is-active::after { width: 100%; }
.home-tabs__panel { display: none; grid-template-columns: 1fr; gap: var(--space-8); }
.home-tabs__panel.is-active { display: grid; animation: fadeInPanel .5s var(--ease); }
@keyframes fadeInPanel { from { opacity: 0; transform: translateY(12px);} to { opacity: 1; transform: translateY(0);} }
.home-tabs__panel img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 280px; object-fit: cover; }
.home-tabs__content h3 { font-size: 1.5rem; margin-bottom: var(--space-3); }
.home-tabs__content p { color: var(--color-ink-soft); margin-bottom: var(--space-4); }
.home-tabs__content ul { display: flex; flex-direction: column; gap: var(--space-2); }
.home-tabs__content li { padding-left: var(--space-6); position: relative; color: var(--color-ink); font-weight: 500; }
.home-tabs__content li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--color-secondary); position: absolute; left: 0; }

@media (min-width: 860px) {
  .home-tabs__panel { grid-template-columns: 1fr 1fr; align-items: center; }
}


.home-carousel { padding: var(--space-16) var(--space-5); background: var(--color-surface); }
.home-carousel__head { max-width: 700px; margin: 0 auto var(--space-8); text-align: center; }
.home-carousel__head h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); }
.home-carousel__swiper { max-width: 1200px; margin: 0 auto; padding-bottom: var(--space-8); }
.home-carousel__slide { background: var(--color-bg); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease); height: auto; }
.home-carousel__slide:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.home-carousel__slide img { width: 100%; height: 190px; object-fit: cover; }
.home-carousel__body { padding: var(--space-5); }
.home-carousel__tag { display: inline-block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--color-secondary-dark); margin-bottom: var(--space-2); }
.home-carousel__body h3 { font-size: 1.1rem; margin-bottom: var(--space-3); line-height: 1.35; }
.home-carousel__link { font-weight: 600; color: var(--color-primary); display: inline-flex; align-items: center; gap: var(--space-2); }
.home-carousel__link i { transition: transform .35s var(--ease); }
.home-carousel__link:hover i { transform: translateX(5px); }
.swiper-pagination-bullet { background: var(--color-primary); }
.swiper-button-next, .swiper-button-prev { color: var(--color-primary) !important; }


.home-cta { padding: var(--space-16) var(--space-5); background: var(--gradient-hero); text-align: center; }
.home-cta__inner { max-width: 700px; margin: 0 auto; color: #fff; }
.home-cta__inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: var(--space-4); }
.home-cta__inner p { color: rgba(255,255,255,.8); margin-bottom: var(--space-6); font-size: 1.05rem; }
.home-cta__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; }


.global-footer { background: #150C30; color: rgba(255,255,255,.85); padding: var(--space-10) var(--space-5) 0; }
.global-footer__row {
  max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-8);
  padding-bottom: var(--space-8); border-bottom: 1px solid rgba(255,255,255,.1);
}
.global-footer__brand { display: flex; align-items: center; gap: var(--space-3); font-weight: 700; font-size: 1.05rem; color: #fff; }
.global-footer__links { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-5); }
.global-footer__links a { font-size: .9rem; color: rgba(255,255,255,.7); position: relative; transition: color .3s var(--ease); padding: var(--space-1) 0; }
.global-footer__links a::after { content:''; position: absolute; left:0; bottom:0; width:0; height:1px; background: var(--color-accent); transition: width .3s var(--ease); }
.global-footer__links a:hover { color: #fff; }
.global-footer__links a:hover::after { width: 100%; }
.global-footer__contact { display: flex; flex-direction: column; gap: var(--space-2); font-size: .9rem; }
.global-footer__contact i { color: var(--color-secondary); margin-right: var(--space-2); width: 16px; }
.global-footer__contact a { transition: color .3s var(--ease); }
.global-footer__contact a:hover { color: var(--color-accent-soft); }
.global-footer__bar { max-width: 1280px; margin: 0 auto; padding: var(--space-5) 0; text-align: center; font-size: .82rem; color: rgba(255,255,255,.5); }

@media (min-width: 860px) {
  .global-footer__row { flex-direction: row; align-items: center; justify-content: space-between; }
}


.dlaczego-hero, .online-hero, .blog-hero, .contact-hero, .privacy-hero, .terms-hero, .cookies-hero {
  background: var(--gradient-hero); color: #fff; padding: 9rem var(--space-5) var(--space-16); text-align: center;
}
.dlaczego-hero__inner, .online-hero__inner, .blog-hero__inner, .contact-hero__inner,
.privacy-hero__inner, .terms-hero__inner, .cookies-hero__inner { max-width: 720px; margin: 0 auto; }
.dlaczego-hero h1, .online-hero h1, .blog-hero h1, .contact-hero h1, .privacy-hero h1, .terms-hero h1, .cookies-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: var(--space-4);
}
.dlaczego-hero__lead, .online-hero__lead, .blog-hero__lead, .contact-hero__lead { color: rgba(255,255,255,.82); font-size: 1.1rem; }
.privacy-hero p, .terms-hero p, .cookies-hero p { color: rgba(255,255,255,.82); font-size: 1.05rem; margin-top: var(--space-3); }


.dlaczego-approach { padding: var(--space-16) var(--space-5); background: var(--color-surface); display: grid; grid-template-columns: 1fr; gap: var(--space-8); max-width: 1200px; margin: 0 auto; }
.dlaczego-approach__visual img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); width: 100%; height: 340px; object-fit: cover; }
.dlaczego-approach__text p { color: var(--color-ink-soft); margin-bottom: var(--space-4); }
.dlaczego-approach__text h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: var(--space-4); }

.dlaczego-values { padding: var(--space-16) var(--space-5); background: var(--color-bg); }
.dlaczego-values__head { max-width: 700px; margin: 0 auto var(--space-10); text-align: center; }
.dlaczego-values__head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.dlaczego-values__grid { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
.dlaczego-values__card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-6);
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); }
.dlaczego-values__card:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-lg); border-color: var(--color-secondary); }
.dlaczego-values__icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--gradient-warm); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: var(--space-4);
  transition: transform .4s var(--ease); }
.dlaczego-values__card:hover .dlaczego-values__icon { transform: rotate(10deg) scale(1.1); }
.dlaczego-values__card h3 { font-size: 1.1rem; margin-bottom: var(--space-2); }
.dlaczego-values__card p { color: var(--color-ink-soft); font-size: .95rem; }

.dlaczego-process { padding: var(--space-16) var(--space-5); background: var(--color-surface); display: grid; grid-template-columns: 1fr; gap: var(--space-8); max-width: 1200px; margin: 0 auto; }
.dlaczego-process__visual img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); width: 100%; height: 340px; object-fit: cover; }
.dlaczego-process__text h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: var(--space-6); }
.dlaczego-process__list { display: flex; flex-direction: column; gap: var(--space-5); }
.dlaczego-process__list li { display: flex; gap: var(--space-4); align-items: flex-start; }
.dlaczego-process__num { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; color: var(--color-primary-light); min-width: 42px; }
.dlaczego-process__list h3 { font-size: 1.1rem; margin-bottom: var(--space-1); }
.dlaczego-process__list p { color: var(--color-ink-soft); font-size: .95rem; }

.dlaczego-faq { padding: var(--space-16) var(--space-5); background: var(--color-bg); }
.dlaczego-faq__head { max-width: 700px; margin: 0 auto var(--space-8); text-align: center; }
.dlaczego-faq__head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.dlaczego-faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-3); }
.dlaczego-faq__item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-5); transition: box-shadow .35s var(--ease), border-color .35s var(--ease); }
.dlaczego-faq__item:hover { box-shadow: var(--shadow-md); border-color: var(--color-primary-light); }
.dlaczego-faq__item summary { cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; list-style: none; min-height: 44px; }
.dlaczego-faq__item summary::-webkit-details-marker { display: none; }
.dlaczego-faq__item summary i { transition: transform .35s var(--ease); color: var(--color-primary); }
.dlaczego-faq__item[open] summary i { transform: rotate(180deg); }
.dlaczego-faq__item p { color: var(--color-ink-soft); margin-top: var(--space-3); font-size: .95rem; }

@media (min-width: 860px) {
  .dlaczego-approach, .dlaczego-process { grid-template-columns: 1fr 1fr; align-items: center; }
  .dlaczego-values__grid { grid-template-columns: repeat(4, 1fr); }
}


.online-format { padding: var(--space-16) var(--space-5); background: var(--color-surface); display: grid; grid-template-columns: 1fr; gap: var(--space-8); max-width: 1200px; margin: 0 auto; }
.online-format__text h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: var(--space-4); }
.online-format__text p { color: var(--color-ink-soft); margin-bottom: var(--space-4); }
.online-format__visual img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); width: 100%; height: 340px; object-fit: cover; }

.online-modules { padding: var(--space-16) var(--space-5); background: var(--color-bg); }
.online-modules__head { max-width: 700px; margin: 0 auto var(--space-10); text-align: center; }
.online-modules__head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.online-modules__grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
.online-modules__card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-6);
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); }
.online-modules__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--color-primary-light); }
.online-modules__icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--gradient-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: var(--space-4); transition: transform .4s var(--ease); }
.online-modules__card:hover .online-modules__icon { transform: scale(1.12) rotate(-6deg); }
.online-modules__card h3 { font-size: 1.1rem; margin-bottom: var(--space-2); }
.online-modules__card p { color: var(--color-ink-soft); font-size: .95rem; }

.online-steps { padding: var(--space-16) var(--space-5); background: var(--color-surface); }
.online-steps__head { max-width: 700px; margin: 0 auto var(--space-10); text-align: center; }
.online-steps__head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.online-steps__row { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
.online-steps__item { text-align: center; padding: var(--space-5); border-radius: var(--radius-lg); transition: transform .4s var(--ease), background .4s var(--ease); }
.online-steps__item:hover { transform: translateY(-6px); background: var(--color-bg); }
.online-steps__num { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: var(--radius-full); background: var(--gradient-warm); color: #fff; font-weight: 800; margin-bottom: var(--space-4); }
.online-steps__item h3 { font-size: 1.05rem; margin-bottom: var(--space-2); }
.online-steps__item p { color: var(--color-ink-soft); font-size: .92rem; }

.online-technical { padding: var(--space-12) var(--space-5); background: var(--color-bg); }
.online-technical__inner { max-width: 900px; margin: 0 auto; display: flex; gap: var(--space-5); align-items: flex-start; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: var(--shadow-sm); }
.online-technical__inner i { font-size: 1.6rem; color: var(--color-secondary); margin-top: var(--space-1); }
.online-technical__inner h2 { font-size: 1.3rem; margin-bottom: var(--space-2); }
.online-technical__inner p { color: var(--color-ink-soft); }

@media (min-width: 860px) {
  .online-format { grid-template-columns: 1fr 1fr; align-items: center; }
  .online-modules__grid { grid-template-columns: repeat(3, 1fr); }
  .online-steps__row { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1180px) {
  .online-modules__grid { grid-template-columns: repeat(5, 1fr); }
}


.blog-grid { padding: var(--space-16) var(--space-5); max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
.blog-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--color-primary-light); }
.blog-card__media { overflow: hidden; height: 200px; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.08); }
.blog-card__body { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-2); flex: 1; }
.blog-card__tag { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--color-secondary-dark); }
.blog-card__body h2 { font-size: 1.25rem; line-height: 1.3; }
.blog-card__body p { color: var(--color-ink-soft); font-size: .95rem; flex: 1; }
.blog-card__link { font-weight: 600; color: var(--color-primary); display: inline-flex; align-items: center; gap: var(--space-2); margin-top: var(--space-2); width: fit-content; }
.blog-card__link i { transition: transform .35s var(--ease); }
.blog-card__link:hover i { transform: translateX(5px); }

@media (min-width: 720px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }


.contact-info { max-width: 1150px; margin: 0 auto; padding: var(--space-12) var(--space-5) 0; display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
.contact-info__card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-6); text-align: center;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.contact-info__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.contact-info__card i { font-size: 1.6rem; color: var(--color-primary); margin-bottom: var(--space-3); display: inline-block; transition: transform .4s var(--ease); }
.contact-info__card:hover i { transform: scale(1.15) rotate(-6deg); }
.contact-info__card h3 { font-size: 1.05rem; margin-bottom: var(--space-2); }
.contact-info__card p { color: var(--color-ink-soft); font-size: .92rem; }
.contact-info__card a { color: var(--color-primary); font-weight: 600; }

.contact-form-section { padding: var(--space-16) var(--space-5); max-width: 1200px; margin: 0 auto; }
.contact-form-section__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-10); }
.contact-form-section__text h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: var(--space-4); }
.contact-form-section__text p { color: var(--color-ink-soft); }
.contact-form-section__form { display: grid; grid-template-columns: 1fr; gap: var(--space-5); background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: var(--shadow-md); }
.contact-form-section__field { display: flex; flex-direction: column; gap: var(--space-2); }
.contact-form-section__field--full { grid-column: 1 / -1; }
.contact-form-section__field label { font-size: .88rem; font-weight: 600; color: var(--color-ink-soft); }
.contact-form-section__field input, .contact-form-section__field select, .contact-form-section__field textarea {
  padding: .8rem 1rem; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-bg);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease); min-height: 48px;
}
.contact-form-section__field textarea { min-height: 120px; resize: vertical; }
.contact-form-section__field input:focus, .contact-form-section__field select:focus, .contact-form-section__field textarea:focus {
  outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(91,63,224,.12);
}
.contact-form-section__checkbox { display: flex; gap: var(--space-3); align-items: flex-start; font-size: .88rem; color: var(--color-ink-soft); }
.contact-form-section__checkbox input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--color-primary); }
.contact-form-section__checkbox a { color: var(--color-primary); font-weight: 600; }
.contact-form-section__submit { width: 100%; }

.contact-map iframe { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); max-width: 1200px; margin: 0 auto; display: block; }
.contact-map { padding: 0 var(--space-5) var(--space-16); }

.contact-access { padding: 0 var(--space-5) var(--space-16); }
.contact-access__inner { max-width: 1000px; margin: 0 auto; display: flex; gap: var(--space-5); align-items: flex-start; background: var(--color-bg);
  border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-6); }
.contact-access__inner i { font-size: 1.7rem; color: var(--color-secondary); margin-top: var(--space-1); }
.contact-access__inner h2 { font-size: 1.3rem; margin-bottom: var(--space-2); }
.contact-access__inner p { color: var(--color-ink-soft); }

@media (min-width: 720px) { .contact-info { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .contact-info { grid-template-columns: repeat(4, 1fr); }
  .contact-form-section__grid { grid-template-columns: .8fr 1.2fr; }
  .contact-form-section__form { grid-template-columns: 1fr 1fr; }
}


.thanks-section { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 9rem var(--space-5) var(--space-16); background: var(--color-bg); }
.thanks-section__inner { text-align: center; max-width: 560px; }
.thanks-section__icon { width: 72px; height: 72px; border-radius: var(--radius-full); background: var(--gradient-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto var(--space-6); box-shadow: var(--shadow-lg); }
.thanks-section__inner h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: var(--space-4); }
.thanks-section__inner p { color: var(--color-ink-soft); margin-bottom: var(--space-4); }
.thanks-section__countdown { font-weight: 600; color: var(--color-primary); }
.thanks-section__inner .global-button { margin-top: var(--space-5); }


.privacy-timeline, .terms-timeline, .cookies-timeline { max-width: 900px; margin: 0 auto; padding: var(--space-16) var(--space-5); position: relative; }
.privacy-timeline__line, .terms-timeline__line, .cookies-timeline__line {
  position: absolute; left: 24px; top: var(--space-16); bottom: var(--space-16); width: 2px; background: var(--color-border);
}
.privacy-timeline__item, .terms-timeline__item, .cookies-timeline__item { position: relative; padding-left: 64px; margin-bottom: var(--space-10); }
.privacy-timeline__dot, .terms-timeline__dot, .cookies-timeline__dot {
  position: absolute; left: 15px; top: 6px; width: 20px; height: 20px; border-radius: 50%; background: var(--gradient-primary); box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease);
}
.privacy-timeline__item:hover .privacy-timeline__dot,
.terms-timeline__item:hover .terms-timeline__dot,
.cookies-timeline__item:hover .cookies-timeline__dot { transform: scale(1.25); }
.privacy-timeline__date, .terms-timeline__date, .cookies-timeline__date {
  display: inline-block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--color-secondary-dark); background: var(--color-accent-soft); padding: .3rem .8rem; border-radius: var(--radius-full); margin-bottom: var(--space-3);
}
.privacy-timeline__content h2, .terms-timeline__content h2, .cookies-timeline__content h2 { font-size: 1.35rem; margin-bottom: var(--space-3); }
.privacy-timeline__content p, .terms-timeline__content p, .cookies-timeline__content p { color: var(--color-ink-soft); }

.terms-timeline__item { margin-bottom: var(--space-8); }
.cookies-timeline__item { margin-bottom: var(--space-6); }
.cookies-timeline__content h2 { font-size: 1.2rem; }


.global-cookie {
  position: fixed; right: 20px; bottom: 20px; width: min(360px, calc(100vw - 40px)); z-index: 1200;
  background: var(--color-surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); border: 1px solid var(--color-border);
  padding: var(--space-6); transform: translateY(140%); opacity: 0; transition: transform .55s var(--ease), opacity .5s var(--ease), max-height .4s var(--ease);
}
.global-cookie.is-visible { transform: translateY(0); opacity: 1; }
.global-cookie__icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--gradient-warm); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: var(--space-4); }
.global-cookie__title { font-size: 1.05rem; font-weight: 700; margin-bottom: var(--space-2); }
.global-cookie__text { font-size: .87rem; color: var(--color-ink-soft); margin-bottom: var(--space-5); line-height: 1.5; }
.global-cookie__actions { display: flex; flex-direction: column; gap: var(--space-3); }
.global-cookie__btn { min-height: 44px; border-radius: var(--radius-full); font-weight: 600; font-size: .88rem; text-align: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease); }
.global-cookie__btn--accept { background: var(--gradient-primary); color: #fff; box-shadow: var(--shadow-sm); }
.global-cookie__btn--accept:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.global-cookie__btn--necessary { background: var(--color-bg); border: 1.5px solid var(--color-border); color: var(--color-ink); }
.global-cookie__btn--necessary:hover { border-color: var(--color-primary); }
.global-cookie__btn--customize { background: none; color: var(--color-primary); font-weight: 600; }
.global-cookie__btn--customize:hover { text-decoration: underline; }
.global-cookie__toggles { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease), margin .45s var(--ease); display: flex; flex-direction: column; gap: var(--space-3); }
.global-cookie.is-expanded .global-cookie__toggles { max-height: 260px; margin-top: var(--space-4); margin-bottom: var(--space-4); }
.global-cookie__toggle-row { display: flex; align-items: center; justify-content: space-between; font-size: .85rem; }
.global-cookie__switch { position: relative; width: 40px; height: 22px; }
.global-cookie__switch input { opacity: 0; width: 0; height: 0; }
.global-cookie__slider { position: absolute; inset: 0; background: var(--color-border); border-radius: var(--radius-full); transition: background .3s var(--ease); cursor: pointer; }
.global-cookie__slider::before { content: ''; position: absolute; width: 16px; height: 16px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform .3s var(--ease); }
.global-cookie__switch input:checked + .global-cookie__slider { background: var(--color-primary); }
.global-cookie__switch input:checked + .global-cookie__slider::before { transform: translateX(18px); }
.global-cookie__switch input:disabled + .global-cookie__slider { opacity: .5; cursor: not-allowed; }
.global-cookie__save { margin-top: var(--space-2); }
}

@layer utilities {
  .u-hidden { display: none !important; }
  @media (max-width: 719px) {
    section { padding-left: var(--space-5) !important; padding-right: var(--space-5) !important; }
  }
}