:root{
  --bg: #07070a;
  --fg: #ffffff;
  --muted: rgba(255,255,255,.78);
  --blue: #000DFF;
  --gray:#D6D6D6;
  --dark-gray: #5E5E5E;
  --text-color: #090909;
  --container: 76rem;
  --header-h: 4.25rem;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Raleway", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
}

img, svg{ display:block; }
a{ color: inherit; text-decoration: none; }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

.skip-link{
  position:absolute; left: 1rem; top: 1rem;
  padding: .75rem 1rem;
  background:#fff; color:#000;
  border-radius: .75rem;
  transform: translateY(-200%);
  transition: transform .2s ease;
  z-index: 9999;
}
.skip-link:focus{ transform: translateY(0); }

.container{
  width: min(var(--container), calc(100% - 2.5rem));
  margin: 0 auto;
}

/* Header */
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 50;
  background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,0));
  backdrop-filter: blur(6px);
}

.header-inner{
  height: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 40px 0;
}

.brand{
  min-width: 8rem;
}

/* Nav */
.nav{ display:flex; align-items:center; }

.nav-list{
  display:flex;
  align-items:center;
  gap: 2.2rem;
  list-style:none;
  margin:0;
  padding:0;
}

.nav-link{
  font-size: 1.1rem;
  position: relative;
  padding: .25rem 0;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:0; bottom:-.35rem;
  width:100%;
  height:2px;
  background: rgba(255,255,255,.9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.nav-link:hover{ opacity: 1; }
.nav-link:hover::after{ transform: scaleX(1); }

.nav-toggle{
  display:none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  border-radius: .85rem;
  cursor: pointer;
}
.nav-toggle__bar{
  display:block;
  width: 1.35rem;
  height: 2px;
  margin: 0 auto;
  background: rgba(255,255,255,.9);
  position: relative;
}
.nav-toggle__bar::before,
.nav-toggle__bar::after{
  content:"";
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  background: rgba(255,255,255,.9);
}
.nav-toggle__bar::before{ top: -7px; }
.nav-toggle__bar::after{ top: 7px; }

.nav-toggle__bar{
  transition: background .2s ease;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after{
  transition: transform .25s ease, top .25s ease, opacity .2s ease;
}

/* otevřený stav */
.nav-toggle[aria-expanded="true"] .nav-toggle__bar{
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before{
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after{
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */
.hero{
  min-height: 100svh;
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-bottom: 3rem;
}

@media (min-width:1600px) {
  .hero {
    min-height: 70svh;
  }
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 800px at 50% 45%, rgba(0,0,0,0) 0%, rgba(0,0,0,.60) 65%, rgba(0,0,0,.80) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero-blob{
  position: absolute;
  left: 50%;
  top: 45%;
  width: min(56rem, 95vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(
    circle at 45% 45%,
   rgba(0, 13, 255, 1) 0%,
    rgba(0, 13, 255, .90) 25%,
    rgba(0, 13, 255, 0.70) 45%,
    rgba(9, 9, 9, .50) 65%,
    rgba(9, 9, 9, .20) 85%,
    rgba(9, 9, 9, 0) 75%
  );
  translate: -50% -50%;
  transform: translate3d(0,0,0) scale(1.05);
  filter:
    blur(28px)
    saturate(120%);
  opacity: 0.85;
  z-index: -1;
  will-change: transform;
  pointer-events: none;
}

.hero-inner{
  position: relative;
  z-index: 1;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero-title{
  margin: 0;
  font-family: "Boldonse", system-ui, sans-serif;
  line-height: 2em;
  font-size: 4rem;
}

@media (max-width:1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width:768px) {
    .hero-title {
        font-size: 2rem;
    }
}

/* Marquee */
.marquee{
  position:absolute;
  left:0; right:0; bottom:0;
  background: var(--blue);
  padding: 1.5rem 0;
  overflow:hidden;
  z-index: 2;
}

.marquee__track{
  overflow:hidden;
}

.marquee__inner{
  display:flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0,0,0);
}

.marquee__row{
  display:flex;
  align-items:center;
  gap: 1.2rem;
  white-space: nowrap;
  padding-left: 1.2rem;
  font-size: 1rem;
  text-transform: uppercase;
  font-family: "Boldonse", system-ui, sans-serif;
}

/* Responsive nav */
@media (max-width: 56rem){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav-list{
    position: absolute;
    top: calc(var(--header-h) + .75rem);
    right: 1.25rem;
    left: 1.25rem;
    display:none;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: 1.25rem;
    background: rgba(0,0,0,.72);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
  }
  .nav-list.is-open{ display:flex; }
  .nav-link{ font-size: 1.05rem; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .nav-link::after{ transition: none; }
}

/* Services */
.services{
  background: #ffffff;
  color: var(--text-color);
  padding: 8rem 0;
}

.services-inner{
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (max-width:768px) {
    .services-inner {
        gap: 2rem;
    }
}

.services-heading{
  display: flex;
  align-items: center;
  gap: .5rem;
}

@media (max-width:768px) {
    .services-heading {
        justify-content: center;
    }
}

.services-dot{
  width: 1.3rem;
  height: 1rem;
  border-radius: 0 100% 100% 0;
  background: var(--blue);
  flex: 0 0 auto;
}

.services-title{
  margin: 0;
  font-family: "Boldonse", system-ui, sans-serif;
  font-size: 1.3rem;
  color: var(--gray);
  text-transform: uppercase;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(2rem, 5vw, 5rem);
  row-gap: clamp(2.25rem, 4.5vw, 3.75rem);
}

@media (max-width:1100px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service{
  display: flex;
  align-items: center;
  gap: 1.5rem;

  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity .45s ease, transform .55s cubic-bezier(.2,.8,.2,1);
  will-change: transform, opacity;
}

.service.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.service:nth-child(1){ transition-delay: 0ms; }
.service:nth-child(2){ transition-delay: 80ms; }
.service:nth-child(3){ transition-delay: 120ms; }
.service:nth-child(4){ transition-delay: 160ms; }

@media (prefers-reduced-motion: reduce){
  .service{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

.service-word{
  margin: 0;
  font-family: "Boldonse", system-ui, sans-serif;
  font-size: 4rem;
  color: var(--blue);
  text-transform: uppercase;
}

.service-text{
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.3em;
  color: var(--text-color);
}

@media (max-width:1024px) {
    .services {
        padding: 6rem 0;
    }
    
    .services-grid{
    grid-template-columns: 1fr;
  }

    .service-word {
        font-size: 3rem;
    }
}

@media (max-width:768px) {
    .services {
        padding: 4rem 0;
    }
    .service-text{
        text-align: center;
    }
}

/* =========================
   Projects / Portfolio
========================= */
.projects{
  position: relative;
  padding: 8rem 0 6.5rem;
  background: var(--bg);
  color: var(--fg);
  overflow: hidden;
}

.projects::before,
.projects::after{
  content:"";
  position:absolute;
  width: 80rem;
  height: 80rem;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
  opacity: .9;
}

@media (max-width:1024px) {
.projects::before,
.projects::after{
  width: 40rem;
  height: 40rem;
}
}

.projects::before{
  left: -10rem;
  bottom: -10rem;
  background: radial-gradient(circle at 40% 45%,
    rgba(0,13,255,.85) 0%,
    rgba(0,13,255,.35) 45%,
    rgba(0,13,255,0) 70%
  );
}

.projects::after{
  right: -10rem;
  top: -10rem;
  background: radial-gradient(circle at 60% 45%,
    rgba(0,13,255,.85) 0%,
    rgba(0,13,255,.35) 45%,
    rgba(0,13,255,0) 70%
  );
}

.projects-inner{ position: relative; z-index: 1; }

.projects-heading{
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 4rem;
}

.projects-dot{
  width: 1.3rem;
  height: 1rem;
  border-radius: 0 100% 100% 0;
  background: var(--blue);
  flex: 0 0 auto;
}

.projects-title{
    margin: 0;
    font-family: "Boldonse", system-ui, sans-serif;
    font-size: 1.3rem;
    color: var(--dark-gray);
    text-transform: uppercase;
}

/* Grid */
.projects-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.2vw, 1.75rem);
  align-items: start;
}

/* Cards */
.project-card{
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  min-height: 30rem;

  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity .45s ease, transform .55s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--d, 0ms);
  will-change: transform, opacity;
}

.project-card.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover{
  border-color: rgba(255,255,255,.14);
}

.project-card:hover .project-img{
  transform: scale(1.03);
}

.project-card--tilt-left{ transform: translateY(1.25rem) rotate(-1.6deg); }
.project-card--tilt-right{ transform: translateY(1.25rem) rotate(1.6deg); }
.project-card--tilt-left.is-visible,
.project-card--tilt-right.is-visible{ transform: translateY(0) rotate(0deg); }

@media (min-width: 1025px){
  .projects-grid > :nth-child(1){ margin-top: 0; }
  .projects-grid > :nth-child(2){ margin-top: 2.25rem; }
  .projects-grid > :nth-child(3){ margin-top: 4.5rem; }
  .projects-grid > :nth-child(4){ margin-top: 0; }
  .projects-grid > :nth-child(5){ margin-top: 2.25rem; }
  .projects-grid > :nth-child(6){ margin-top: 4.5rem; }
}

.project-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}

.project-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.25rem 1.35rem;
  gap: 1.5rem;
}

.project-overlay::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 110%, rgba(0,0,0,.92) 0%, rgba(0,0,0,.65) 45%, rgba(0,0,0,0) 72%),
    linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0));
  pointer-events: none;
}

.project-tags,
.project-name,
.project-desc{ position: relative; z-index: 1; }

.project-tags{
  display:flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.tag{
  font-family: "Raleway", system-ui, sans-serif;
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.86);
}

.project-name{
  margin: 0;
  font-family: "Boldonse", system-ui, sans-serif;
  font-size: 1.8rem;
  line-height: 1.3em;
}

.project-desc{
  margin: 0;
  font-size: .95rem;
  line-height: 1.3em;
  color: #fff;
  max-width: 34ch;
}

.projects-more{
  margin-top: 4rem;
  text-align: center;

  opacity: 0;
  transform: translateY(1rem);
  transition: opacity .45s ease, transform .55s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--d, 0ms);
  will-change: transform, opacity;
}

.projects-more.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.projects-heading.more-projects {
    justify-content: center;
}

.projects-logos{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2.25rem;
  align-items: center;
}

.logo{
  height: 2.2rem;
  max-width: 8rem;
  width: auto;
  filter: grayscale(1);
  transition: opacity .25s ease, filter .25s ease;
}

.logo:hover{
  opacity: .7;
  filter: grayscale(0);
}

@media (max-width: 1024px){
  .projects-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px){
  .projects{ padding: 6rem 0 5rem; }
  .projects-heading{ justify-content: center; text-align: center; }
  .projects-grid{ grid-template-columns: 1fr; }
  .project-desc{ max-width: 52ch; }
}

@media (prefers-reduced-motion: reduce){
  .project-card, .projects-more{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================
   About
========================= */
.about{
  background: #fff;
  color: var(--text-color);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

@media (max-width:1024px) {
    .about{
    padding: 5rem 0;
  }
}

.about-inner{
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (max-width:1024px) {
    .about-inner {
        gap:1rem;
    }
}

.about-heading{
  display: flex;
  align-items: center;
  gap: .5rem;
}

@media (max-width:1024px) {
    .about-heading {
        justify-content: center;
    }
}

.about-dot{
  width: 1.3rem;
  height: 1rem;
  border-radius: 0 100% 100% 0;
  background: var(--blue);
  flex: 0 0 auto;
}

.about-kicker{
  margin: 0;
  font-family: "Boldonse", system-ui, sans-serif;
  font-size: 1.3rem;
  color: var(--gray);
  text-transform: uppercase;
}

.about-grid{
  position: relative;
  display: grid;
  grid-template-columns: .75fr 1.2fr;
  grid-template-areas:
    "media  content";
  column-gap: clamp(2rem, 5vw, 4.5rem);
  row-gap: 2.25rem;
  align-items: start;
}

@media (max-width:1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
        "title"
        "media"
        "content";
        row-gap: 0;
    }
}

.about-title{
  margin: 0;
  font-family: "Boldonse", system-ui, sans-serif;
  color: var(--blue);
  text-transform: uppercase;
  line-height: 2em;
  font-size: 4rem;
}

@media (max-width:1024px) {
    .about-title{
        font-size: 3rem;
        text-align: center;
    }
}

@media (max-width:768px) {
    .about-title{
        font-size: 2rem;
    }
}

.about-media{
  grid-area: media;
  border-radius: 30px;
  overflow: hidden;
}

.about-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width:1024px) {
    .about-img {
        display: none;
    }
}

.about-content{
  grid-area: content;
}

@media (max-width:1024px) {
    .about-content {
        text-align: center;
    }
}

.about-content p{
  margin: 0 0 1.1rem;
  font-size: 1.2rem;
  line-height: 1.3em;
  color: var(--text-color);
}

.btn{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .75rem 1.05rem;
  border-radius: 999px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  user-select: none;
}

.btn-outline{
  color: var(--blue);
  border: 1px solid var(--blue);
  margin-top: 2rem;
}

.btn-outline:hover{
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline:hover svg path{
  stroke: #fff;
}

.btn-outline:active{
  transform: translateY(0);
}

/* =========================
   Portfolio (2 tiles)
========================= */
.portfolio{
  position: relative;
  padding: 8rem 0;
  background: var(--bg);
  color: var(--fg);
  overflow: hidden;
}

.portfolio::before{
  content:"";
  position:absolute;
  left: -12rem;
  top: 5rem;
  width: min(48rem, 70vw);
  height: min(48rem, 70vw);
  background: radial-gradient(circle at 45% 50%,
    rgba(0,13,255,1) 0%,
    rgba(0,13,255,.35) 42%,
    rgba(0,13,255,0) 72%
  );
  filter: blur(50px);
  pointer-events:none;
}

.portfolio-inner{ position: relative; z-index: 1; }

.portfolio-heading{
  display:flex;
  align-items:center;
  gap: .5rem;
  margin-bottom: 4rem;
}

.portfolio-dot{
  width: 1.3rem;
  height: 1rem;
  border-radius: 0 100% 100% 0;
  background: var(--blue);
  flex: 0 0 auto;
}

.portfolio-title{
  margin: 0;
  font-family: "Boldonse", system-ui, sans-serif;
  font-size: 1.3rem;
  color: var(--dark-gray);
  text-transform: uppercase;
}

.portfolio-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.2vw, 1.75rem);
  align-items: start;
}

.p-tile{
  position: relative;
  display:block;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  min-height: 28rem;
  transform: translateZ(0);
}

.p-tile--foto{ margin-top: 7.5rem; } /* posun dolů jako v návrhu */

.p-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}

.p-tile:hover .p-img{
  transform: scale(1.03);
}

.p-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 1.25rem;
  padding: 3rem;
}

.p-overlay::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(120% 90% at 50% 110%, rgba(0,0,0,.92) 0%, rgba(0,0,0,.65) 45%, rgba(0,0,0,0) 72%),
    linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0));
  pointer-events:none;
}

.p-copy, .p-arrow{ position: relative; z-index: 1; }

.p-copy{ max-width: 52ch; }

.p-name{
  margin: 0 0 1.5rem;
  font-family: "Boldonse", system-ui, sans-serif;
  font-size: 2.2rem;
  line-height: 1.3em;
}

.p-desc{
  margin: 0;
  font-size: 1rem;
  line-height: 1.3em;
  color: #fff;
  max-width: 58ch;
}

.p-arrow{
  width: 3rem;
  height: 3rem;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.8rem;
  color: #fff;
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  flex: 0 0 auto;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  position: relative;
  isolation: isolate;
}

.p-arrow{
  animation: pArrowBreathe 2.2s ease-in-out infinite;
}
@keyframes pArrowBreathe{
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(0,-1px) scale(1.1); }
}

.p-tile:hover .p-arrow,
.p-tile:focus-within .p-arrow{
  animation: none;
}

/* respektujeme uživatele */
@media (prefers-reduced-motion: reduce){
  .p-arrow,
  .p-arrow::after{
    animation: none !important;
  }
}

.p-tile:hover .p-arrow{
  transform: translate(2px,-2px);
  background: rgba(0,0,0,.36);
  border-color: rgba(255,255,255,.22);
}

@media (max-width: 1024px){
  .portfolio-grid{
    grid-template-columns: 1fr;
  }
  .p-tile--foto{
    margin-top: 0;
  }
  .p-copy{
    max-width: 60ch;
  }
}

@media (max-width: 768px){
  .portfolio{
    padding: 6rem 0 5rem;
  }
  .portfolio-heading{
    justify-content: center;
    text-align:center;
  }
  .p-name{
    font-size: 1.85rem;
  }
  .p-desc{
    font-size: 1rem;
  }
}

/* =========================
   Reviews / Testimonials
========================= */
.reviews{
  background: #fff;
  color: var(--text-color);
  padding: 6rem 0;
  overflow: hidden;
}

.reviews-inner{
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (max-width: 1024px) {
    .reviews-inner {
        gap: 1rem;
    }
}

.reviews-heading{
  display:flex;
  align-items:center;
  gap:.5rem;
}

.reviews-dot{
  width: 1.3rem;
  height: 1rem;
  border-radius: 0 100% 100% 0;
  background: var(--blue);
  flex: 0 0 auto;
}

.reviews-kicker{
  margin:0;
  font-family: "Boldonse", system-ui, sans-serif;
  font-size: 1.3rem;
  color: var(--gray);
  text-transform: uppercase;
}

.reviews-title{
  margin: 0;
  font-family: "Boldonse", system-ui, sans-serif;
  color: var(--blue);
  text-transform: uppercase;
  line-height: 2em;
  font-size: 4rem;
}

@media (max-width: 1024px) {
    .reviews-title {
        font-size: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .reviews-title {
        font-size: 2rem;
    }
}

.reviews-swiper{
  overflow: visible;
}

.review-card{
  border: 1px solid var(--blue);
  border-radius: 30px;
  padding: 1.6rem 1.6rem 1.25rem;
  background-color: #F8F8F8;
  min-height: 15.5rem;
  display:flex !important;
  flex-direction: column;
  gap: 1.5rem;
}

.review-top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.review-head{
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.3em;
  font-weight: 700;
}

.review-text{
  margin: 0;
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.3em;
  max-width: 62ch;
}

.review-tags{
  display:flex;
  flex-wrap: wrap;
  gap: .3rem;
  justify-content: flex-end;
}

.review-pill{
  font-size: .7rem;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: .2rem .45rem;
  border-radius: 999px;
  white-space: nowrap;
}

.review-author{
  margin-top: auto;
  display:flex;
  align-items:center;
  gap: .65rem;
}

.review-logo{
  height: 1.7rem;
  width: auto;
  max-width: 5rem;
  filter: grayscale(1);
  transition: opacity .25s ease, filter .25s ease;
}

.review-logo:hover{
  filter: grayscale(0);
}

.review-name{
  font-weight: 700;
  color: var(--text-color);
}

.reviews-bottom{
  display:flex;
  align-items:center;
  justify-content: space-between;
  margin-top: 2.2rem;
}

.reviews-counter{
  display:flex;
  align-items: center;
  gap: .35rem;
  font-family: "Boldonse", system-ui, sans-serif;
}

.reviews-current{
  font-size: 2.4rem;
  color: var(--blue);
}

.reviews-sep,.reviews-total{
  font-size: 1.6rem;
  color: #D6D6D6;
}

.reviews-nav{
  display:flex;
  align-items:center;
  gap: .5rem;
}

.reviews-btn{
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 100%;
  border: none;
  background: var(--blue);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.reviews-btn:hover{
  transform: translateY(-1px);
}

.reviews-btn.is-disabled {
  pointer-events: none;
  background: #D6D6D6;
}

@media (max-width: 1024px){
  .reviews-inner{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .reviews{
    padding: 5.5rem 0 4.5rem;
  }
  .reviews-heading{
    justify-content: center;
  }
  .reviews-title{
    text-align: center;
  }
  .reviews-bottom{
    gap: 1rem;
  }
}

/* =========================
   Pricing
========================= */
.pricing{
  background: #fff;
  padding: 6rem 0 8rem;
}

.pricing-inner{
  display:flex;
  justify-content:center;
}

.pricing-card{
  position: relative;
  width: 100%;
  border-radius: 30px;
  padding: 6rem 4rem;
  background: var(--text-color);
  color: #fff;
  overflow: hidden;
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 4rem 2rem;
    }
}

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

.pricing-blob{
  position:absolute;
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%,
    rgba(0,13,255,1) 0%,
    rgba(0,13,255,.55) 30%,
    rgba(0,13,255,0) 68%
  );
  filter: blur(22px);
  opacity: .95;
  transform: translate3d(0,0,0);
  will-change: transform;
}

.pricing-blob--tr{ right: -12rem; top: -12rem; }
.pricing-blob--bl{ left: -12rem; bottom: 0; }

.pricing-title,
.pricing-lead,
.pricing-steps{
  position: relative;
  z-index: 1;
}

.pricing-title{
  margin: 0 0 3rem;
  font-family: "Boldonse", system-ui, sans-serif;
  font-size: 4rem;
  text-transform: uppercase;
  line-height: 2em;
  text-align: center;
  color: #D6D6D6;
}

@media (max-width: 1024px) {
    .pricing-title {
        font-size: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .pricing-title {
        font-size: 2rem;
        text-align: center;
    }
}

.pricing-lead{
  margin: 0 auto 1rem;
  max-width: 70ch;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.3em;
}

.pricing-lead:last-of-type{
  margin-bottom: 4rem;
}

.pricing-steps{
  display:flex;
  align-items:center;
  justify-content: center;
  gap: 1.2rem;
}

.pricing-step{
  display:flex;
  align-items:center;
  gap: .7rem;
  color: #fff;
  font-size: 1rem;
}

.pricing-icon{
  width: 2rem;
  height: 2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}

.pricing-step__text{
  line-height: 1.3em;
}

.pricing-sep{
  width: 2px;
  height: 3rem;
  background: var(--blue);
  border-radius: 2px;
  flex: 0 0 auto;
}

@media (max-width: 1024px){
  .pricing{ padding: 3rem 0; }
  .pricing-steps{
    flex-wrap: wrap;
    justify-content: center;
    gap: .9rem 1.25rem;
  }
  .pricing-sep{ display:none; }
}

@media (prefers-reduced-motion: reduce){
  .pricing-blob{ transform: none !important; }
}

/* =========================
   FAQ
========================= */

.faq {
  background-color: #fff;
  padding: 0 0 8rem;
}

.faq .container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.faq-heading{
  display: flex;
  align-items: center;
  gap: .5rem;
}

@media (max-width:1024px) {
    .faq-heading {
        justify-content: center;
    }
}

.faq-dot{
  width: 1.3rem;
  height: 1rem;
  border-radius: 0 100% 100% 0;
  background: var(--blue);
  flex: 0 0 auto;
}

.faq-kicker{
  margin:0;
  font-family: "Boldonse", system-ui, sans-serif;
  font-size: 1.3rem;
  color: var(--gray);
  text-transform: uppercase;
}

.faq-title{
  margin: 0;
  font-family: "Boldonse", system-ui, sans-serif;
  color: var(--blue);
  text-transform: uppercase;
  line-height: 2em;
  font-size: 4rem;
}

.faq-list {
  display: grid;
  gap: 20px;
}

.faq-item {
  border-radius: 22px;
  border: 1px solid #D6D6D6;
  border-radius: 30px;
  overflow: hidden;
  transition: transform .22s ease;
}

.faq-item:hover, .faq-item:has(.faq-btn[aria-expanded="true"]) {
  border-color: var(--blue);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  background: transparent;
  border: 0;
  color: #090909;
  text-align: left;
  font-family: "Raleway", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-q {
  margin: 0;
  font-family: "Boldonse", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.faq-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 2px;
  background: var(--blue);
  transform: translate(-50%, -50%);
  border-radius: 2px;
  opacity: 0.9;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
}

.faq-btn[aria-expanded="true"] .faq-icon::after {
  height: 0;
}

.faq-a {
  padding: 0 30px 30px;
  color: #090909;
  font-size: 1.2rem;
  line-height: 1.3em;
}

.faq-a p:first-child {
  margin-top: 0;
}

.faq-a p:last-child {
  margin-bottom: 0;
}

/* =========================
   Footer CTA (Kontakt)
========================= */
.footer-cta{
  position: relative;
  padding: 6rem 0 2rem;
  background: var(--text-color);
  overflow: hidden;
}

.footer-cta__bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 700px at 0% 20%,
      rgba(0,13,255,.95) 0%,
      rgba(0,13,255,.40) 28%,
      rgba(0,13,255,.12) 42%,
      rgba(0,0,0,0) 62%
    ),
    radial-gradient(1200px 900px at 50% 35%,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,.65) 55%,
      rgba(0,0,0,.88) 100%
    );
  filter: blur(0px);
  opacity: 1;
}

.footer-cta__inner{
  position: relative;
  z-index: 1;
  text-align: center;
}

.footer-cta__title{
  margin: 0;
  font-family: "Boldonse", system-ui, sans-serif;
  text-transform: uppercase;
  line-height: 2em;
  font-size: 4rem;
}

@media (max-width: 1024px) {
    .footer-cta__title {
        font-size: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-cta__title {
        font-size: 2rem;
    }
}

.footer-cta__title--light{
  color: #D6D6D6;
}

.footer-cta__title--blue{
  color: var(--blue);
}

.footer-cta__actions{
  margin-top: 2rem;
  display:flex;
  justify-content:center;
  gap: .9rem;
  flex-wrap: wrap;
}

.footer-pill{
  display:inline-flex;
  align-items:center;
  gap: .65rem;
  padding: .65rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
}

.footer-pill:hover{
  transform: translateY(-2px);
  border-color: #fff;
}

.footer-pill__icon{
  width: 1.15rem;
  height: 1.15rem;
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer-pill__text{
  font-size: 1.2rem;
  color: rgba(255,255,255,.92);
  letter-spacing: .01em;
}

.footer-cta__meta{
  margin-top: 6rem;
  font-size: 1rem;
  color: #fff;
  text-align: center;
}

@media (max-width: 768px){
  .footer-cta{
    padding: 6rem 0 2rem;
  }
  .footer-cta__actions{
    margin-top: 1.5rem;
    gap: .75rem;
  }
}

/* =========================
   404
========================= */
body.error-404 .hero .container {
  flex-direction: column;
}

body.error-404 .hero .hero-title {
  margin-top: 60px;
  font-size: 8rem;
  line-height: 1.5em;
}

body.error-404 .hero p {
  font-size: 1.5rem;
  font-weight: 400;
}

body.error-404 .hero p a {
  text-decoration: underline;
  font-weight: 700;
}