:root{
  --bg: #08111f;
  --ink: #f8f5ef;
  --muted: #b0bacb;
  --line: rgba(255,255,255,.13);
  --blue: #62d4ff;
  --green: #57f0b1;
  --violet: #9f7bff;
  --gold: #f2bd6b;
  --shell: min(1480px,calc(100vw - 56px));
  --radius: 28px;
  --shadow: 0 28px 80px rgba(0,0,0,.35);
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--sticky-header-height,78px) + 16px);
}

[id]{
  scroll-margin-top: calc(var(--sticky-header-height,78px) + 16px);
}

body{
  margin: 0;
  min-height: 100vh;
  font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 15% -10%,rgba(98,212,255,.28),transparent 34rem),radial-gradient(circle at 88% 8%,rgba(159,123,255,.24),transparent 36rem),radial-gradient(circle at 40% 100%,rgba(87,240,177,.12),transparent 42rem),var(--bg);
  overflow-x: hidden;
}

body:before{
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .48;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom,#000,transparent 72%);
}

a{
  color: inherit;
}

.icon{
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.shell{
  width: var(--shell);
  margin-inline: auto;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 14px max(24px,calc((100vw - var(--shell))/2));
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(8,17,31,.76);
  backdrop-filter: blur(20px) saturate(1.15);
}

.brand{
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark{
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #08111f;
  font-weight: 950;
  letter-spacing: -.06em;
  background: linear-gradient(135deg,var(--blue),var(--green));
  box-shadow: 0 18px 42px rgba(98,212,255,.25);
}

.brand strong{
  display: block;
  font-size: 1.08rem;
  letter-spacing: -.025em;
}

.brand em{
  display: block;
  margin-top: 2px;
  font-size: .78rem;
  font-style: normal;
  color: var(--muted);
}

.mainnav{
  display: flex;
  align-items: center;
  gap: 10px;
}

.mainnav a{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 760;
  color: rgba(248,245,239,.82);
  padding: 10px 12px;
  border-radius: 999px;
}

.mainnav a:hover{
  background: rgba(255,255,255,.08);
  color: #fff;
}

.nav-cta{
  border: 1px solid rgba(98,212,255,.28);
  background: rgba(98,212,255,.1);
}

.nav-toggle{
  display: none;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #fff;
  font: inherit;
  font-weight: 800;
}

.hero{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(460px,.92fr);
  gap: clamp(42px,6vw,108px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding-block: clamp(72px,8vw,140px);
}

.eyebrow{
  margin: 0 0 16px;
  color: var(--green);
  font-size: .76rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .26em;
}

h1,h2,h3,p{
  margin-top: 0;
}

h1,h2{
  font-family: Georgia,"Times New Roman",serif;
  letter-spacing: -.06em;
  line-height: .98;
}

h1{
  margin-bottom: 24px;
  font-size: clamp(3.35rem,6.1vw,8rem);
}

h2{
  margin-bottom: 18px;
  font-size: clamp(2.35rem,4.2vw,5.3rem);
}

h3{
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.lead{
  max-width: 800px;
  color: rgba(248,245,239,.75);
  font-size: clamp(1.05rem,1.18vw,1.28rem);
  line-height: 1.75;
}

.hero-actions,.contact-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 850;
  font-size: .94rem;
  transition: transform .18s ease,box-shadow .18s ease,background .18s ease;
}

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

.btn.primary{
  color: #08111f;
  background: linear-gradient(135deg,var(--blue),var(--green));
  box-shadow: 0 18px 42px rgba(87,240,177,.22);
}

.btn.ghost{
  background: rgba(255,255,255,.07);
}

.btn.light{
  color: #0b1220;
  background: #fff;
  border-color: rgba(255,255,255,.2);
}

.trust-strip{
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 12px;
  margin-top: 34px;
}

.trust-strip span{
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  color: rgba(248,245,239,.78);
  font-size: .9rem;
  font-weight: 760;
}

.trust-strip .icon{
  color: var(--green);
}

.hero-visual{
  position: relative;
  min-height: 620px;
}

.hero-visual:before{
  content: "";
  position: absolute;
  inset: 8% 0 2% 5%;
  border-radius: 42px;
  background: linear-gradient(135deg,rgba(98,212,255,.18),rgba(159,123,255,.12));
  border: 1px solid rgba(255,255,255,.12);
  transform: rotate(-2deg);
}

.screen-card{
  position: absolute;
  inset: 12% 6% 8% 2%;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg,rgba(255,255,255,.13),rgba(255,255,255,.06));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.browser-bar{
  height: 52px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.browser-bar span{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.34);
}

.screen-content{
  padding: 30px;
}

.screen-hero{
  height: 160px;
  border-radius: 24px;
  background: radial-gradient(circle at 30% 30%,rgba(87,240,177,.5),transparent 36%),linear-gradient(135deg,rgba(98,212,255,.45),rgba(159,123,255,.32));
}

.screen-lines{
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.screen-lines i{
  display: block;
  height: 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}

.screen-lines i:nth-child(2){
  width: 78%;
}

.screen-lines i:nth-child(3){
  width: 56%;
}

.screen-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
  margin-top: 28px;
}

.screen-grid b{
  height: 104px;
  border-radius: 22px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.08);
}

.orbit-card{
  position: absolute;
  z-index: 3;
  width: 210px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: rgba(8,17,31,.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(0,0,0,.26);
}

.orbit-card .icon{
  color: var(--green);
  margin-bottom: 12px;
}

.orbit-card strong{
  display: block;
  margin-bottom: 4px;
}

.orbit-card span{
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}

.card-a{
  left: -2%;
  top: 3%;
}

.card-b{
  right: 0;
  top: 20%;
}

.card-c{
  left: 10%;
  bottom: 2%;
}

.section{
  padding-block: clamp(82px,8vw,150px);
}

.section-head{
  max-width: none;
  margin-bottom: 40px;
}

.section-head.wide{
  max-width: none;
  font-size: 1.06rem;
  line-height: 1.72;
}

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

.feature-card,.branch-card,.contact-card{
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg,rgba(255,255,255,.095),rgba(255,255,255,.055));
  box-shadow: 0 22px 70px rgba(0,0,0,.2);
}

.feature-card{
  min-height: 280px;
  padding: 28px;
}

.feature-card:before,.branch-card:before,.contact-card:before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%,rgba(98,212,255,.18),transparent 34%);
  opacity: .85;
  pointer-events: none;
}

.feature-card>* ,.branch-card>* ,.contact-card>*{
  position: relative;
  z-index: 1;
}

.feature-card .icon{
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--blue);
}

.feature-card p,.branch-card p{
  color: rgba(248,245,239,.68);
  line-height: 1.62;
}

.branch-section{
  border-block: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg,rgba(255,255,255,.025),rgba(255,255,255,.055));
}

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

.branch-card{
  min-height: 330px;
  padding: 26px;
}

.branch-card.highlight{
  background: linear-gradient(180deg,rgba(98,212,255,.17),rgba(87,240,177,.09)),rgba(255,255,255,.08);
  border-color: rgba(98,212,255,.32);
}

.branch-icon{
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,.09);
  color: var(--green);
}

.branch-icon .icon{
  width: 31px;
  height: 31px;
}

.tag{
  display: inline-flex;
  margin: 0 0 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #08111f !important;
  background: linear-gradient(135deg,var(--blue),var(--green));
  font-size: .74rem !important;
  line-height: 1 !important;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.branch-card a,.branch-card span{
  display: inline-flex;
  margin-top: 12px;
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}

.split{
  display: grid;
  grid-template-columns: minmax(0,.86fr) minmax(360px,1fr);
  gap: clamp(34px,6vw,90px);
  align-items: start;
}

.steps{
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li{
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.07);
}

.steps strong{
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #08111f;
  background: linear-gradient(135deg,var(--gold),var(--green));
}

.steps span{
  color: rgba(248,245,239,.78);
  font-weight: 760;
}

.demo-band{
  background: linear-gradient(135deg,rgba(98,212,255,.18),rgba(159,123,255,.15));
  border-block: 1px solid rgba(255,255,255,.1);
}

.demo-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.demo-inner div{
  max-width: 880px;
}

.contact-section{
  padding-bottom: clamp(96px,9vw,160px);
}

.contact-card{
  padding: clamp(32px,5vw,70px);
  max-width: 980px;
}

.site-footer{
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 34px max(24px,calc((100vw - var(--shell))/2));
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(248,245,239,.66);
}

.site-footer strong{
  display: block;
  color: #fff;
}

.site-footer span{
  display: block;
  margin-top: 4px;
}

.site-footer nav{
  display: flex;
  gap: 16px;
}

.site-footer a{
  text-decoration: none;
}

.cookie-banner{
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 20px;
  align-items: center;
  max-width: 980px;
  margin-inline: auto;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  background: rgba(8,17,31,.92);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
  backdrop-filter: blur(20px);
}

.cookie-banner[hidden]{
  display: none;
}

.cookie-banner strong{
  display: block;
  margin-bottom: 5px;
}

.cookie-banner p{
  margin: 0;
  color: rgba(248,245,239,.72);
  line-height: 1.5;
}

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

.cookie-actions .btn{
  min-height: 42px;
  padding-inline: 16px;
}

.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease,transform .7s ease;
}

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

@media (prefers-reduced-motion:reduce){
  html{
    scroll-behavior: auto;
  }

  .reveal{
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover{
    transform: none;
  }

}

@media (max-width:1120px){
  .hero{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual{
    min-height: 560px;
  }

  .feature-grid{
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .branch-grid{
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

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

}

@media (max-width:760px){
  :root{
    --shell: calc(100vw - 28px);
  }

  .site-header{
    min-height: 70px;
    padding: 12px 14px;
  }

  .brand-mark{
    width: 42px;
    height: 42px;
  }

  .brand strong{
    font-size: 1rem;
  }

  .brand em{
    font-size: .72rem;
  }

  .nav-toggle{
    display: inline-flex;
    align-items: center;
  }

  .mainnav{
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(8,17,31,.96);
    box-shadow: var(--shadow);
  }

  .mainnav.open{
    display: flex;
  }

  .mainnav a{
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero{
    padding-block: 56px 84px;
    gap: 34px;
  }

  h1{
    font-size: clamp(3rem,14vw,4.8rem);
    line-height: 1.01;
  }

  h2{
    font-size: clamp(2.2rem,11vw,3.7rem);
  }

  .lead{
    font-size: 1.02rem;
  }

  .trust-strip,.feature-grid,.branch-grid{
    grid-template-columns: 1fr;
  }

  .hero-visual{
    min-height: 430px;
  }

  .hero-visual:before{
    transform: none;
    inset: 6% 0 0 0;
  }

  .screen-card{
    inset: 9% 0 6% 0;
    border-radius: 28px;
  }

  .screen-content{
    padding: 22px;
  }

  .screen-hero{
    height: 120px;
  }

  .screen-grid b{
    height: 76px;
  }

  .orbit-card{
    width: 180px;
    padding: 14px;
  }

  .card-a{
    left: 0;
    top: 0;
  }

  .card-b{
    right: 0;
    top: 28%;
  }

  .card-c{
    left: 0;
    bottom: 0;
  }

  .section{
    padding-block: 72px;
  }

  .feature-card,.branch-card{
    min-height: auto;
  }

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

  .steps li{
    grid-template-columns: 58px 1fr;
  }

  .steps strong{
    width: 48px;
    height: 48px;
  }

  .site-footer{
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 14px;
  }

  .site-footer nav{
    flex-wrap: wrap;
  }

  .cookie-banner{
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    padding: 18px;
  }

}

h1{
  font-size: clamp(2.95rem,4.45vw,5.45rem) !important;
  line-height: 1.02 !important;
}

h2{
  font-size: clamp(2rem,2.65vw,3.45rem) !important;
  line-height: 1.08 !important;
}

@media (max-width: 760px){
  h1{
    font-size: clamp(2.65rem,12vw,3.75rem) !important;
    line-height: 1.03 !important;
  }

  h2{
    font-size: clamp(1.9rem,9vw,2.65rem) !important;
    line-height: 1.1 !important;
  }

}

.ideas-section{
  position: relative;
}

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

.idea-card{
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: radial-gradient(circle at 18% 0%,rgba(98,212,255,.18),transparent 38%),
    linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.052));
  box-shadow: 0 20px 62px rgba(0,0,0,.18);
}

.idea-card .icon{
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--green);
}

.idea-card strong{
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.2;
}

.idea-card span{
  display: block;
  color: rgba(248,245,239,.68);
  line-height: 1.58;
}

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

}

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

  .idea-card{
    min-height: auto;
  }

}

.idea-load-row{
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.idea-card[hidden]{
  display: none !important;
}

.idea-card.is-extra-idea:not([hidden]){
  animation: ideaReveal .42s ease both;
}

@keyframes ideaReveal{
  from{
    opacity: 0;
    transform: translateY(12px);
  }

  to{
    opacity: 1;
    transform: translateY(0);
  }

}

.btn{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
}

.btn::before{
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(115deg,transparent 0%,rgba(255,255,255,.22) 42%,rgba(255,255,255,.42) 50%,rgba(255,255,255,.18) 58%,transparent 100%);
  transform: translateX(-120%);
  transition: transform .55s ease, opacity .24s ease;
}

.btn:hover::before, .btn:focus-visible::before{
  opacity: 1;
  transform: translateX(120%);
}

.btn:hover, .btn:focus-visible{
  box-shadow: 0 20px 48px rgba(87,240,177,.16),0 12px 32px rgba(98,212,255,.13);
}

.btn.ghost, button.btn.ghost, .idea-load-row .btn{
  color: #ffffff !important;
  border-color: rgba(255,255,255,.22);
  background: linear-gradient(135deg,rgba(255,255,255,.12),rgba(255,255,255,.055));
  backdrop-filter: blur(14px);
}

.idea-load-row .btn{
  min-width: 220px;
  font-weight: 900;
  letter-spacing: .01em;
}

.btn.primary{
  color: #07111d;
}

.btn.light{
  color: #08111f;
}

.cookie-actions .btn.ghost{
  color: #ffffff !important;
}

.demo-inner{
  align-items: stretch;
  gap: clamp(28px,4vw,56px);
}

.demo-copy{
  flex: 1 1 auto;
  max-width: 920px;
}

.demo-sidecard{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  flex: 0 0 clamp(290px,27vw,360px);
  min-height: 240px;
  padding: 28px 28px 26px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  background: linear-gradient(180deg,rgba(255,255,255,.14),rgba(255,255,255,.07));
  box-shadow: 0 22px 64px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
}

.demo-sidecard strong{
  display: block;
  margin: 4px 0 10px;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.demo-sidecard span{
  display: block;
  color: rgba(248,245,239,.74);
  line-height: 1.62;
}

.demo-side-eyebrow{
  margin: 0;
  color: var(--green);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.demo-card-btn{
  margin-top: 20px;
  align-self: flex-start;
  min-width: 210px;
}

@media (max-width:1120px){
  .demo-sidecard{
    flex-basis: 320px;
  }

}

@media (max-width:760px){
  .demo-inner{
    gap: 22px;
  }

  .demo-copy{
    max-width: none;
  }

  .demo-sidecard{
    width: 100%;
    min-height: auto;
    padding: 24px 22px 22px;
  }

  .demo-card-btn{
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

}

.ai-band{
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,rgba(36,94,128,.30),rgba(40,46,112,.36));
  border-block: 1px solid rgba(255,255,255,.1);
}

.ai-band:before{
  content: "";
  position: absolute;
  inset: -10% auto auto -6%;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle,rgba(87,240,177,.24),transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.ai-band:after{
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle,rgba(159,123,255,.22),transparent 62%);
  filter: blur(12px);
  pointer-events: none;
}

.ai-showcase{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1.18fr) minmax(320px,.82fr);
  gap: clamp(28px,4vw,54px);
  align-items: center;
}

.ai-copy{
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.ai-copy h2{
  max-width: none;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.ai-point-row span,.ai-label{
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: linear-gradient(180deg,rgba(255,255,255,.16),rgba(255,255,255,.07));
  color: #fff;
  font-size: .94rem;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
}

.ai-panel{
  position: relative;
  z-index: 1;
  padding: 30px 30px 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background: linear-gradient(160deg,rgba(7,17,29,.62),rgba(26,34,76,.48) 55%,rgba(22,80,107,.42));
  box-shadow: 0 28px 72px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.ai-panel:before{
  content: "";
  position: absolute;
  top: -65px;
  right: -30px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle,rgba(98,212,255,.28),transparent 66%);
  pointer-events: none;
}

.ai-panel:after{
  content: "";
  position: absolute;
  left: -40px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle,rgba(87,240,177,.18),transparent 68%);
  pointer-events: none;
}

.ai-panel-top{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.ai-label{
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #e9f7ff;
}

.ai-label.alt{
  background: linear-gradient(180deg,rgba(255,255,255,.11),rgba(255,255,255,.05));
  color: rgba(248,245,239,.92);
}

.ai-panel h3{
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.6rem,2vw,2.3rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.ai-feature-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.ai-feature-list li{
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  background: linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.04));
}

.ai-feature-list strong{
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 1rem;
}

.ai-feature-list span{
  display: block;
  color: rgba(248,245,239,.74);
  line-height: 1.58;
}

.ai-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.ai-actions .btn{
  min-width: 0;
}

.ai-actions .btn.primary{
  color: #07111d;
}

.ai-actions .btn.ghost{
  color: #fff !important;
}

.ai-actions .btn.primary:hover,.ai-actions .btn.primary:focus-visible{
  box-shadow: 0 18px 46px rgba(242,189,107,.16),0 12px 28px rgba(87,240,177,.12);
}

@media (max-width:980px){
  .ai-showcase{
    grid-template-columns: 1fr;
  }

  .ai-copy{
    max-width: none;
  }

  .ai-copy h2,.ai-copy p{
    max-width: none;
  }

  .ai-panel{
    padding: 26px 24px 24px;
  }

}

@media (max-width:760px){
  .ai-point-row{
    gap: 10px;
  }

  .ai-point-row span{
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .ai-actions{
    flex-direction: column;
  }

  .ai-actions .btn{
    width: 100%;
    justify-content: center;
  }

}

.view-controls{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
}

.view-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(248,245,239,.82);
  font: inherit;
  font-size: .82rem;
  font-weight: 850;
  cursor: pointer;
  transition: background .18s ease,color .18s ease,border-color .18s ease,transform .18s ease;
}

.view-toggle:hover, .view-toggle:focus-visible, .view-toggle[aria-pressed="true"]{
  color: #fff;
  border-color: rgba(98,212,255,.26);
  background: rgba(98,212,255,.12);
}

.view-toggle:hover{
  transform: translateY(-1px);
}

html[data-theme="light"]{
  color-scheme: light;
}

html[data-theme="light"] body{
  color: #101827;
  background: radial-gradient(circle at 15% -10%,rgba(98,212,255,.24),transparent 34rem),
    radial-gradient(circle at 88% 8%,rgba(159,123,255,.17),transparent 36rem),
    radial-gradient(circle at 40% 100%,rgba(87,240,177,.15),transparent 42rem),
    #f7f9fc;
}

html[data-theme="light"] body:before{
  opacity: .46;
  background-image: linear-gradient(rgba(16,24,39,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(16,24,39,.04) 1px,transparent 1px);
}

html[data-theme="light"] .site-header{
  border-bottom-color: rgba(16,24,39,.1);
  background: rgba(247,249,252,.82);
}

html[data-theme="light"] .brand em,
html[data-theme="light"] .orbit-card span,
html[data-theme="light"] .section-head p,
html[data-theme="light"] .split p,
html[data-theme="light"] .demo-inner p,
html[data-theme="light"] .contact-card p,
html[data-theme="light"] .lead{
  color: rgba(16,24,39,.66);
}

html[data-theme="light"] .mainnav a, html[data-theme="light"] .view-toggle{
  color: rgba(16,24,39,.76);
}

html[data-theme="light"] .mainnav a:hover,
html[data-theme="light"] .view-toggle:hover,
html[data-theme="light"] .view-toggle:focus-visible,
html[data-theme="light"] .view-toggle[aria-pressed="true"]{
  color: #08111f;
  background: rgba(8,17,31,.055);
}

html[data-theme="light"] .view-controls,
html[data-theme="light"] .trust-strip span,
html[data-theme="light"] .feature-card,
html[data-theme="light"] .branch-card,
html[data-theme="light"] .contact-card,
html[data-theme="light"] .idea-card,
html[data-theme="light"] .steps li{
  border-color: rgba(16,24,39,.11);
  background: linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.62));
  box-shadow: 0 20px 58px rgba(28,41,58,.08);
}

html[data-theme="light"] .branch-section{
  border-block-color: rgba(16,24,39,.08);
  background: linear-gradient(180deg,rgba(255,255,255,.38),rgba(8,17,31,.035));
}

html[data-theme="light"] .feature-card p,
html[data-theme="light"] .branch-card p,
html[data-theme="light"] .idea-card span,
html[data-theme="light"] .steps span{
  color: rgba(16,24,39,.67);
}

html[data-theme="light"] .feature-card h3,
html[data-theme="light"] .branch-card h3,
html[data-theme="light"] .idea-card strong,
html[data-theme="light"] .contact-card h2,
html[data-theme="light"] h1,
html[data-theme="light"] h2{
  color: #101827;
}

html[data-theme="light"] .screen-card,
html[data-theme="light"] .orbit-card,
html[data-theme="light"] .ai-panel{
  border-color: rgba(16,24,39,.12);
  background: linear-gradient(180deg,rgba(255,255,255,.78),rgba(255,255,255,.48));
  box-shadow: 0 26px 74px rgba(28,41,58,.13);
}

html[data-theme="light"] .orbit-card strong,
html[data-theme="light"] .ai-panel h3,
html[data-theme="light"] .ai-feature-list strong{
  color: #101827;
}

html[data-theme="light"] .ai-feature-list li,
html[data-theme="light"] .ai-point-row span,
html[data-theme="light"] .ai-label{
  border-color: rgba(16,24,39,.1);
  background: rgba(255,255,255,.62);
  color: #101827;
}

html[data-theme="light"] .ai-feature-list span, html[data-theme="light"] .ai-label.alt{
  color: rgba(16,24,39,.68);
}

html[data-theme="light"] .cookie-banner{
  border-color: rgba(16,24,39,.12);
  background: rgba(247,249,252,.94);
  color: #101827;
}

html[data-theme="light"] .cookie-banner p, html[data-theme="light"] .site-footer{
  color: rgba(16,24,39,.68);
}

html[data-theme="light"] .site-footer{
  border-top-color: rgba(16,24,39,.1);
}

html[data-theme="light"] .site-footer strong{
  color: #101827;
}

html[dir="rtl"] body{
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .brand,
html[dir="rtl"] .mainnav,
html[dir="rtl"] .view-controls,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .contact-actions,
html[dir="rtl"] .ai-actions,
html[dir="rtl"] .ai-point-row,
html[dir="rtl"] .cookie-actions,
html[dir="rtl"] .site-footer nav,
html[dir="rtl"] .trust-strip span{
  flex-direction: row-reverse;
}

html[dir="rtl"] .hero, html[dir="rtl"] .split, html[dir="rtl"] .ai-showcase{
  direction: rtl;
}

html[dir="rtl"] .steps li{
  grid-template-columns: 1fr 72px;
}

html[dir="rtl"] .steps strong{
  order: 2;
}

html[dir="rtl"] .steps span{
  order: 1;
}

html[dir="rtl"] .screen-lines i:nth-child(2), html[dir="rtl"] .screen-lines i:nth-child(3){
  margin-left: auto;
}

html[dir="rtl"] .card-a{
  left: auto;
  right: -2%;
}

html[dir="rtl"] .card-b{
  right: auto;
  left: 0;
}

html[dir="rtl"] .card-c{
  left: auto;
  right: 10%;
}

@media (max-width:760px){
  .view-controls{
    width: 100%;
    justify-content: space-between;
  }

  .view-toggle{
    flex: 1;
  }

  html[dir="rtl"] .mainnav{
    text-align: right;
  }

  html[dir="rtl"] .steps li{
    grid-template-columns: 1fr 58px;
  }

  html[dir="rtl"] .card-a{
    right: 0;
  }

  html[dir="rtl"] .card-b{
    left: 0;
  }

  html[dir="rtl"] .card-c{
    right: 0;
  }

}

html[data-theme="light"] .brand strong,
html[data-theme="light"] .section-head h2,
html[data-theme="light"] .split h2,
html[data-theme="light"] .contact-card h2,
html[data-theme="light"] h3,
html[data-theme="light"] .mainnav a.nav-cta,
html[data-theme="light"] .steps strong{
  color: #0f172a;
}

html[data-theme="light"] .eyebrow{
  color: #0f9f7e;
}

html[data-theme="light"] .mainnav a, html[data-theme="light"] .site-footer a{
  color: rgba(15,23,42,.78);
}

html[data-theme="light"] .mainnav a:hover{
  background: rgba(15,23,42,.06);
  color: #0f172a;
}

html[data-theme="light"] .nav-cta{
  border-color: rgba(38,132,255,.18);
  background: linear-gradient(135deg,rgba(98,212,255,.16),rgba(87,240,177,.12));
}

html[data-theme="light"] .nav-toggle{
  color: #0f172a;
  border-color: rgba(15,23,42,.14);
  background: rgba(255,255,255,.76);
  box-shadow: 0 10px 26px rgba(15,23,42,.08);
}

html[data-theme="light"] .nav-toggle:hover, html[data-theme="light"] .nav-toggle:focus-visible{
  background: #fff;
}

html[data-theme="light"] .trust-strip span{
  color: rgba(15,23,42,.72);
}

html[data-theme="light"] .hero-visual:before{
  border-color: rgba(15,23,42,.09);
  background: linear-gradient(135deg,rgba(98,212,255,.22),rgba(159,123,255,.14));
  box-shadow: 0 24px 70px rgba(15,23,42,.08);
}

html[data-theme="light"] .screen-card{
  background: linear-gradient(180deg,rgba(255,255,255,.88),rgba(240,246,255,.76));
}

html[data-theme="light"] .browser-bar{
  border-bottom-color: rgba(15,23,42,.08);
  background: rgba(255,255,255,.58);
}

html[data-theme="light"] .browser-bar span:nth-child(1){
  background: #ff8c8c;
}

html[data-theme="light"] .browser-bar span:nth-child(2){
  background: #ffd36b;
}

html[data-theme="light"] .browser-bar span:nth-child(3){
  background: #79d98c;
}

html[data-theme="light"] .screen-lines i{
  background: rgba(15,23,42,.12);
}

html[data-theme="light"] .screen-grid b{
  border-color: rgba(15,23,42,.08);
  background: linear-gradient(180deg,rgba(255,255,255,.86),rgba(242,247,255,.7));
}

html[data-theme="light"] .orbit-card{
  color: #0f172a;
}

html[data-theme="light"] .orbit-card .icon,
html[data-theme="light"] .branch-card .icon,
html[data-theme="light"] .idea-card .icon,
html[data-theme="light"] .feature-card .icon{
  color: #1688b4;
}

html[data-theme="light"] .feature-card:before,
html[data-theme="light"] .branch-card:before,
html[data-theme="light"] .contact-card:before{
  background: radial-gradient(circle at 20% 0%,rgba(98,212,255,.14),transparent 34%);
}

html[data-theme="light"] .branch-card.highlight{
  background: radial-gradient(circle at 100% 0%,rgba(159,123,255,.16),transparent 32%),
    linear-gradient(180deg,rgba(255,255,255,.96),rgba(245,250,255,.76));
}

html[data-theme="light"] .tag{
  color: #1688b4;
}

html[data-theme="light"] .idea-card{
  background: radial-gradient(circle at 18% 0%,rgba(98,212,255,.12),transparent 38%),
    linear-gradient(180deg,rgba(255,255,255,.95),rgba(246,250,255,.78));
}

html[data-theme="light"] .idea-load-row .btn{
  background: linear-gradient(135deg,#0f172a,#1b3259);
  border-color: rgba(15,23,42,.08);
  color: #fff !important;
}

html[data-theme="light"] .idea-load-row .btn:hover, html[data-theme="light"] .idea-load-row .btn:focus-visible{
  box-shadow: 0 18px 46px rgba(15,23,42,.18),0 10px 26px rgba(22,136,180,.14);
}

html[data-theme="light"] .steps li{
  background: linear-gradient(180deg,rgba(255,255,255,.94),rgba(247,250,255,.76));
}

html[data-theme="light"] .steps span{
  color: rgba(15,23,42,.74);
}

html[data-theme="light"] .btn{
  border-color: rgba(15,23,42,.12);
}

html[data-theme="light"] .btn.primary{
  color: #07111d;
  background: linear-gradient(135deg,#7ee8ff,#74f7c3);
  box-shadow: 0 18px 42px rgba(22,136,180,.18);
}

html[data-theme="light"] .btn.ghost{
  color: #0f172a !important;
  background: rgba(255,255,255,.72);
  border-color: rgba(15,23,42,.12);
  box-shadow: 0 10px 28px rgba(15,23,42,.08);
}

html[data-theme="light"] .btn.light{
  color: #fff;
  background: linear-gradient(135deg,#0f172a,#20365f);
  border-color: rgba(15,23,42,.08);
  box-shadow: 0 16px 40px rgba(15,23,42,.18);
}

html[data-theme="light"] .btn.light:hover,
html[data-theme="light"] .btn.light:focus-visible,
html[data-theme="light"] .btn.ghost:hover,
html[data-theme="light"] .btn.ghost:focus-visible,
html[data-theme="light"] .btn.primary:hover,
html[data-theme="light"] .btn.primary:focus-visible{
  transform: translateY(-2px);
}

html[data-theme="light"] .ai-band{
  background: linear-gradient(135deg,rgba(117,222,255,.22),rgba(122,133,255,.16));
  border-block-color: rgba(15,23,42,.08);
}

html[data-theme="light"] .ai-copy p{
  color: rgba(15,23,42,.72);
}

html[data-theme="light"] .ai-point-row span{
  background: linear-gradient(180deg,rgba(255,255,255,.88),rgba(248,252,255,.72));
  color: #0f172a;
}

html[data-theme="light"] .ai-panel{
  background: linear-gradient(160deg,rgba(255,255,255,.92),rgba(239,247,255,.78) 55%,rgba(229,246,241,.74));
  border-color: rgba(15,23,42,.1);
}

html[data-theme="light"] .ai-panel:before{
  background: radial-gradient(circle,rgba(98,212,255,.18),transparent 66%);
}

html[data-theme="light"] .ai-panel:after{
  background: radial-gradient(circle,rgba(87,240,177,.14),transparent 68%);
}

html[data-theme="light"] .ai-label{
  color: #0f172a;
  background: linear-gradient(180deg,rgba(255,255,255,.94),rgba(244,248,255,.76));
}

html[data-theme="light"] .ai-feature-list li{
  background: linear-gradient(180deg,rgba(255,255,255,.92),rgba(247,251,255,.76));
}

html[data-theme="light"] .ai-actions .btn.ghost{
  color: #0f172a !important;
}

html[data-theme="light"] .cookie-banner strong{
  color: #0f172a;
}

html[data-theme="light"] .cookie-actions .btn.ghost{
  color: #0f172a !important;
  background: #fff;
}

html[data-theme="light"] .cookie-actions .btn.primary{
  color: #07111d;
}

html[data-theme="light"] .site-footer{
  background: rgba(255,255,255,.24);
}

html[data-theme="light"] .site-footer nav a:hover{
  color: #0f172a;
}

html[dir="rtl"] .site-header{
  flex-direction: row-reverse;
}

html[dir="rtl"] .site-footer{
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .section-head,
html[dir="rtl"] .hero-copy,
html[dir="rtl"] .feature-card,
html[dir="rtl"] .branch-card,
html[dir="rtl"] .idea-card,
html[dir="rtl"] .contact-card,
html[dir="rtl"] .steps li,
html[dir="rtl"] .ai-copy,
html[dir="rtl"] .ai-panel,
html[dir="rtl"] .cookie-banner,
html[dir="rtl"] .trust-strip span{
  text-align: right;
}

html[dir="rtl"] .mainnav{
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] .feature-card .icon, html[dir="rtl"] .branch-card .icon, html[dir="rtl"] .idea-card .icon{
  margin-left: 0;
  margin-right: 0;
}

html[dir="rtl"] .cookie-banner{
  grid-template-columns: auto minmax(0,1fr);
}

html[dir="rtl"] .cookie-banner > div:first-child{
  order: 2;
}

html[dir="rtl"] .cookie-banner > div:last-child{
  order: 1;
}

html[dir="rtl"] .view-controls{
  margin-right: 0;
}

html[dir="rtl"] .branch-card a,
html[dir="rtl"] .contact-actions .btn,
html[dir="rtl"] .hero-actions .btn,
html[dir="rtl"] .ai-actions .btn{
  justify-content: center;
}

html[dir="rtl"] .screen-card{
  inset: 12% 2% 8% 6%;
}

html[dir="rtl"] .hero-visual:before{
  inset: 8% 5% 2% 0;
  transform: rotate(2deg);
}

html[dir="rtl"] .site-footer div{
  text-align: right;
}

@media (max-width:1120px){
  html[dir="rtl"] .site-header{
    align-items: flex-start;
  }

}

@media (max-width:760px){
  html[dir="rtl"] .site-header{
    flex-direction: row-reverse;
  }

  html[dir="rtl"] .cookie-banner{
    grid-template-columns: 1fr;
  }

  html[dir="rtl"] .cookie-banner > div:first-child, html[dir="rtl"] .cookie-banner > div:last-child{
    order: initial;
  }

  html[dir="rtl"] .brand{
    justify-content: flex-end;
  }

  html[dir="rtl"] .site-footer{
    text-align: right;
  }

}

.branch-section{
  position: relative;
  overflow: hidden;
}

.branch-section:before{
  content: "";
  position: absolute;
  inset: -80px auto auto -120px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle,rgba(98,212,255,.16),transparent 68%);
  pointer-events: none;
  filter: blur(8px);
}

.branch-section:after{
  content: "";
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle,rgba(159,123,255,.15),transparent 68%);
  pointer-events: none;
  filter: blur(10px);
}

.branch-grid{
  position: relative;
  z-index: 1;
  gap: 22px;
}

.branch-card{
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 356px;
  padding: 28px 26px 24px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.14);
  overflow: hidden;
  background: linear-gradient(180deg,rgba(255,255,255,.11),rgba(255,255,255,.055)),
    rgba(10,18,33,.72);
  box-shadow: 0 24px 72px rgba(0,0,0,.24);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.branch-card:hover, .branch-card:focus-within{
  transform: translateY(-4px);
  box-shadow: 0 32px 84px rgba(0,0,0,.28);
  border-color: rgba(255,255,255,.22);
}

.branch-card:before{
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  opacity: .95;
  pointer-events: none;
}

.branch-card:after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(255,255,255,.03),transparent 42%);
  pointer-events: none;
}

.branch-card > *{
  position: relative;
  z-index: 1;
}

.branch-icon{
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg,rgba(255,255,255,.18),rgba(255,255,255,.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12),0 16px 32px rgba(0,0,0,.18);
}

.branch-icon .icon{
  width: 30px;
  height: 30px;
  color: #fff;
}

.branch-card .tag{
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 34px;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.branch-card h3{
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.46rem;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.branch-card p:last-of-type{
  margin-bottom: 20px;
  color: rgba(248,245,239,.76);
  line-height: 1.62;
}

.branch-card a, .branch-card span:last-child{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  margin-top: auto;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  text-decoration: none;
  font-size: .86rem;
  font-weight: 850;
  letter-spacing: .01em;
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
}

.branch-card a{
  color: #08111f;
  background: linear-gradient(135deg,#ffffff,#ebfaff);
}

.branch-card span:last-child{
  color: #fff;
  background: rgba(255,255,255,.10);
}

.branch-card.highlight{
  transform: none;
}

.branch-card.highlight h3{
  font-size: 1.56rem;
}

.branch-photo{
  background: radial-gradient(circle at 100% 0%,rgba(255,130,200,.16),transparent 34%),
    linear-gradient(145deg,rgba(63,34,86,.92),rgba(21,89,112,.86));
}

.branch-photo:before{
  background: radial-gradient(circle,rgba(255,110,199,.34),transparent 68%);
}

.branch-photo .branch-icon{
  background: linear-gradient(145deg,rgba(255,123,196,.34),rgba(115,223,255,.20));
}

.branch-photo .tag{
  background: rgba(255,130,200,.16);
}

.branch-gastro{
  background: radial-gradient(circle at 100% 0%,rgba(255,205,107,.18),transparent 35%),
    linear-gradient(145deg,rgba(102,54,20,.94),rgba(168,85,30,.86));
}

.branch-gastro:before{
  background: radial-gradient(circle,rgba(255,205,107,.34),transparent 68%);
}

.branch-gastro .branch-icon{
  background: linear-gradient(145deg,rgba(255,205,107,.32),rgba(255,134,61,.18));
}

.branch-gastro .tag{
  background: rgba(255,205,107,.15);
}

.branch-craft{
  background: radial-gradient(circle at 100% 0%,rgba(96,165,250,.18),transparent 35%),
    linear-gradient(145deg,rgba(22,48,95,.94),rgba(24,84,144,.84));
}

.branch-craft:before{
  background: radial-gradient(circle,rgba(96,165,250,.34),transparent 68%);
}

.branch-craft .branch-icon{
  background: linear-gradient(145deg,rgba(96,165,250,.32),rgba(45,212,191,.18));
}

.branch-craft .tag{
  background: rgba(96,165,250,.14);
}

.branch-realestate{
  background: radial-gradient(circle at 100% 0%,rgba(99,243,177,.18),transparent 35%),
    linear-gradient(145deg,rgba(16,79,73,.94),rgba(18,111,92,.86));
}

.branch-realestate:before{
  background: radial-gradient(circle,rgba(99,243,177,.34),transparent 68%);
}

.branch-realestate .branch-icon{
  background: linear-gradient(145deg,rgba(99,243,177,.30),rgba(98,212,255,.16));
}

.branch-realestate .tag{
  background: rgba(99,243,177,.14);
}

.branch-coaching{
  background: radial-gradient(circle at 100% 0%,rgba(167,139,250,.18),transparent 35%),
    linear-gradient(145deg,rgba(59,37,109,.94),rgba(92,56,157,.86));
}

.branch-coaching:before{
  background: radial-gradient(circle,rgba(167,139,250,.32),transparent 68%);
}

.branch-coaching .branch-icon{
  background: linear-gradient(145deg,rgba(167,139,250,.30),rgba(255,149,181,.16));
}

.branch-coaching .tag{
  background: rgba(167,139,250,.14);
}

.branch-events{
  background: radial-gradient(circle at 100% 0%,rgba(251,113,133,.20),transparent 35%),
    linear-gradient(145deg,rgba(110,33,66,.94),rgba(148,45,93,.84));
}

.branch-events:before{
  background: radial-gradient(circle,rgba(251,113,133,.34),transparent 68%);
}

.branch-events .branch-icon{
  background: linear-gradient(145deg,rgba(251,113,133,.28),rgba(255,198,87,.18));
}

.branch-events .tag{
  background: rgba(251,113,133,.14);
}

html[data-theme="light"] .branch-section{
  background: radial-gradient(circle at 14% 6%,rgba(98,212,255,.14),transparent 24rem),
    radial-gradient(circle at 88% 94%,rgba(159,123,255,.10),transparent 24rem),
    linear-gradient(180deg,rgba(255,255,255,.30),rgba(242,247,255,.54));
}

html[data-theme="light"] .branch-card{
  border-color: rgba(255,255,255,.48);
  box-shadow: 0 22px 64px rgba(17,24,39,.10);
}

html[data-theme="light"] .branch-card .tag{
  border-color: rgba(255,255,255,.44);
  color: #fff;
}

html[data-theme="light"] .branch-card p:last-of-type{
  color: rgba(255,255,255,.86);
}

html[data-theme="light"] .branch-card span:last-child{
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: rgba(255,255,255,.28);
}

html[data-theme="light"] .branch-card a{
  background: linear-gradient(135deg,#ffffff,#f8fbff);
  color: #07111d;
}

html[data-theme="light"] .branch-card h3{
  color: #fff;
}

html[dir="rtl"] .branch-card .tag,
html[dir="rtl"] .branch-card a,
html[dir="rtl"] .branch-card span:last-child{
  align-self: flex-end;
}

html[dir="rtl"] .branch-card{
  align-items: flex-start;
}

@media (max-width:760px){
  .branch-card{
    min-height: auto;
    padding: 24px 22px 22px;
  }

  .branch-icon{
    width: 62px;
    height: 62px;
    border-radius: 20px;
  }

  .branch-card h3{
    font-size: 1.34rem;
  }

  .branch-card a, .branch-card span:last-child{
    width: 100%;
    justify-content: center;
  }

  html[dir="rtl"] .branch-card .tag,
  html[dir="rtl"] .branch-card a,
  html[dir="rtl"] .branch-card span:last-child{
    align-self: stretch;
  }

}

html, body{
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body{
  text-rendering: geometricPrecision;
}

section, main, .site-header, .site-footer{
  max-width: 100%;
}

.shell{
  max-width: var(--shell);
}

.site-header{
  min-height: 76px;
  gap: 18px;
}

.mainnav{
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mainnav a, .view-toggle, .nav-toggle{
  white-space: nowrap;
}

.view-controls{
  flex: 0 0 auto;
}

html[data-theme="light"] .site-header{
  background: rgba(248,251,255,.88);
  box-shadow: 0 10px 36px rgba(15,23,42,.05);
}

html[data-theme="light"] .brand-mark{
  color: #06111d;
}

.hero{
  align-items: center;
}

.hero-copy{
  min-width: 0;
}

.hero-copy h1{
  max-width: none;
}

.hero-visual{
  min-width: 0;
}

.screen-card{
  max-width: 100%;
}

.trust-strip span{
  min-width: 0;
}

.feature-card, .idea-card, .steps li, .contact-card{
  border-color: rgba(255,255,255,.14);
  background: radial-gradient(circle at 92% 0%,rgba(98,212,255,.10),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.052));
}

.feature-card:nth-child(2), .idea-card:nth-child(2), .steps li:nth-child(2){
  background: radial-gradient(circle at 92% 0%,rgba(159,123,255,.13),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.052));
}

.feature-card:nth-child(3), .idea-card:nth-child(3), .steps li:nth-child(3){
  background: radial-gradient(circle at 92% 0%,rgba(87,240,177,.11),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.052));
}

.feature-card:nth-child(4), .idea-card:nth-child(4), .steps li:nth-child(4){
  background: radial-gradient(circle at 92% 0%,rgba(242,189,107,.12),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.052));
}

.contact-card{
  background: radial-gradient(circle at 86% 20%,rgba(87,240,177,.14),transparent 36%),
    radial-gradient(circle at 0% 100%,rgba(98,212,255,.11),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.105),rgba(255,255,255,.055));
}

html[data-theme="light"]{
  --ink: #0f172a;
  --muted: #526179;
  --line: rgba(15,23,42,.12);
}

html[data-theme="light"] body{
  color: #0f172a;
  background: radial-gradient(circle at 10% -6%,rgba(98,212,255,.24),transparent 32rem),
    radial-gradient(circle at 90% 8%,rgba(159,123,255,.18),transparent 34rem),
    radial-gradient(circle at 42% 100%,rgba(87,240,177,.16),transparent 38rem),
    #f6f9fd;
}

html[data-theme="light"] body:before{
  opacity: .40;
  background-image: linear-gradient(rgba(15,23,42,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(15,23,42,.045) 1px,transparent 1px);
}

html[data-theme="light"] h1,
html[data-theme="light"] h2,
html[data-theme="light"] h3,
html[data-theme="light"] .brand strong,
html[data-theme="light"] .contact-card h2,
html[data-theme="light"] .feature-card h3,
html[data-theme="light"] .idea-card strong{
  color: #0f172a;
}

html[data-theme="light"] .lead,
html[data-theme="light"] .section-head p,
html[data-theme="light"] .split p,
html[data-theme="light"] .contact-card p,
html[data-theme="light"] .feature-card p,
html[data-theme="light"] .idea-card span,
html[data-theme="light"] .steps span{
  color: rgba(15,23,42,.70);
}

html[data-theme="light"] .feature-card,
html[data-theme="light"] .idea-card,
html[data-theme="light"] .steps li,
html[data-theme="light"] .contact-card,
html[data-theme="light"] .trust-strip span{
  border-color: rgba(15,23,42,.10);
  background: radial-gradient(circle at 92% 0%,rgba(98,212,255,.12),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.96),rgba(245,249,255,.80));
  box-shadow: 0 20px 54px rgba(15,23,42,.08);
}

html[data-theme="light"] .feature-card:nth-child(2),
html[data-theme="light"] .idea-card:nth-child(2),
html[data-theme="light"] .steps li:nth-child(2){
  background: radial-gradient(circle at 92% 0%,rgba(159,123,255,.13),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.96),rgba(247,246,255,.82));
}

html[data-theme="light"] .feature-card:nth-child(3),
html[data-theme="light"] .idea-card:nth-child(3),
html[data-theme="light"] .steps li:nth-child(3){
  background: radial-gradient(circle at 92% 0%,rgba(87,240,177,.13),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.96),rgba(244,252,248,.82));
}

html[data-theme="light"] .feature-card:nth-child(4),
html[data-theme="light"] .idea-card:nth-child(4),
html[data-theme="light"] .steps li:nth-child(4){
  background: radial-gradient(circle at 92% 0%,rgba(242,189,107,.15),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.96),rgba(255,250,242,.82));
}

html[data-theme="light"] .btn.primary{
  color: #06111d;
}

html[data-theme="light"] .btn.ghost,
html[data-theme="light"] .view-toggle,
html[data-theme="light"] .nav-toggle{
  color: #0f172a !important;
}

html[data-theme="light"] .btn.ghost{
  background: linear-gradient(180deg,rgba(255,255,255,.94),rgba(247,251,255,.76));
}

html[data-theme="light"] .btn.light{
  color: #ffffff;
  background: linear-gradient(135deg,#0f172a,#253b65);
}

html[data-theme="light"] .branch-card{
  border-color: rgba(255,255,255,.50);
  box-shadow: 0 24px 66px rgba(15,23,42,.13);
}

html[data-theme="light"] .branch-card h3,
html[data-theme="light"] .branch-card p,
html[data-theme="light"] .branch-card p:last-of-type,
html[data-theme="light"] .branch-card .tag{
  color: #fff;
}

html[data-theme="light"] .branch-card p:last-of-type{
  color: rgba(255,255,255,.86);
}

html[data-theme="light"] .branch-card span:last-child{
  color: #fff;
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.25);
}

html[data-theme="light"] .branch-card a{
  color: #07111d;
  background: linear-gradient(135deg,#ffffff,#edf7ff);
  border-color: rgba(255,255,255,.5);
}

.ai-band{
  isolation: isolate;
}

html[data-theme="light"] .ai-band{
  background: radial-gradient(circle at 12% 12%,rgba(87,240,177,.22),transparent 28rem),
    radial-gradient(circle at 90% 82%,rgba(159,123,255,.18),transparent 28rem),
    linear-gradient(135deg,#e8f7ff,#eef0ff);
}

html[data-theme="light"] .ai-copy p{
  color: rgba(15,23,42,.72);
}

html[data-theme="light"] .ai-panel{
  background: radial-gradient(circle at 94% 0%,rgba(98,212,255,.18),transparent 34%),
    linear-gradient(160deg,rgba(255,255,255,.96),rgba(242,249,255,.82));
}

html[data-theme="light"] .ai-panel h3, html[data-theme="light"] .ai-feature-list strong{
  color: #0f172a;
}

html[data-theme="light"] .ai-feature-list span{
  color: rgba(15,23,42,.68);
}

html[dir="rtl"] .site-header{
  direction: rtl;
}

html[dir="rtl"] .mainnav{
  justify-content: flex-start;
}

html[dir="rtl"] .hero, html[dir="rtl"] .split, html[dir="rtl"] .ai-showcase{
  direction: rtl;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .section-head,
html[dir="rtl"] .feature-card,
html[dir="rtl"] .idea-card,
html[dir="rtl"] .branch-card,
html[dir="rtl"] .contact-card,
html[dir="rtl"] .ai-copy,
html[dir="rtl"] .ai-panel,
html[dir="rtl"] .steps li,
html[dir="rtl"] .cookie-banner{
  text-align: right;
}

html[dir="rtl"] .brand{
  flex-direction: row-reverse;
}

html[dir="rtl"] .hero-actions,
html[dir="rtl"] .contact-actions,
html[dir="rtl"] .ai-actions,
html[dir="rtl"] .ai-point-row{
  justify-content: flex-start;
}

html[dir="rtl"] .trust-strip span{
  justify-content: flex-start;
}

html[dir="rtl"] .branch-card a,
html[dir="rtl"] .branch-card span:last-child,
html[dir="rtl"] .branch-card .tag{
  align-self: flex-start;
}

html[dir="rtl"] .steps li{
  grid-template-columns: 1fr 72px;
}

html[dir="rtl"] .steps strong{
  order: 2;
}

html[dir="rtl"] .steps span{
  order: 1;
}

@media (max-width:760px){
  :root{
    --shell: calc(100vw - 32px);
  }

  body{
    overflow-x: hidden;
  }

  .site-header{
    min-height: 66px;
    align-items: center;
    padding: 10px 16px;
  }

  .brand{
    min-width: 0;
    gap: 10px;
  }

  .brand-mark{
    width: 38px;
    height: 38px;
    border-radius: 14px;
    font-size: .86rem;
  }

  .brand strong{
    font-size: .92rem;
    line-height: 1.1;
  }

  .brand em{
    display: none;
  }

  .nav-toggle{
    min-height: 38px;
    padding: 0 13px;
    font-size: .82rem;
  }

  .mainnav{
    left: 16px;
    right: 16px;
    top: 72px;
    max-height: calc(100vh - 92px);
    overflow: auto;
    padding: 14px;
    border-radius: 22px;
  }

  .mainnav a{
    justify-content: space-between;
    min-height: 42px;
    padding: 10px 12px;
  }

  .view-controls{
    width: 100%;
    order: 20;
    margin-top: 4px;
  }

  .hero{
    grid-template-columns: 1fr;
    padding-block: 48px 66px;
    gap: 32px;
  }

  .hero-copy h1{
    max-width: none;
    font-size: clamp(2.55rem,13vw,3.6rem);
    line-height: 1.02;
    letter-spacing: -.055em;
  }

  .lead{
    font-size: .98rem;
    line-height: 1.68;
  }

  .hero-actions{
    gap: 10px;
  }

  .hero-actions .btn{
    flex: 1 1 100%;
    min-height: 46px;
  }

  .trust-strip{
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .trust-strip span{
    min-height: 46px;
    padding: 10px 12px;
    font-size: .86rem;
  }

  .hero-visual{
    min-height: 390px;
  }

  .hero-visual:before{
    inset: 8% 0 0 0;
    transform: none;
    border-radius: 30px;
  }

  .screen-card{
    inset: 12% 0 4% 0;
    border-radius: 26px;
  }

  .screen-content{
    padding: 18px;
  }

  .screen-hero{
    height: 104px;
    border-radius: 20px;
  }

  .screen-grid{
    gap: 10px;
  }

  .screen-grid b{
    height: 66px;
    border-radius: 18px;
  }

  .orbit-card{
    width: min(172px,46vw);
    padding: 12px;
    border-radius: 18px;
  }

  .orbit-card strong{
    font-size: .86rem;
  }

  .orbit-card span{
    font-size: .76rem;
  }

  .card-a{
    left: 0;
    top: 0;
  }

  .card-b{
    right: 0;
    top: 24%;
  }

  .card-c{
    left: 0;
    bottom: 0;
  }

  .section{
    padding-block: 62px;
  }

  h2{
    font-size: clamp(2rem,10vw,2.72rem);
    line-height: 1.07;
  }

  .section-head{
    margin-bottom: 26px;
  }

  .feature-grid, .idea-grid, .branch-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card, .idea-card, .branch-card, .contact-card{
    border-radius: 22px;
    padding: 22px;
  }

  .feature-card, .idea-card{
    min-height: auto;
  }

  .feature-card .icon{
    width: 32px;
    height: 32px;
    margin-bottom: 18px;
  }

  .branch-card{
    min-height: auto;
    padding: 22px;
  }

  .branch-icon{
    width: 58px;
    height: 58px;
    border-radius: 18px;
    margin-bottom: 16px;
  }

  .branch-card h3{
    font-size: 1.28rem;
  }

  .branch-card a, .branch-card span:last-child{
    width: 100%;
    align-self: stretch;
  }

  .split, .ai-showcase{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .steps li{
    grid-template-columns: 54px 1fr;
    gap: 12px;
    min-height: auto;
    padding: 13px;
    border-radius: 18px;
  }

  .steps strong{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: .78rem;
  }

  .ai-copy h2{
    max-width: none;
  }

  .ai-point-row{
    gap: 8px;
  }

  .ai-point-row span{
    width: 100%;
    min-height: 40px;
    justify-content: center;
    text-align: center;
    font-size: .86rem;
  }

  .ai-panel{
    border-radius: 24px;
    padding: 22px;
  }

  .ai-actions{
    flex-direction: column;
  }

  .ai-actions .btn, .contact-actions .btn{
    width: 100%;
  }

  .contact-card{
    padding: 24px 22px;
  }

  .site-footer{
    padding: 28px 16px;
    gap: 16px;
  }

  .site-footer nav{
    width: 100%;
    gap: 10px;
  }

  .site-footer nav a{
    display: inline-flex;
    min-height: 34px;
    align-items: center;
  }

  .cookie-banner{
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: calc(100vw - 28px);
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 20px;
  }

  .cookie-actions .btn{
    flex: 1 1 100%;
  }

  html[dir="rtl"] .mainnav{
    left: 16px;
    right: 16px;
  }

  html[dir="rtl"] .steps li{
    grid-template-columns: 1fr 54px;
  }

  html[dir="rtl"] .branch-card a, html[dir="rtl"] .branch-card span:last-child{
    align-self: stretch;
  }

  html[dir="rtl"] .hero-actions,
  html[dir="rtl"] .contact-actions,
  html[dir="rtl"] .ai-actions,
  html[dir="rtl"] .ai-point-row{
    justify-content: stretch;
  }

  html[dir="rtl"] .screen-card{
    inset: 12% 0 4% 0;
  }

  html[dir="rtl"] .hero-visual:before{
    inset: 8% 0 0 0;
    transform: none;
  }

  html[dir="rtl"] .card-a{
    right: 0;
    left: auto;
  }

  html[dir="rtl"] .card-b{
    left: 0;
    right: auto;
  }

  html[dir="rtl"] .card-c{
    right: 0;
    left: auto;
  }

}

html,body{
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.feature-card,.idea-card,.contact-card,.price-card,.steps li,.ai-panel,.screen-card,.orbit-card{
  backdrop-filter: none !important;
}

.lang-switch{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
}

.lang-switch a{
  min-height: 30px;
  padding: 6px 9px !important;
  font-size: .75rem !important;
}

.lang-switch a[aria-current="page"]{
  background: rgba(98,212,255,.18);
  color: #fff;
}

.pricing-section{
  position: relative;
}

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

.price-card{
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
  overflow: hidden;
  background: radial-gradient(circle at 92% 2%,rgba(98,212,255,.12),transparent 34%),linear-gradient(180deg,rgba(255,255,255,.105),rgba(255,255,255,.052));
}

.price-card:nth-child(2){
  background: radial-gradient(circle at 92% 2%,rgba(159,123,255,.14),transparent 34%),linear-gradient(180deg,rgba(255,255,255,.105),rgba(255,255,255,.052));
}

.price-card:nth-child(3){
  background: radial-gradient(circle at 92% 2%,rgba(87,240,177,.13),transparent 34%),linear-gradient(180deg,rgba(255,255,255,.105),rgba(255,255,255,.052));
}

.price-card:nth-child(4){
  background: radial-gradient(circle at 92% 2%,rgba(242,189,107,.15),transparent 34%),linear-gradient(180deg,rgba(255,255,255,.105),rgba(255,255,255,.052));
}

.price-card h3{
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.55rem,2vw,2.1rem);
  letter-spacing: -.04em;
}

.price-card p:not(.tag){
  color: rgba(248,245,239,.72);
  line-height: 1.58;
}

.price-card ul{
  display: grid;
  gap: 10px;
  margin: 16px 0 22px;
  padding: 0;
  list-style: none;
}

.price-card li{
  position: relative;
  padding-left: 20px;
  color: rgba(248,245,239,.76);
  line-height: 1.42;
}

.price-card li:before{
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.price-card .btn{
  margin-top: auto;
}

.price-note{
  margin: 22px auto 0;
  max-width: none;
  color: rgba(248,245,239,.70);
  line-height: 1.65;
  text-align: center;
}

html[data-theme="dark"][dir="ltr"] body{
  background: radial-gradient(circle at 15% -10%,rgba(98,212,255,.23),transparent 34rem),radial-gradient(circle at 88% 8%,rgba(159,123,255,.20),transparent 36rem),#08111f;
}

html[data-theme="dark"][dir="ltr"] .mainnav{
  justify-content: flex-end;
}

html[data-theme="dark"][dir="rtl"] body{
  direction: rtl;
  text-align: right;
  background: radial-gradient(circle at 85% -10%,rgba(98,212,255,.23),transparent 34rem),radial-gradient(circle at 12% 8%,rgba(159,123,255,.20),transparent 36rem),#08111f;
}

html[dir="rtl"] .site-header{
  direction: rtl;
  flex-direction: row-reverse;
}

html[dir="rtl"] .mainnav{
  justify-content: flex-start;
  direction: rtl;
}

html[dir="rtl"] .brand{
  flex-direction: row-reverse;
}

html[dir="rtl"] .hero,html[dir="rtl"] .split,html[dir="rtl"] .ai-showcase{
  direction: rtl;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .section-head,
html[dir="rtl"] .feature-card,
html[dir="rtl"] .idea-card,
html[dir="rtl"] .branch-card,
html[dir="rtl"] .price-card,
html[dir="rtl"] .contact-card,
html[dir="rtl"] .ai-copy,
html[dir="rtl"] .ai-panel,
html[dir="rtl"] .steps li{
  text-align: right;
}

html[dir="rtl"] .steps li{
  grid-template-columns: 1fr 72px;
}

html[dir="rtl"] .steps strong{
  order: 2;
}

html[dir="rtl"] .steps span{
  order: 1;
}

html[dir="rtl"] .price-card li{
  padding-left: 0;
  padding-right: 20px;
}

html[dir="rtl"] .price-card li:before{
  left: auto;
  right: 0;
}

html[data-theme="light"][dir="ltr"] body{
  color: #0f172a;
  background: radial-gradient(circle at 12% -8%,rgba(98,212,255,.22),transparent 34rem),radial-gradient(circle at 90% 8%,rgba(159,123,255,.17),transparent 36rem),#f6f9fd;
}

html[data-theme="light"] .site-header{
  background: rgba(248,251,255,.92);
  border-bottom-color: rgba(15,23,42,.10);
  box-shadow: 0 10px 36px rgba(15,23,42,.05);
}

html[data-theme="light"] h1,
html[data-theme="light"] h2,
html[data-theme="light"] h3,
html[data-theme="light"] .brand strong,
html[data-theme="light"] .feature-card h3,
html[data-theme="light"] .idea-card strong{
  color: #0f172a;
}

html[data-theme="light"] .lead,
html[data-theme="light"] .section-head p,
html[data-theme="light"] .split p,
html[data-theme="light"] .contact-card p,
html[data-theme="light"] .feature-card p,
html[data-theme="light"] .idea-card span,
html[data-theme="light"] .steps span,
html[data-theme="light"] .price-card p:not(.tag),
html[data-theme="light"] .price-card li{
  color: rgba(15,23,42,.70);
}

html[data-theme="light"] .feature-card,
html[data-theme="light"] .idea-card,
html[data-theme="light"] .price-card,
html[data-theme="light"] .steps li,
html[data-theme="light"] .contact-card,
html[data-theme="light"] .trust-strip span{
  border-color: rgba(15,23,42,.10);
  box-shadow: 0 20px 54px rgba(15,23,42,.08);
}

html[data-theme="light"] .price-card,
html[data-theme="light"] .feature-card,
html[data-theme="light"] .idea-card,
html[data-theme="light"] .steps li{
  background: radial-gradient(circle at 92% 0%,rgba(98,212,255,.12),transparent 34%),linear-gradient(180deg,rgba(255,255,255,.97),rgba(245,249,255,.82)) !important;
}

html[data-theme="light"] .price-card:nth-child(2),
html[data-theme="light"] .idea-card:nth-child(2),
html[data-theme="light"] .feature-card:nth-child(2){
  background: radial-gradient(circle at 92% 0%,rgba(159,123,255,.13),transparent 34%),linear-gradient(180deg,rgba(255,255,255,.97),rgba(247,246,255,.82)) !important;
}

html[data-theme="light"] .price-card:nth-child(3),
html[data-theme="light"] .idea-card:nth-child(3),
html[data-theme="light"] .feature-card:nth-child(3){
  background: radial-gradient(circle at 92% 0%,rgba(87,240,177,.13),transparent 34%),linear-gradient(180deg,rgba(255,255,255,.97),rgba(244,252,248,.82)) !important;
}

html[data-theme="light"] .price-card:nth-child(4),
html[data-theme="light"] .idea-card:nth-child(4),
html[data-theme="light"] .feature-card:nth-child(4){
  background: radial-gradient(circle at 92% 0%,rgba(242,189,107,.15),transparent 34%),linear-gradient(180deg,rgba(255,255,255,.97),rgba(255,250,242,.82)) !important;
}

html[data-theme="light"] .price-card h3{
  color: #0f172a;
}

html[data-theme="light"] .price-note{
  color: rgba(15,23,42,.70);
}

html[data-theme="light"] .btn.ghost,html[data-theme="light"] .view-toggle,html[data-theme="light"] .nav-toggle{
  color: #0f172a !important;
}

html[data-theme="light"] .lang-switch{
  border-color: rgba(15,23,42,.12);
  background: rgba(255,255,255,.68);
}

html[data-theme="light"] .lang-switch a[aria-current="page"]{
  background: rgba(15,23,42,.08);
  color: #0f172a;
}

html[data-theme="light"][dir="rtl"] body{
  direction: rtl;
  text-align: right;
  background: radial-gradient(circle at 88% -8%,rgba(98,212,255,.22),transparent 34rem),radial-gradient(circle at 10% 8%,rgba(159,123,255,.17),transparent 36rem),#f6f9fd;
}

@media (max-width:760px){
  :root{
    --shell: calc(100vw - 32px);
  }

  .site-header{
    min-height: 66px;
    align-items: center;
    padding: 10px 16px;
    gap: 10px;
  }

  .brand{
    min-width: 0;
    gap: 10px;
  }

  .brand-mark{
    width: 38px;
    height: 38px;
    border-radius: 14px;
    font-size: .86rem;
  }

  .brand strong{
    font-size: .92rem;
    line-height: 1.1;
  }

  .brand em{
    display: none;
  }

  .nav-toggle{
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 13px;
    font-size: .82rem;
  }

  .mainnav{
    left: 16px;
    right: 16px;
    top: 72px;
    max-height: calc(100vh - 92px);
    overflow: auto;
    padding: 14px;
    border-radius: 22px;
  }

  .mainnav a{
    justify-content: space-between;
    min-height: 42px;
    padding: 10px 12px;
  }

  .lang-switch,.view-controls{
    width: 100%;
    justify-content: space-between;
  }

  .lang-switch a,.view-toggle{
    flex: 1;
    justify-content: center;
  }

  .hero{
    grid-template-columns: 1fr;
    padding-block: 48px 66px;
    gap: 32px;
  }

  .hero-copy h1{
    max-width: none;
    font-size: clamp(2.55rem,13vw,3.6rem);
    line-height: 1.02;
  }

  .lead{
    font-size: .98rem;
    line-height: 1.68;
  }

  .hero-actions .btn,.contact-actions .btn,.ai-actions .btn{
    width: 100%;
  }

  .trust-strip,.feature-grid,.idea-grid,.branch-grid,.price-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-visual{
    min-height: 390px;
  }

  .hero-visual:before{
    inset: 8% 0 0 0;
    transform: none;
    border-radius: 30px;
  }

  .screen-card{
    inset: 12% 0 4% 0;
    border-radius: 26px;
  }

  .screen-content{
    padding: 18px;
  }

  .screen-hero{
    height: 104px;
    border-radius: 20px;
  }

  .screen-grid b{
    height: 66px;
    border-radius: 18px;
  }

  .orbit-card{
    width: min(172px,46vw);
    padding: 12px;
    border-radius: 18px;
  }

  .orbit-card strong{
    font-size: .86rem;
  }

  .orbit-card span{
    font-size: .76rem;
  }

  .card-a{
    left: 0;
    top: 0;
  }

  .card-b{
    right: 0;
    top: 24%;
  }

  .card-c{
    left: 0;
    bottom: 0;
  }

  .section{
    padding-block: 62px;
  }

  h2{
    font-size: clamp(2rem,10vw,2.72rem);
    line-height: 1.07;
  }

  .section-head{
    margin-bottom: 26px;
  }

  .feature-card,.idea-card,.branch-card,.price-card,.contact-card{
    border-radius: 22px;
    padding: 22px;
    min-height: auto;
  }

  .branch-card a,.branch-card span:last-child{
    width: 100%;
    align-self: stretch;
  }

  .price-card{
    min-height: auto;
  }

  .split,.ai-showcase{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .steps li{
    grid-template-columns: 54px 1fr;
    gap: 12px;
    min-height: auto;
    padding: 13px;
    border-radius: 18px;
  }

  .steps strong{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: .78rem;
  }

  .ai-copy h2{
    max-width: none;
    justify-content: center;
    text-align: center;
  }

  .ai-panel{
    border-radius: 24px;
    padding: 22px;
  }

  .ai-actions,.contact-actions{
    flex-direction: column;
  }

  .cookie-banner{
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: calc(100vw - 28px);
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 20px;
  }

  .cookie-actions .btn{
    flex: 1 1 100%;
  }

  html[dir="rtl"] .mainnav{
    left: 16px;
    right: 16px;
    text-align: right;
  }

  html[dir="rtl"] .steps li{
    grid-template-columns: 1fr 54px;
  }

  html[dir="rtl"] .screen-card{
    inset: 12% 0 4% 0;
  }

  html[dir="rtl"] .hero-visual:before{
    inset: 8% 0 0 0;
    transform: none;
  }

  html[dir="rtl"] .card-a{
    right: 0;
    left: auto;
  }

  html[dir="rtl"] .card-b{
    left: 0;
    right: auto;
  }

  html[dir="rtl"] .card-c{
    right: 0;
    left: auto;
  }

}

.price-tax-chip{
  display: inline-flex;
  align-self: flex-start;
  min-height: 32px;
  margin: -4px 0 12px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(248,245,239,.82);
  font-size: .74rem;
  font-weight: 850;
  line-height: 1.25;
}

.tax-logic-card{
  margin: 26px auto 0;
  max-width: 1080px;
  padding: 24px 26px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: radial-gradient(circle at 100% 0%,rgba(242,189,107,.12),transparent 34%),linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.045));
  box-shadow: 0 18px 54px rgba(0,0,0,.16);
}

.tax-logic-card h3{
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.24rem;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.tax-logic-card p{
  margin: 0 0 10px;
  color: rgba(248,245,239,.72);
  line-height: 1.62;
}

.tax-logic-card p:last-child{
  margin-bottom: 0;
}

html[data-theme="light"] .price-tax-chip{
  border-color: rgba(15,23,42,.12);
  background: rgba(15,23,42,.055);
  color: rgba(15,23,42,.74);
}

html[data-theme="light"] .tax-logic-card{
  border-color: rgba(15,23,42,.10);
  background: radial-gradient(circle at 100% 0%,rgba(242,189,107,.15),transparent 34%),linear-gradient(180deg,rgba(255,255,255,.96),rgba(255,250,242,.82));
  box-shadow: 0 18px 54px rgba(15,23,42,.08);
}

html[data-theme="light"] .tax-logic-card h3{
  color: #0f172a;
}

html[data-theme="light"] .tax-logic-card p{
  color: rgba(15,23,42,.70);
}

@media (max-width:760px){
  .price-tax-chip{
    align-self: stretch;
    justify-content: center;
    text-align: center;
  }

  .tax-logic-card{
    padding: 20px;
    border-radius: 20px;
  }

}

.branch-card .tag{
  color: #ffffff !important;
  text-shadow: 0 1px 1px rgba(0,0,0,.14);
}

.branch-card.branch-photo .tag,
.branch-card.branch-gastro .tag,
.branch-card.branch-craft .tag,
.branch-card.branch-realestate .tag,
.branch-card.branch-coaching .tag,
.branch-card.branch-events .tag{
  color: #ffffff !important;
}

html[data-theme="light"] .branch-card .tag{
  color: #ffffff !important;
}

html[dir="rtl"] .branch-card .tag{
  color: #ffffff !important;
}

.product-request-btn{
  cursor: pointer;
  font: inherit;
}

.request-overlay{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.request-overlay[hidden]{
  display: none;
}

.request-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(2,6,14,.72);
}

.request-modal{
  position: relative;
  z-index: 1;
  width: min(980px,100%);
  max-height: min(860px,calc(100vh - 48px));
  overflow: auto;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 30px;
  background: radial-gradient(circle at 100% 0%,rgba(98,212,255,.16),transparent 32%),
    radial-gradient(circle at 0% 100%,rgba(87,240,177,.12),transparent 34%),
    linear-gradient(180deg,rgba(13,25,43,.98),rgba(8,17,31,.98));
  box-shadow: 0 34px 110px rgba(0,0,0,.42);
}

.request-close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.request-modal-head{
  max-width: none;
  margin-bottom: 22px;
}

.request-modal-head h2{
  margin-bottom: 12px;
  font-size: clamp(2rem,3.4vw,3.8rem);
}

.request-modal-head p{
  color: rgba(248,245,239,.74);
  line-height: 1.62;
}

.request-product-summary{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.request-product-summary span{
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(248,245,239,.80);
}

.request-product-summary strong{
  color: #fff;
  margin-left: 6px;
}

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

.request-form label{
  display: grid;
  gap: 7px;
  color: rgba(248,245,239,.90);
  font-weight: 800;
  font-size: .92rem;
}

.request-form input, .request-form select, .request-form textarea{
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 12px 14px;
  font: inherit;
  outline: none;
}

.request-form textarea{
  resize: vertical;
  min-height: 126px;
}

.request-form input:focus, .request-form select:focus, .request-form textarea:focus{
  border-color: rgba(87,240,177,.5);
  box-shadow: 0 0 0 4px rgba(87,240,177,.10);
}

.request-form input::placeholder, .request-form textarea::placeholder{
  color: rgba(248,245,239,.42);
}

.full-field{
  margin-top: 14px;
}

.check-field{
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px !important;
  margin-top: 14px;
}

.check-field input{
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.request-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.request-status{
  margin: 14px 0 0;
  color: rgba(248,245,239,.78);
  font-weight: 800;
}

.request-status.is-success{
  color: var(--green);
}

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

html[data-theme="light"] .request-backdrop{
  background: rgba(15,23,42,.42);
}

html[data-theme="light"] .request-modal{
  border-color: rgba(15,23,42,.12);
  background: radial-gradient(circle at 100% 0%,rgba(98,212,255,.14),transparent 32%),
    radial-gradient(circle at 0% 100%,rgba(87,240,177,.13),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.98),rgba(245,249,255,.98));
  box-shadow: 0 34px 100px rgba(15,23,42,.22);
}

html[data-theme="light"] .request-close{
  border-color: rgba(15,23,42,.12);
  background: rgba(15,23,42,.06);
  color: #0f172a;
}

html[data-theme="light"] .request-modal-head p, html[data-theme="light"] .request-product-summary span{
  color: rgba(15,23,42,.72);
}

html[data-theme="light"] .request-product-summary span,
html[data-theme="light"] .request-form input,
html[data-theme="light"] .request-form select,
html[data-theme="light"] .request-form textarea{
  border-color: rgba(15,23,42,.12);
  background: rgba(255,255,255,.82);
  color: #0f172a;
}

html[data-theme="light"] .request-product-summary strong, html[data-theme="light"] .request-form label{
  color: #0f172a;
}

html[data-theme="light"] .request-form input::placeholder,
html[data-theme="light"] .request-form textarea::placeholder{
  color: rgba(15,23,42,.38);
}

html[dir="rtl"] .request-close{
  right: auto;
  left: 18px;
}

html[dir="rtl"] .request-modal, html[dir="rtl"] .request-modal-head, html[dir="rtl"] .request-form label{
  text-align: right;
}

html[dir="rtl"] .request-product-summary strong{
  margin-left: 0;
  margin-right: 6px;
}

@media (max-width:760px){
  .request-overlay{
    padding: 12px;
    align-items: end;
  }

  .request-modal{
    max-height: calc(100vh - 24px);
    padding: 24px 18px 18px;
    border-radius: 24px;
  }

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

  .request-actions .btn{
    width: 100%;
  }

  .request-product-summary span{
    width: 100%;
    justify-content: center;
  }

}

.tax-logic-grid{
  display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(280px,.65fr);
  gap: 16px;
  max-width: 1120px;
  margin: 28px auto 0;
}

.tax-logic-grid .tax-logic-card{
  margin: 0;
  max-width: none;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.tax-logic-main{
  background: radial-gradient(circle at 96% 0%,rgba(87,240,177,.16),transparent 34%),
    radial-gradient(circle at 0% 100%,rgba(98,212,255,.10),transparent 36%),
    linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.045)) !important;
}

.tax-logic-side{
  background: radial-gradient(circle at 100% 0%,rgba(242,189,107,.16),transparent 34%),
    radial-gradient(circle at 0% 100%,rgba(159,123,255,.10),transparent 36%),
    linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.042)) !important;
}

.tax-card-kicker{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--green);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
}

.tax-logic-grid .tax-logic-card h3{
  margin-bottom: 10px;
}

.tax-logic-grid .tax-logic-card p{
  max-width: 72ch;
}

html[data-theme="light"] .tax-logic-main{
  background: radial-gradient(circle at 96% 0%,rgba(87,240,177,.16),transparent 34%),
    radial-gradient(circle at 0% 100%,rgba(98,212,255,.10),transparent 36%),
    linear-gradient(180deg,rgba(255,255,255,.98),rgba(242,250,255,.82)) !important;
}

html[data-theme="light"] .tax-logic-side{
  background: radial-gradient(circle at 100% 0%,rgba(242,189,107,.18),transparent 34%),
    radial-gradient(circle at 0% 100%,rgba(159,123,255,.10),transparent 36%),
    linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,250,242,.84)) !important;
}

html[data-theme="light"] .tax-card-kicker{
  border-color: rgba(15,23,42,.12);
  background: rgba(15,23,42,.055);
  color: #0f9f7e;
}

html[dir="rtl"] .tax-logic-grid .tax-logic-card{
  text-align: right;
}

@media (max-width:900px){
  .tax-logic-grid{
    grid-template-columns: 1fr;
  }

  .tax-logic-grid .tax-logic-card{
    min-height: auto;
  }

}

@media (max-width:760px){
  .tax-logic-grid{
    gap: 12px;
    margin-top: 22px;
  }

  .tax-card-kicker{
    margin-bottom: 10px;
  }

}

h1,
h2,
h3,
.hero-copy h1,
.section-head h1,
.section-head h2,
.section-head h3,
.ai-copy h1,
.ai-copy h2,
.ai-copy h3,
.contact-card h1,
.contact-card h2,
.contact-card h3,
.request-modal-head h1,
.request-modal-head h2,
.request-modal-head h3{
  max-width: none !important;
}

html[data-theme="light"] h1,
html[data-theme="light"] h2,
html[data-theme="light"] h3,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3{
  max-width: none !important;
}

@media (max-width:760px){
  h1, h2, h3, .hero-copy h1, .section-head h2, .ai-copy h2, .contact-card h2, .request-modal-head h2{
    max-width: none !important;
  }

}

:root{
  --shell: min(1680px,calc(100vw - clamp(40px,5vw,112px)));
}

@media (min-width:1800px){
  :root{
    --shell: min(1760px,calc(100vw - 140px));
  }

}

@media (min-width:2200px){
  :root{
    --shell: min(1880px,calc(100vw - 180px));
  }

}

@media (max-width:980px){
  :root{
    --shell: calc(100vw - 36px);
  }

}

@media (max-width:760px){
  :root{
    --shell: calc(100vw - 28px);
  }

}

.section-head{
  max-width: none;
}

.section-head.wide{
  max-width: none;
}

.section-head p{
  max-width: none;
}

.pricing-section{
  position: relative;
  padding-top: clamp(72px,7vw,128px);
  padding-bottom: clamp(78px,7vw,132px);
}

.pricing-section:before{
  content: "";
  position: absolute;
  inset: 4% auto auto 50%;
  width: min(860px,58vw);
  height: 360px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle at 25% 50%,rgba(98,212,255,.13),transparent 55%),
    radial-gradient(circle at 78% 50%,rgba(87,240,177,.10),transparent 58%);
  filter: blur(8px);
  pointer-events: none;
  opacity: .78;
}

.pricing-section > *{
  position: relative;
  z-index: 1;
}

.pricing-section .section-head{
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr);
  align-items: end;
  column-gap: clamp(34px,5vw,88px);
  margin-bottom: 34px;
}

.pricing-section .section-head .eyebrow{
  grid-column: 1 / -1;
}

.pricing-section .section-head h2{
  margin-bottom: 0;
}

.pricing-section .section-head p{
  margin-bottom: 4px;
  max-width: none;
  font-size: 1.02rem;
}

.price-grid{
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: clamp(18px,1.55vw,28px);
  align-items: stretch;
}

.price-card{
  min-height: 500px;
  padding: clamp(24px,1.65vw,32px);
  border-radius: 30px;
  border-color: rgba(255,255,255,.16);
  background: radial-gradient(circle at 100% 0%,rgba(98,212,255,.15),transparent 34%),
    radial-gradient(circle at 0% 100%,rgba(87,240,177,.08),transparent 38%),
    linear-gradient(180deg,rgba(255,255,255,.105),rgba(255,255,255,.052)) !important;
  box-shadow: 0 24px 74px rgba(0,0,0,.22);
}

.price-card:nth-child(2){
  background: radial-gradient(circle at 100% 0%,rgba(159,123,255,.18),transparent 34%),
    radial-gradient(circle at 0% 100%,rgba(98,212,255,.07),transparent 38%),
    linear-gradient(180deg,rgba(255,255,255,.105),rgba(255,255,255,.052)) !important;
}

.price-card:nth-child(3){
  background: radial-gradient(circle at 100% 0%,rgba(87,240,177,.17),transparent 34%),
    radial-gradient(circle at 0% 100%,rgba(98,212,255,.08),transparent 38%),
    linear-gradient(180deg,rgba(255,255,255,.105),rgba(255,255,255,.052)) !important;
}

.price-card:nth-child(4){
  background: radial-gradient(circle at 100% 0%,rgba(242,189,107,.18),transparent 34%),
    radial-gradient(circle at 0% 100%,rgba(159,123,255,.09),transparent 38%),
    linear-gradient(180deg,rgba(255,255,255,.105),rgba(255,255,255,.052)) !important;
}

.price-card:hover, .price-card:focus-within{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.24);
  box-shadow: 0 34px 92px rgba(0,0,0,.28);
}

.price-card .tag{
  align-self: flex-start;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #07111d !important;
  background: linear-gradient(135deg,var(--blue),var(--green));
  box-shadow: 0 10px 26px rgba(87,240,177,.16);
}

.price-card h3{
  margin-top: 6px;
  margin-bottom: 10px;
  font-size: clamp(1.78rem,1.6vw,2.28rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.price-tax-chip{
  width: 100%;
  min-height: 38px;
  justify-content: flex-start;
  margin: 0 0 16px;
  padding: 8px 12px;
  border-radius: 18px;
  font-size: .75rem;
  line-height: 1.25;
  color: rgba(248,245,239,.86);
  background: linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.06));
}

.price-card p:not(.tag){
  margin-bottom: 18px;
  font-size: .96rem;
  line-height: 1.62;
}

.price-card ul{
  gap: 11px;
  margin-top: auto;
  margin-bottom: 24px;
}

.price-card li{
  font-size: .94rem;
  line-height: 1.48;
  padding-left: 22px;
}

.price-card li:before{
  top: 0;
}

.price-card .btn{
  width: 100%;
  min-height: 46px;
  border-color: rgba(255,255,255,.20);
  background: linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.055));
}

.price-note{
  max-width: none;
  margin: 28px auto 0;
  padding: 0 20px;
  font-size: .98rem;
  line-height: 1.68;
  color: rgba(248,245,239,.74);
}

.tax-logic-grid{
  max-width: 1280px;
  grid-template-columns: minmax(0,1.45fr) minmax(360px,.75fr);
  gap: clamp(16px,1.8vw,26px);
  margin-top: 30px;
}

.tax-logic-grid .tax-logic-card{
  min-height: 210px;
  padding: 28px 30px;
  border-radius: 28px;
  border-color: rgba(255,255,255,.16);
}

.tax-logic-main{
  background: radial-gradient(circle at 88% 6%,rgba(87,240,177,.17),transparent 36%),
    radial-gradient(circle at 2% 100%,rgba(98,212,255,.12),transparent 42%),
    linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.048)) !important;
}

.tax-logic-side{
  background: radial-gradient(circle at 100% 0%,rgba(242,189,107,.18),transparent 36%),
    radial-gradient(circle at 0% 100%,rgba(159,123,255,.12),transparent 42%),
    linear-gradient(180deg,rgba(255,255,255,.095),rgba(255,255,255,.046)) !important;
}

.tax-logic-grid .tax-logic-card h3{
  font-size: 1.35rem;
  line-height: 1.16;
}

.tax-logic-grid .tax-logic-card p{
  font-size: .98rem;
  line-height: 1.68;
}

html[data-theme="light"] .pricing-section:before{
  background: radial-gradient(circle at 25% 50%,rgba(98,212,255,.18),transparent 55%),
    radial-gradient(circle at 78% 50%,rgba(87,240,177,.16),transparent 58%);
  opacity: .92;
}

html[data-theme="light"] .price-card{
  border-color: rgba(15,23,42,.10);
  box-shadow: 0 22px 62px rgba(15,23,42,.09);
}

html[data-theme="light"] .price-card:hover, html[data-theme="light"] .price-card:focus-within{
  box-shadow: 0 34px 86px rgba(15,23,42,.13);
}

html[data-theme="light"] .price-tax-chip{
  color: rgba(15,23,42,.75);
  background: rgba(15,23,42,.055);
  border-color: rgba(15,23,42,.10);
}

html[data-theme="light"] .price-note{
  color: rgba(15,23,42,.72);
}

html[data-theme="light"] .tax-logic-grid .tax-logic-card{
  border-color: rgba(15,23,42,.10);
  box-shadow: 0 22px 62px rgba(15,23,42,.08);
}

html[dir="rtl"] .pricing-section .section-head{
  direction: rtl;
}

html[dir="rtl"] .price-tax-chip{
  justify-content: flex-end;
}

html[dir="rtl"] .price-card li{
  padding-left: 0;
  padding-right: 22px;
}

html[dir="rtl"] .price-card li:before{
  left: auto;
  right: 0;
}

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

  .price-card{
    min-height: 455px;
  }

  .pricing-section .section-head{
    grid-template-columns: 1fr;
    gap: 16px;
  }

}

@media (min-width:1321px) and (max-width:1520px){
  .price-card{
    min-height: 525px;
    padding: 24px;
  }

  .price-card h3{
    font-size: 1.82rem;
  }

  .price-card li{
    font-size: .90rem;
  }

}

@media (min-width:1521px){
  .price-grid{
    grid-template-columns: repeat(4,minmax(0,1fr));
  }

}

@media (min-width:1850px){
  .price-card{
    min-height: 470px;
  }

  .price-grid{
    gap: 32px;
  }

}

@media (max-width:980px){
  .tax-logic-grid{
    grid-template-columns: 1fr;
  }

  .tax-logic-grid .tax-logic-card{
    min-height: auto;
  }

}

@media (max-width:760px){
  .pricing-section{
    padding-top: 64px;
    padding-bottom: 66px;
  }

  .pricing-section .section-head{
    display: block;
    margin-bottom: 24px;
  }

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

  .price-card{
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .price-card h3{
    font-size: clamp(1.65rem,8vw,2.2rem);
  }

  .price-tax-chip{
    text-align: center;
    justify-content: center;
  }

  .price-note{
    padding: 0;
    text-align: left;
  }

  html[dir="rtl"] .price-note{
    text-align: right;
  }

  .tax-logic-grid{
    gap: 12px;
    margin-top: 22px;
  }

  .tax-logic-grid .tax-logic-card{
    padding: 20px;
    border-radius: 20px;
  }

}

.section{
  padding-block: clamp(58px,5.4vw,104px) !important;
}

.hero{
  padding-block: clamp(56px,6.4vw,112px) clamp(54px,5.6vw,96px) !important;
  min-height: auto !important;
}

.section-head{
  margin-bottom: clamp(24px,2.5vw,36px) !important;
}

.section-head.wide{
  margin-bottom: clamp(24px,2.6vw,38px) !important;
}

.pricing-section{
  padding-top: clamp(54px,5.3vw,96px) !important;
  padding-bottom: clamp(56px,5.5vw,98px) !important;
}

.pricing-section .section-head{
  margin-bottom: clamp(24px,2.4vw,34px) !important;
}

.branch-section{
  padding-block: clamp(58px,5.5vw,100px) !important;
}

.ideas-section{
  padding-block: clamp(54px,5.2vw,96px) !important;
}

.ai-band{
  padding-block: clamp(58px,5.6vw,104px) !important;
}

.contact-section{
  padding-top: clamp(58px,5.4vw,98px) !important;
  padding-bottom: clamp(68px,6vw,112px) !important;
}

.demo-band{
  padding-block: clamp(58px,5.6vw,104px) !important;
}

.price-note{
  margin-top: clamp(18px,1.8vw,26px) !important;
}

.tax-logic-grid{
  margin-top: clamp(20px,2vw,28px) !important;
}

.idea-load-row{
  margin-top: clamp(20px,2vw,28px) !important;
}

.feature-grid, .idea-grid, .branch-grid, .price-grid{
  row-gap: clamp(14px,1.6vw,24px);
}

.split{
  gap: clamp(26px,4.6vw,72px) !important;
}

.ai-showcase{
  gap: clamp(26px,4vw,48px) !important;
}

@media (max-width:760px){
  .section{
    padding-block: 50px !important;
  }

  .hero{
    padding-block: 42px 54px !important;
  }

  .section-head, .section-head.wide{
    margin-bottom: 22px !important;
  }

  .pricing-section, .branch-section, .ideas-section, .ai-band, .demo-band{
    padding-block: 50px !important;
  }

  .contact-section{
    padding-top: 50px !important;
    padding-bottom: 62px !important;
  }

  .price-note{
    margin-top: 18px !important;
  }

  .tax-logic-grid{
    margin-top: 18px !important;
  }

  .idea-load-row{
    margin-top: 18px !important;
  }

}

h1,
h2,
h3,
h4,
.hero-copy h1,
.hero-copy h2,
.section-head,
.section-head.wide,
.section-head h1,
.section-head h2,
.section-head h3,
.section-head p,
.pricing-section .section-head,
.pricing-section .section-head h2,
.pricing-section .section-head p,
.ai-copy,
.ai-copy h1,
.ai-copy h2,
.ai-copy h3,
.ai-copy p,
.contact-card h1,
.contact-card h2,
.contact-card h3,
.request-modal-head,
.request-modal-head h1,
.request-modal-head h2,
.request-modal-head h3,
.request-modal-head p{
  max-width: none !important;
}

.section-head, .section-head.wide, .pricing-section .section-head, .ai-copy, .request-modal-head{
  width: 100% !important;
}

h2, .section-head h2, .pricing-section .section-head h2, .ai-copy h2, .contact-card h2, .request-modal-head h2{
  width: 100% !important;
  max-width: none !important;
}

@media (max-width:760px){
  h1,
  h2,
  h3,
  .hero-copy h1,
  .section-head,
  .section-head.wide,
  .section-head h2,
  .pricing-section .section-head,
  .pricing-section .section-head h2,
  .ai-copy,
  .ai-copy h2,
  .contact-card h2,
  .request-modal-head,
  .request-modal-head h2{
    width: 100% !important;
    max-width: none !important;
  }

}

.price-note{
  max-width: none !important;
  width: 100% !important;
}

.price-card .tag{
  min-height: 36px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: flex-start !important;
  padding: 8px 16px !important;
  line-height: 1 !important;
  letter-spacing: .035em !important;
  font-size: .92rem !important;
  white-space: nowrap !important;
  border-radius: 999px !important;
}

.price-tax-chip{
  min-height: auto !important;
  display: block !important;
  width: 100% !important;
  margin: 0 0 14px !important;
  padding: 9px 14px !important;
  border-radius: 16px !important;
  line-height: 1.22 !important;
  letter-spacing: 0 !important;
  font-size: .78rem !important;
  font-weight: 700 !important;
  text-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  color: rgba(248,245,239,.92) !important;
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
}

.price-tax-chip *{
  text-shadow: none !important;
  filter: none !important;
}

html[data-theme="light"] .price-tax-chip{
  color: rgba(15,23,42,.82) !important;
  background: rgba(15,23,42,.045) !important;
  border-color: rgba(15,23,42,.10) !important;
  box-shadow: none !important;
}

.price-card h3{
  margin-bottom: 12px !important;
}

.price-card p:not(.tag){
  font-weight: 430 !important;
}

.price-card ul li{
  font-weight: 430 !important;
}

body{
  font-weight: 400 !important;
}

p,
li,
label,
input,
select,
textarea,
small,
.price-note,
.tax-logic-grid .tax-logic-card p,
.request-modal-head p,
.request-form label,
.request-status,
.feature-card p,
.idea-card p,
.branch-card p,
.ai-copy p,
.hero-copy p,
.section-head p,
.contact-card p,
footer p,
footer a,
nav a,
.header-meta,
.meta-chip,
.chip,
.btn{
  font-weight: 430 !important;
}

.btn, .meta-chip, .chip{
  text-shadow: none !important;
}

html[dir="rtl"] .price-card .tag{
  align-self: flex-start !important;
}

@media (max-width:760px){
  .price-card .tag{
    font-size: .88rem !important;
    padding: 8px 14px !important;
  }

  .price-tax-chip{
    padding: 8px 12px !important;
    font-size: .76rem !important;
  }

}

.feature-grid{
  align-items: stretch;
}

.feature-grid .feature-card{
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  min-height: 300px;
  border-radius: 30px !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  background: #111827 !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.20) !important;
  transition: transform .22s ease,border-color .22s ease,box-shadow .22s ease !important;
}

.feature-grid .feature-card::before, .feature-grid .feature-card::after{
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 1 !important;
}

.feature-grid .feature-card > *{
  position: relative !important;
  z-index: 1 !important;
}

.feature-grid .feature-card .icon{
  width: 42px !important;
  height: 42px !important;
  color: #62d4ff !important;
  filter: none !important;
}

.feature-grid .feature-card h3{
  color: #ffffff !important;
}

.feature-grid .feature-card p{
  color: rgba(248,245,239,.74) !important;
}

.feature-grid .feature-card:hover, .feature-grid .feature-card:focus-within{
  transform: translateY(-4px) !important;
  border-color: rgba(255,255,255,.24) !important;
  box-shadow: 0 34px 90px rgba(0,0,0,.26) !important;
}

.feature-grid .feature-card.feature-branch{
  background: radial-gradient(circle at 86% 20%, rgba(86,214,255,.28), transparent 34%),
    radial-gradient(circle at 12% 92%, rgba(76,255,191,.16), transparent 38%),
    linear-gradient(135deg, #173653 0%, #132740 48%, #101d31 100%) !important;
  border-color: rgba(112,210,255,.30) !important;
}

.feature-grid .feature-card.feature-branch::before{
  background: linear-gradient(135deg, rgba(98,212,255,.12), transparent 42%, rgba(87,240,177,.06)) !important;
}

.feature-grid .feature-card.feature-branch .icon{
  color: #63d9ff !important;
}

.feature-grid .feature-card.feature-tools{
  background: radial-gradient(circle at 82% 18%, rgba(157,130,255,.30), transparent 35%),
    radial-gradient(circle at 12% 88%, rgba(89,184,255,.13), transparent 38%),
    linear-gradient(135deg, #1b3354 0%, #252b61 52%, #171f42 100%) !important;
  border-color: rgba(157,130,255,.30) !important;
}

.feature-grid .feature-card.feature-tools::before{
  background: linear-gradient(135deg, rgba(159,123,255,.13), transparent 46%, rgba(98,212,255,.05)) !important;
}

.feature-grid .feature-card.feature-tools .icon{
  color: #6edcff !important;
}

.feature-grid .feature-card.feature-content{
  background: radial-gradient(circle at 85% 18%, rgba(68,228,198,.26), transparent 34%),
    radial-gradient(circle at 15% 90%, rgba(91,196,255,.14), transparent 40%),
    linear-gradient(135deg, #163651 0%, #143047 50%, #102337 100%) !important;
  border-color: rgba(94,226,203,.28) !important;
}

.feature-grid .feature-card.feature-content::before{
  background: linear-gradient(135deg, rgba(87,240,177,.11), transparent 46%, rgba(98,212,255,.05)) !important;
}

.feature-grid .feature-card.feature-content .icon{
  color: #57f0d1 !important;
}

.feature-grid .feature-card.feature-deploy{
  background: radial-gradient(circle at 82% 18%, rgba(92,138,255,.24), transparent 36%),
    radial-gradient(circle at 18% 88%, rgba(242,189,107,.13), transparent 40%),
    linear-gradient(135deg, #23334d 0%, #1d2840 52%, #151d31 100%) !important;
  border-color: rgba(118,153,255,.25) !important;
}

.feature-grid .feature-card.feature-deploy::before{
  background: linear-gradient(135deg, rgba(98,212,255,.08), transparent 48%, rgba(242,189,107,.06)) !important;
}

.feature-grid .feature-card.feature-deploy .icon{
  color: #69d9ff !important;
}

html[data-theme="light"] .feature-grid .feature-card{
  box-shadow: 0 22px 58px rgba(15,23,42,.10) !important;
}

html[data-theme="light"] .feature-grid .feature-card h3{
  color: #0f172a !important;
}

html[data-theme="light"] .feature-grid .feature-card p{
  color: rgba(15,23,42,.70) !important;
}

html[data-theme="light"] .feature-grid .feature-card.feature-branch{
  background: radial-gradient(circle at 86% 20%, rgba(86,214,255,.22), transparent 34%),
    radial-gradient(circle at 12% 92%, rgba(76,255,191,.14), transparent 38%),
    linear-gradient(135deg, #f4fbff 0%, #eaf5ff 52%, #edf9f6 100%) !important;
  border-color: rgba(102,185,225,.24) !important;
}

html[data-theme="light"] .feature-grid .feature-card.feature-tools{
  background: radial-gradient(circle at 82% 18%, rgba(157,130,255,.20), transparent 35%),
    radial-gradient(circle at 12% 88%, rgba(89,184,255,.12), transparent 38%),
    linear-gradient(135deg, #fafbff 0%, #f0f1ff 52%, #eef3ff 100%) !important;
  border-color: rgba(138,130,235,.22) !important;
}

html[data-theme="light"] .feature-grid .feature-card.feature-content{
  background: radial-gradient(circle at 85% 18%, rgba(68,228,198,.20), transparent 34%),
    radial-gradient(circle at 15% 90%, rgba(91,196,255,.12), transparent 40%),
    linear-gradient(135deg, #f5fdfb 0%, #eaf8f5 52%, #edf9f9 100%) !important;
  border-color: rgba(88,194,175,.22) !important;
}

html[data-theme="light"] .feature-grid .feature-card.feature-deploy{
  background: radial-gradient(circle at 82% 18%, rgba(92,138,255,.18), transparent 36%),
    radial-gradient(circle at 18% 88%, rgba(242,189,107,.12), transparent 40%),
    linear-gradient(135deg, #f8faff 0%, #eff3fb 52%, #f8f2e8 100%) !important;
  border-color: rgba(126,145,205,.22) !important;
}

html[dir="rtl"] .feature-grid .feature-card{
  text-align: right !important;
}

@media (max-width:760px){
  .feature-grid .feature-card{
    min-height: auto !important;
    border-radius: 24px !important;
  }

}

.process-section{
  position: relative;
}

.process-layout{
  display: grid;
  grid-template-columns: minmax(0,.88fr) minmax(520px,1.12fr);
  gap: clamp(32px,5vw,84px);
  align-items: start;
}

.process-copy{
  max-width: none;
}

.process-copy h2{
  margin-bottom: 18px;
}

.process-lead{
  margin: 0 0 24px;
  color: rgba(248,245,239,.78);
  font-size: clamp(1rem,1.1vw,1.18rem);
  line-height: 1.74;
}

.process-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.process-pills span{
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(248,245,239,.86);
  font-size: .9rem;
  font-weight: 700;
}

.process-note{
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: radial-gradient(circle at 100% 0%,rgba(98,212,255,.10),transparent 34%),
    radial-gradient(circle at 0% 100%,rgba(87,240,177,.08),transparent 38%),
    linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.045));
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
}

.process-note strong{
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.process-note p{
  margin: 0;
  color: rgba(248,245,239,.72);
  line-height: 1.68;
}

.process-steps{
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps .step-card{
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: start;
  gap: 16px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}

.process-steps .step-card strong{
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #08111f;
  font-weight: 900;
  letter-spacing: -.02em;
  background: linear-gradient(135deg,var(--gold),var(--green));
}

.process-steps .step-body{
  display: block;
  padding-top: 4px;
}

.process-steps .step-body span{
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.06rem;
  font-weight: 760;
  line-height: 1.32;
}

.process-steps .step-body small{
  display: block;
  color: rgba(248,245,239,.72);
  font-size: .95rem;
  line-height: 1.62;
}

.process-steps .step-branch{
  background: radial-gradient(circle at 100% 0%,rgba(98,212,255,.12),transparent 34%),
    linear-gradient(135deg,rgba(24,40,61,.95),rgba(18,29,47,.96));
}

.process-steps .step-scope{
  background: radial-gradient(circle at 100% 0%,rgba(159,123,255,.15),transparent 34%),
    linear-gradient(135deg,rgba(25,38,59,.95),rgba(22,27,55,.96));
}

.process-steps .step-content{
  background: radial-gradient(circle at 100% 0%,rgba(87,240,177,.13),transparent 34%),
    linear-gradient(135deg,rgba(22,39,57,.95),rgba(18,31,46,.96));
}

.process-steps .step-launch{
  background: radial-gradient(circle at 100% 0%,rgba(242,189,107,.12),transparent 34%),
    linear-gradient(135deg,rgba(27,39,57,.95),rgba(22,29,43,.96));
}

html[data-theme="light"] .process-lead,
html[data-theme="light"] .process-note p,
html[data-theme="light"] .process-steps .step-body small{
  color: rgba(15,23,42,.72) !important;
}

html[data-theme="light"] .process-pills span{
  color: rgba(15,23,42,.82);
  background: rgba(15,23,42,.045);
  border-color: rgba(15,23,42,.10);
}

html[data-theme="light"] .process-note{
  border-color: rgba(15,23,42,.10);
  background: radial-gradient(circle at 100% 0%,rgba(98,212,255,.12),transparent 34%),
    radial-gradient(circle at 0% 100%,rgba(87,240,177,.10),transparent 38%),
    linear-gradient(180deg,rgba(255,255,255,.98),rgba(242,249,255,.88));
  box-shadow: 0 18px 46px rgba(15,23,42,.08);
}

html[data-theme="light"] .process-note strong, html[data-theme="light"] .process-steps .step-body span{
  color: #0f172a !important;
}

html[data-theme="light"] .process-steps .step-card{
  border-color: rgba(15,23,42,.10);
  box-shadow: 0 18px 48px rgba(15,23,42,.08);
}

html[data-theme="light"] .process-steps .step-branch{
  background: radial-gradient(circle at 100% 0%,rgba(98,212,255,.15),transparent 34%),linear-gradient(135deg,rgba(247,251,255,.98),rgba(236,245,255,.96));
}

html[data-theme="light"] .process-steps .step-scope{
  background: radial-gradient(circle at 100% 0%,rgba(159,123,255,.15),transparent 34%),linear-gradient(135deg,rgba(250,250,255,.98),rgba(240,242,255,.96));
}

html[data-theme="light"] .process-steps .step-content{
  background: radial-gradient(circle at 100% 0%,rgba(87,240,177,.14),transparent 34%),linear-gradient(135deg,rgba(246,253,251,.98),rgba(236,247,244,.96));
}

html[data-theme="light"] .process-steps .step-launch{
  background: radial-gradient(circle at 100% 0%,rgba(242,189,107,.14),transparent 34%),linear-gradient(135deg,rgba(255,251,246,.98),rgba(248,244,238,.96));
}

html[dir="rtl"] .process-layout{
  direction: rtl;
}

html[dir="rtl"] .process-copy, html[dir="rtl"] .process-steps .step-card, html[dir="rtl"] .process-note{
  text-align: right;
}

html[dir="rtl"] .process-steps .step-card{
  grid-template-columns: 1fr 72px;
}

html[dir="rtl"] .process-steps .step-card strong{
  order: 2;
}

html[dir="rtl"] .process-steps .step-body{
  order: 1;
}

@media (max-width:1120px){
  .process-layout{
    grid-template-columns: 1fr;
    gap: 28px;
  }

}

@media (max-width:760px){
  .process-section{
    padding-block: 50px !important;
  }

  .process-layout{
    gap: 24px;
  }

  .process-lead{
    margin-bottom: 18px;
  }

  .process-pills{
    gap: 8px;
    margin-bottom: 18px;
  }

  .process-pills span{
    min-height: 38px;
    padding: 0 12px;
    font-size: .84rem;
  }

  .process-note{
    padding: 17px 18px;
    border-radius: 20px;
  }

  .process-steps{
    gap: 12px;
  }

  .process-steps .step-card{
    grid-template-columns: 56px 1fr;
    gap: 12px;
    min-height: auto;
    padding: 14px;
    border-radius: 20px;
  }

  .process-steps .step-card strong{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: .82rem;
  }

  .process-steps .step-body span{
    font-size: .98rem;
  }

  .process-steps .step-body small{
    font-size: .9rem;
    line-height: 1.54;
  }

  html[dir="rtl"] .process-steps .step-card{
    grid-template-columns: 1fr 56px;
  }

}

.request-overlay{
  isolation: isolate;
}

.request-backdrop{
  background: radial-gradient(circle at 50% 18%,rgba(98,212,255,.10),transparent 34%),
    rgba(2,6,14,.58) !important;
  backdrop-filter: blur(14px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.08) !important;
}

html[data-theme="light"] .request-backdrop{
  background: radial-gradient(circle at 50% 18%,rgba(98,212,255,.12),transparent 34%),
    rgba(248,251,255,.56) !important;
  backdrop-filter: blur(14px) saturate(1.06) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.06) !important;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))){
  .request-backdrop{
    background: rgba(2,6,14,.72) !important;
  }

  html[data-theme="light"] .request-backdrop{
    background: rgba(248,251,255,.72) !important;
  }

}

@media (max-width:760px){
  .request-backdrop{
    backdrop-filter: blur(10px) saturate(1.06) !important;
    -webkit-backdrop-filter: blur(10px) saturate(1.06) !important;
  }

}

.request-modal{
  scrollbar-width: thin;
  scrollbar-color: rgba(98,212,255,.42) rgba(255,255,255,.055);
  scroll-behavior: smooth;
}

.request-modal::-webkit-scrollbar{
  width: 10px;
}

.request-modal::-webkit-scrollbar-track{
  margin-block: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.045);
}

.request-modal::-webkit-scrollbar-thumb{
  border: 2px solid transparent;
  border-radius: 999px;
  background: linear-gradient(180deg,rgba(98,212,255,.72),rgba(87,240,177,.58))
    padding-box;
}

.request-modal::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(180deg,rgba(98,212,255,.92),rgba(87,240,177,.78))
    padding-box;
}

html[data-theme="light"] .request-modal{
  scrollbar-color: rgba(15,23,42,.28) rgba(15,23,42,.055);
}

html[data-theme="light"] .request-modal::-webkit-scrollbar-track{
  background: rgba(15,23,42,.055);
}

html[data-theme="light"] .request-modal::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg,rgba(98,212,255,.58),rgba(87,240,177,.46))
    padding-box;
}

html[data-theme="light"] .request-modal::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(180deg,rgba(98,212,255,.78),rgba(87,240,177,.62))
    padding-box;
}

@media (max-width:760px){
  .request-modal::-webkit-scrollbar{
    width: 8px;
  }

  .request-modal::-webkit-scrollbar-track{
    margin-block: 18px;
  }

}

.brand-logo-link{
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
}

.brand-logo{
  display: block;
  width: auto;
  height: 42px;
  max-width: min(260px,36vw);
  object-fit: contain;
  filter: none;
}

html[data-theme="light"] .brand-logo{
  filter: invert(1) contrast(1.08);
}

.brand-logo-link:hover .brand-logo{
  opacity: .94;
}

@media (max-width:760px){
  .brand-logo{
    height: 34px;
    max-width: min(210px,58vw);
  }

  .site-header{
    gap: 10px;
  }

}

@media (max-width:420px){
  .brand-logo{
    height: 30px;
    max-width: 172px;
  }

}

.brand-logo{
  height: 34px !important;
  max-width: min(220px,30vw) !important;
}

@media (max-width:760px){
  .brand-logo{
    height: 28px !important;
    max-width: min(170px,48vw) !important;
  }

}

@media (max-width:420px){
  .brand-logo{
    height: 25px !important;
    max-width: 150px !important;
  }

}

.brand-logo{
  height: 36px !important;
  max-width: min(232px,31vw) !important;
}

@media (max-width:760px){
  .brand-logo{
    height: 30px !important;
    max-width: min(182px,50vw) !important;
  }

}

@media (max-width:420px){
  .brand-logo{
    height: 27px !important;
    max-width: 158px !important;
  }

}

.brand-logo{
  height: 40px !important;
  max-width: min(255px,33vw) !important;
}

@media (max-width:760px){
  .brand-logo{
    height: 33px !important;
    max-width: min(198px,53vw) !important;
  }

}

@media (max-width:420px){
  .brand-logo{
    height: 29px !important;
    max-width: 172px !important;
  }

}

.branch-grid-expanded{
  grid-template-columns: repeat(4,minmax(0,1fr)) !important;
  gap: clamp(16px,1.55vw,24px) !important;
}

.branch-grid-expanded .branch-card{
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.branch-grid-expanded .branch-card a{
  margin-top: auto;
  align-self: flex-start;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #08111f !important;
  background: linear-gradient(135deg,var(--blue),var(--green));
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(87,240,177,.14);
}

.branch-grid-expanded .branch-card.branch-fotografie{
  background: linear-gradient(180deg,rgba(98,212,255,.17),rgba(87,240,177,.09)),rgba(255,255,255,.08);
  border-color: rgba(98,212,255,.30);
}

.branch-grid-expanded .branch-card.branch-gastro{
  background: radial-gradient(circle at 90% 8%,rgba(242,189,107,.22),transparent 35%),linear-gradient(135deg,rgba(95,47,17,.78),rgba(45,31,22,.92));
  border-color: rgba(242,189,107,.24);
}

.branch-grid-expanded .branch-card.branch-handwerk{
  background: radial-gradient(circle at 90% 8%,rgba(92,138,255,.22),transparent 35%),linear-gradient(135deg,rgba(20,54,96,.82),rgba(18,32,54,.94));
  border-color: rgba(92,138,255,.24);
}

.branch-grid-expanded .branch-card.branch-immobilien{
  background: radial-gradient(circle at 90% 8%,rgba(87,240,177,.18),transparent 36%),linear-gradient(135deg,rgba(17,80,67,.78),rgba(15,45,46,.94));
  border-color: rgba(87,240,177,.22);
}

.branch-grid-expanded .branch-card.branch-coaching{
  background: radial-gradient(circle at 90% 8%,rgba(159,123,255,.22),transparent 36%),linear-gradient(135deg,rgba(63,39,116,.82),rgba(34,27,70,.94));
  border-color: rgba(159,123,255,.24);
}

.branch-grid-expanded .branch-card.branch-events{
  background: radial-gradient(circle at 90% 8%,rgba(255,78,151,.22),transparent 36%),linear-gradient(135deg,rgba(117,35,74,.82),rgba(57,25,50,.94));
  border-color: rgba(255,78,151,.22);
}

.branch-grid-expanded .branch-card.branch-b2bservices{
  background: radial-gradient(circle at 90% 8%,rgba(98,212,255,.18),transparent 36%),linear-gradient(135deg,rgba(26,49,70,.82),rgba(17,29,48,.94));
  border-color: rgba(98,212,255,.22);
}

.branch-grid-expanded .branch-card.branch-beauty{
  background: radial-gradient(circle at 90% 8%,rgba(255,145,191,.20),transparent 36%),linear-gradient(135deg,rgba(91,39,77,.82),rgba(45,28,51,.94));
  border-color: rgba(255,145,191,.22);
}

.branch-grid-expanded .branch-card.branch-kanzlei{
  background: radial-gradient(circle at 90% 8%,rgba(242,189,107,.18),transparent 36%),linear-gradient(135deg,rgba(62,52,38,.82),rgba(33,31,34,.94));
  border-color: rgba(242,189,107,.20);
}

.branch-grid-expanded .branch-card.branch-saas{
  background: radial-gradient(circle at 90% 8%,rgba(87,240,177,.17),transparent 36%),linear-gradient(135deg,rgba(19,65,80,.82),rgba(14,35,55,.94));
  border-color: rgba(87,240,177,.22);
}

.branch-grid-expanded .branch-card.branch-shop{
  background: radial-gradient(circle at 90% 8%,rgba(98,212,255,.18),transparent 36%),linear-gradient(135deg,rgba(20,56,72,.82),rgba(14,30,48,.94));
  border-color: rgba(98,212,255,.22);
}

.branch-grid-expanded .branch-card.branch-auto{
  background: radial-gradient(circle at 90% 8%,rgba(92,138,255,.18),transparent 36%),linear-gradient(135deg,rgba(34,47,72,.82),rgba(19,28,44,.94));
  border-color: rgba(92,138,255,.22);
}

.seo-geo-section{
  position: relative;
  border-block: 1px solid rgba(255,255,255,.08);
}

.seo-geo-layout{
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(520px,1.1fr);
  gap: clamp(28px,5vw,76px);
  align-items: start;
}

.seo-geo-copy{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.seo-geo-copy h2, .seo-geo-copy p{
  margin: 0;
}

.seo-geo-mini-grid{
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 12px;
  margin-top: 6px;
}

.seo-geo-mini-item{
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035));
  box-shadow: 0 18px 46px rgba(0,0,0,.12);
}

.seo-geo-mini-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 20%,rgba(87,240,177,.28),transparent 55%),rgba(10,18,36,.48);
  color: #f8f5ef;
  flex: 0 0 auto;
}

.seo-geo-mini-item:nth-child(2) .seo-geo-mini-icon{
  background: radial-gradient(circle at 30% 20%,rgba(98,212,255,.28),transparent 55%),rgba(10,18,36,.48);
}

.seo-geo-mini-item:nth-child(3) .seo-geo-mini-icon{
  background: radial-gradient(circle at 30% 20%,rgba(159,123,255,.28),transparent 55%),rgba(10,18,36,.48);
}

.seo-geo-mini-item:nth-child(4) .seo-geo-mini-icon{
  background: radial-gradient(circle at 30% 20%,rgba(242,189,107,.28),transparent 55%),rgba(10,18,36,.48);
}

.seo-geo-mini-item:nth-child(5) .seo-geo-mini-icon{
  background: radial-gradient(circle at 30% 20%,rgba(255,145,191,.28),transparent 55%),rgba(10,18,36,.48);
}

.seo-geo-mini-item:nth-child(6) .seo-geo-mini-icon{
  background: radial-gradient(circle at 30% 20%,rgba(92,138,255,.28),transparent 55%),rgba(10,18,36,.48);
}

.seo-geo-mini-icon svg{
  width: 19px;
  height: 19px;
}

.seo-geo-mini-label{
  color: rgba(248,245,239,.88);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.35;
  text-wrap: balance;
}

.seo-geo-copy p:not(.eyebrow){
  color: rgba(248,245,239,.76);
  font-size: clamp(1rem,1.1vw,1.16rem);
  line-height: 1.72;
}

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

.seo-geo-card{
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 26px;
  background: radial-gradient(circle at 100% 0%,rgba(98,212,255,.13),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.045));
  box-shadow: 0 22px 62px rgba(0,0,0,.16);
}

.seo-geo-card:nth-child(2){
  background: radial-gradient(circle at 100% 0%,rgba(87,240,177,.13),transparent 34%),linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.045));
}

.seo-geo-card:nth-child(3){
  background: radial-gradient(circle at 100% 0%,rgba(159,123,255,.14),transparent 34%),linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.045));
}

.seo-geo-card:nth-child(4){
  background: radial-gradient(circle at 100% 0%,rgba(242,189,107,.14),transparent 34%),linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.045));
}

.seo-geo-card h3{
  color: #fff;
}

.seo-geo-card p{
  margin: 0;
  color: rgba(248,245,239,.72);
  line-height: 1.62;
}

html[data-theme="light"] .branch-grid-expanded .branch-card{
  color: #0f172a;
}

html[data-theme="light"] .seo-geo-card{
  border-color: rgba(15,23,42,.10);
  background: radial-gradient(circle at 100% 0%,rgba(98,212,255,.15),transparent 34%),linear-gradient(180deg,rgba(255,255,255,.98),rgba(242,249,255,.86));
  box-shadow: 0 20px 52px rgba(15,23,42,.08);
}

html[data-theme="light"] .seo-geo-card h3{
  color: #0f172a;
}

html[data-theme="light"] .seo-geo-copy p:not(.eyebrow), html[data-theme="light"] .seo-geo-card p{
  color: rgba(15,23,42,.72);
}

html[data-theme="light"] .seo-geo-mini-item{
  border-color: rgba(15,23,42,.10);
  background: linear-gradient(180deg,rgba(255,255,255,.98),rgba(242,249,255,.9));
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
}

html[data-theme="light"] .seo-geo-mini-icon{
  color: #0f172a;
  background: radial-gradient(circle at 30% 20%,rgba(87,240,177,.25),transparent 55%),rgba(228,240,255,.82);
}

html[data-theme="light"] .seo-geo-mini-label{
  color: rgba(15,23,42,.82);
}

html[dir="rtl"] .seo-geo-layout{
  direction: rtl;
}

html[dir="rtl"] .seo-geo-copy,
html[dir="rtl"] .seo-geo-card,
html[dir="rtl"] .branch-grid-expanded .branch-card{
  text-align: right;
}

html[dir="rtl"] .seo-geo-mini-item{
  flex-direction: row-reverse;
}

@media (max-width:1320px){
  .branch-grid-expanded{
    grid-template-columns: repeat(3,minmax(0,1fr)) !important;
  }

}

@media (max-width:980px){
  .branch-grid-expanded{
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  }

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

}

@media (max-width:980px){
  .seo-geo-mini-grid{
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

}

@media (max-width:760px){
  .branch-grid-expanded, .seo-geo-grid{
    grid-template-columns: 1fr !important;
  }

  .branch-grid-expanded .branch-card, .seo-geo-card{
    min-height: auto;
  }

}

@media (max-width:760px){
  .seo-geo-mini-grid{
    grid-template-columns: 1fr;
  }

  .seo-geo-mini-item{
    min-height: auto;
  }

}

.branch-grid-expanded .branch-card a{
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.18);
  background: linear-gradient(135deg,rgba(98,212,255,.88),rgba(87,240,177,.86)) !important;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 14px 34px rgba(87,240,177,.18),
    inset 0 1px 0 rgba(255,255,255,.24);
  transition: transform .18s ease,
    box-shadow .18s ease,
    filter .18s ease,
    border-color .18s ease;
}

.branch-grid-expanded .branch-card a:hover, .branch-grid-expanded .branch-card a:focus-visible{
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.04);
  border-color: rgba(255,255,255,.30);
  box-shadow: 0 20px 44px rgba(87,240,177,.24),
    0 0 0 4px rgba(98,212,255,.08),
    inset 0 1px 0 rgba(255,255,255,.30);
}

.branch-grid-expanded .branch-card a:active{
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(87,240,177,.16),
    inset 0 1px 0 rgba(255,255,255,.22);
}

html[data-theme="light"] .branch-grid-expanded .branch-card a{
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.20);
  background: linear-gradient(135deg,rgba(30,163,218,.92),rgba(25,186,136,.90)) !important;
  border-color: rgba(255,255,255,.54);
  box-shadow: 0 14px 30px rgba(15,23,42,.12),
    inset 0 1px 0 rgba(255,255,255,.30);
}

html[data-theme="light"] .branch-grid-expanded .branch-card a:hover,
html[data-theme="light"] .branch-grid-expanded .branch-card a:focus-visible{
  box-shadow: 0 20px 42px rgba(15,23,42,.16),
    0 0 0 4px rgba(30,163,218,.10),
    inset 0 1px 0 rgba(255,255,255,.34);
}

@media (max-width:760px){
  .branch-grid-expanded .branch-card a{
    min-height: 40px;
    justify-content: center;
  }

}

.ai-copy .chip,
.ai-copy .meta-chip,
.ai-copy .process-pills span,
.ai-copy [class*="chip"],
.ai-copy [class*="pill"]{
  min-height: 38px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  font-size: .9rem !important;
  line-height: 1 !important;
  font-weight: 620 !important;
  letter-spacing: -.005em !important;
  color: rgba(248,245,239,.88) !important;
  background: rgba(255,255,255,.065) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08) !important;
  text-shadow: none !important;
  filter: none !important;
}

.ai-copy .chips, .ai-copy .pill-row, .ai-copy .process-pills, .ai-copy .ai-pills, .ai-copy .meta-row{
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  align-items: center !important;
  margin-top: 22px !important;
}

.ai-copy .chip:hover,
.ai-copy .meta-chip:hover,
.ai-copy [class*="chip"]:hover,
.ai-copy [class*="pill"]:hover{
  transform: translateY(-1px);
  border-color: rgba(98,212,255,.24) !important;
  background: rgba(255,255,255,.085) !important;
}

html[data-theme="light"] .ai-copy .chip,
html[data-theme="light"] .ai-copy .meta-chip,
html[data-theme="light"] .ai-copy .process-pills span,
html[data-theme="light"] .ai-copy [class*="chip"],
html[data-theme="light"] .ai-copy [class*="pill"]{
  color: rgba(15,23,42,.76) !important;
  background: rgba(255,255,255,.76) !important;
  border-color: rgba(15,23,42,.11) !important;
  box-shadow: 0 8px 22px rgba(15,23,42,.055), inset 0 1px 0 rgba(255,255,255,.7) !important;
}

@media (max-width:760px){
  .ai-copy .chips, .ai-copy .pill-row, .ai-copy .process-pills, .ai-copy .ai-pills, .ai-copy .meta-row{
    gap: 8px !important;
    margin-top: 18px !important;
  }

  .ai-copy .chip,
  .ai-copy .meta-chip,
  .ai-copy .process-pills span,
  .ai-copy [class*="chip"],
  .ai-copy [class*="pill"]{
    min-height: 36px !important;
    padding: 0 12px !important;
    font-size: .84rem !important;
    font-weight: 610 !important;
  }

}

.branch-grid-expanded .branch-card .tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: .76rem;
  line-height: 1;
  letter-spacing: .02em;
  font-weight: 700;
  color: rgba(255,255,255,.96) !important;
  background: rgba(10,18,32,.22);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
  text-transform: none;
  white-space: normal;
  max-width: 100%;
}

html[data-theme="light"] .branch-grid-expanded .branch-card .tag{
  color: #ffffff !important;
  background: rgba(15,23,42,.34);
  border-color: rgba(255,255,255,.20);
}

@media (max-width:760px){
  .branch-grid-expanded .branch-card .tag{
    font-size: .72rem;
    min-height: 32px;
    padding: 0 11px;
  }

}

.ai-icon-chips{
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
  max-width: min(740px,100%);
  margin-top: 24px;
}

.ai-icon-chip{
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  background: radial-gradient(circle at 100% 0%,rgba(98,212,255,.09),transparent 34%),
    rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .18s ease,border-color .18s ease,background .18s ease;
}

.ai-icon-chip svg{
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-icon-chip b{
  display: block;
  color: rgba(248,245,239,.86);
  font-size: .92rem;
  line-height: 1.22;
  font-weight: 620;
  letter-spacing: -.01em;
}

.ai-icon-chip:hover{
  border-color: rgba(98,212,255,.22);
  background: radial-gradient(circle at 100% 0%,rgba(98,212,255,.13),transparent 34%),
    rgba(255,255,255,.06);
  transform: translateY(-1px);
}

html[data-theme="light"] .ai-icon-chip{
  border-color: rgba(15,23,42,.10);
  background: radial-gradient(circle at 100% 0%,rgba(98,212,255,.11),transparent 34%),
    rgba(255,255,255,.72);
  box-shadow: 0 8px 24px rgba(15,23,42,.055), inset 0 1px 0 rgba(255,255,255,.75);
}

html[data-theme="light"] .ai-icon-chip b{
  color: rgba(15,23,42,.78);
}

html[data-theme="light"] .ai-icon-chip svg{
  stroke: #0f9f7e;
}

html[dir="rtl"] .ai-icon-chip{
  text-align: right;
}

@media (max-width:760px){
  .ai-icon-chips{
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .ai-icon-chip{
    min-height: 42px;
    padding: 9px 12px;
    border-radius: 14px;
  }

  .ai-icon-chip b{
    font-size: .86rem;
    font-weight: 610;
  }

  .ai-icon-chip svg{
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

}

.referral-section{
  position: relative;
}

.referral-layout{
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(520px,1.05fr);
  gap: clamp(30px,5vw,82px);
  align-items: start;
}

.referral-copy p:not(.eyebrow){
  color: rgba(248,245,239,.76);
  line-height: 1.74;
  font-size: clamp(1rem,1.1vw,1.16rem);
}

.referral-rules{
  margin-top: 26px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 26px;
  background: radial-gradient(circle at 100% 0%,rgba(87,240,177,.11),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.045));
  box-shadow: 0 20px 56px rgba(0,0,0,.16);
}

.referral-rules h3{
  color: #fff;
}

.referral-rules ul{
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.referral-rules li{
  position: relative;
  padding-left: 22px;
  color: rgba(248,245,239,.75);
  line-height: 1.54;
}

.referral-rules li:before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.referral-rules p{
  margin: 0;
  color: rgba(248,245,239,.68);
  font-size: .95rem;
}

.referral-form{
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background: radial-gradient(circle at 100% 0%,rgba(98,212,255,.12),transparent 34%),
    radial-gradient(circle at 0% 100%,rgba(159,123,255,.10),transparent 38%),
    linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.045));
  box-shadow: 0 24px 74px rgba(0,0,0,.20);
}

.referral-form h3{
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.35rem;
}

.referral-form label{
  display: grid;
  gap: 7px;
  color: rgba(248,245,239,.88);
  font-weight: 700;
  font-size: .92rem;
}

.referral-form input, .referral-form select, .referral-form textarea{
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.075);
  color: #fff;
  padding: 12px 14px;
  font: inherit;
  outline: none;
}

.referral-form textarea{
  resize: vertical;
  min-height: 120px;
}

.referral-form input:focus, .referral-form select:focus, .referral-form textarea:focus{
  border-color: rgba(87,240,177,.48);
  box-shadow: 0 0 0 4px rgba(87,240,177,.10);
}

.referral-form .btn{
  margin-top: 18px;
}

.referral-status{
  margin: 14px 0 0;
  font-weight: 760;
}

.referral-status.is-success{
  color: var(--green);
}

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

html[data-theme="light"] .referral-copy p:not(.eyebrow),
html[data-theme="light"] .referral-rules li,
html[data-theme="light"] .referral-rules p{
  color: rgba(15,23,42,.72);
}

html[data-theme="light"] .referral-rules, html[data-theme="light"] .referral-form{
  border-color: rgba(15,23,42,.10);
  background: radial-gradient(circle at 100% 0%,rgba(98,212,255,.12),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.98),rgba(242,249,255,.88));
  box-shadow: 0 20px 56px rgba(15,23,42,.08);
}

html[data-theme="light"] .referral-rules h3,
html[data-theme="light"] .referral-form h3,
html[data-theme="light"] .referral-form label{
  color: #0f172a;
}

html[data-theme="light"] .referral-form input,
html[data-theme="light"] .referral-form select,
html[data-theme="light"] .referral-form textarea{
  border-color: rgba(15,23,42,.11);
  background: rgba(255,255,255,.82);
  color: #0f172a;
}

html[dir="rtl"] .referral-layout{
  direction: rtl;
}

html[dir="rtl"] .referral-copy, html[dir="rtl"] .referral-rules, html[dir="rtl"] .referral-form{
  text-align: right;
}

html[dir="rtl"] .referral-rules li{
  padding-left: 0;
  padding-right: 22px;
}

html[dir="rtl"] .referral-rules li:before{
  left: auto;
  right: 0;
}

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

}

@media (max-width:760px){
  .referral-form, .referral-rules{
    padding: 20px;
    border-radius: 22px;
  }

}

.ai-copy .ai-icon-chips{
  display: grid !important;
  grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  gap: 12px !important;
  width: 100% !important;
  max-width: 760px !important;
  margin-top: 26px !important;
}

.ai-copy .ai-icon-chip{
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-height: 56px !important;
  padding: 14px 16px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,.09) !important;
  background: linear-gradient(135deg,rgba(255,255,255,.065),rgba(255,255,255,.032)) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.10),
    inset 0 1px 0 rgba(255,255,255,.055) !important;
  text-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

.ai-copy .ai-icon-chip::before, .ai-copy .ai-icon-chip::after{
  content: none !important;
  display: none !important;
}

.ai-copy .ai-icon-chip svg{
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 24px !important;
  stroke: var(--green) !important;
  stroke-width: 1.75 !important;
  opacity: .95 !important;
}

.ai-copy .ai-icon-chip b{
  display: block !important;
  color: rgba(248,245,239,.84) !important;
  font-size: .94rem !important;
  line-height: 1.24 !important;
  font-weight: 560 !important;
  letter-spacing: -.012em !important;
  text-shadow: none !important;
  filter: none !important;
}

.ai-copy .ai-icon-chip:hover, .ai-copy .ai-icon-chip:focus-within{
  border-color: rgba(98,212,255,.16) !important;
  background: linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.042)) !important;
  box-shadow: 0 18px 42px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.07) !important;
  transform: translateY(-1px) !important;
}

.ai-copy [class*="chip"], .ai-copy [class*="pill"]{
  text-transform: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html[data-theme="light"] .ai-copy .ai-icon-chip{
  border-color: rgba(15,23,42,.09) !important;
  background: linear-gradient(135deg,rgba(255,255,255,.92),rgba(244,249,255,.72)) !important;
  box-shadow: 0 12px 30px rgba(15,23,42,.06),
    inset 0 1px 0 rgba(255,255,255,.8) !important;
}

html[data-theme="light"] .ai-copy .ai-icon-chip b{
  color: rgba(15,23,42,.76) !important;
}

html[data-theme="light"] .ai-copy .ai-icon-chip svg{
  stroke: #0fa17e !important;
}

html[dir="rtl"] .ai-copy .ai-icon-chip{
  text-align: right !important;
}

@media (max-width:760px){
  .ai-copy .ai-icon-chips{
    grid-template-columns: 1fr !important;
    gap: 9px !important;
    margin-top: 20px !important;
  }

  .ai-copy .ai-icon-chip{
    min-height: 48px !important;
    padding: 12px 14px !important;
    border-radius: 16px !important;
  }

  .ai-copy .ai-icon-chip svg{
    width: 21px !important;
    height: 21px !important;
    flex-basis: 21px !important;
  }

  .ai-copy .ai-icon-chip b{
    font-size: .88rem !important;
    font-weight: 540 !important;
  }

}

.referral-section{
  margin-top: clamp(36px, 5vw, 72px);
  margin-bottom: 0;
}

.referral-layout{
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(600px,1.1fr);
  gap: clamp(28px,4vw,64px);
  align-items: start;
}

.referral-copy .eyebrow{
  margin-bottom: 14px;
}

.referral-copy h2{
  margin-bottom: 20px;
}

.referral-copy > p:not(.eyebrow){
  max-width: none;
  color: rgba(248,245,239,.78);
  line-height: 1.72;
  font-size: clamp(1rem,1.05vw,1.14rem);
}

.referral-rules{
  margin-top: 24px;
  padding: 26px 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: radial-gradient(circle at 100% 0%,rgba(87,240,177,.10),transparent 38%),
    linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.035));
  box-shadow: 0 18px 48px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.referral-rules h3{
  margin: 0 0 14px;
  font-size: 1.18rem;
  color: #fff;
}

.referral-rules ul{
  display: grid;
  gap: 11px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.referral-rules li{
  position: relative;
  padding-left: 24px;
  color: rgba(248,245,239,.76);
  line-height: 1.58;
  font-size: .98rem;
}

.referral-rules li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
}

.referral-rules p{
  margin: 0;
  color: rgba(248,245,239,.68);
  line-height: 1.6;
}

.referral-form--premium{
  position: relative;
  padding: 28px 28px 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background: radial-gradient(circle at 100% 0%,rgba(98,212,255,.12),transparent 34%),
    radial-gradient(circle at 0% 100%,rgba(159,123,255,.10),transparent 38%),
    linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.045));
  box-shadow: 0 24px 74px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.referral-form--premium h3{
  margin: 0 0 18px;
  color: #fff;
  font-size: 1.34rem;
}

.referral-form .form-grid{
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px 12px;
}

.referral-form label{
  display: grid;
  gap: 7px;
  color: rgba(248,245,239,.88);
  font-weight: 650;
  font-size: .92rem;
}

.referral-form label.full{
  grid-column: 1 / -1;
}

.referral-form input, .referral-form select, .referral-form textarea{
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  color: #fff;
  padding: 12px 14px;
  outline: none;
  font: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.referral-form textarea{
  min-height: 112px;
  resize: vertical;
}

.referral-form input::placeholder, .referral-form textarea::placeholder{
  color: rgba(248,245,239,.46);
}

.referral-form input:focus, .referral-form select:focus, .referral-form textarea:focus{
  border-color: rgba(87,240,177,.42);
  box-shadow: 0 0 0 4px rgba(87,240,177,.10);
  background: rgba(255,255,255,.085);
}

.consent-row--premium{
  grid-column: 1 / -1;
  display: grid !important;
  grid-template-columns: 24px minmax(0,1fr);
  gap: 12px;
  align-items: start;
  margin-top: 4px;
  padding: 14px 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}

.consent-row--premium input[type="checkbox"]{
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  min-height: 20px;
  padding: 0;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: none;
}

.consent-row--premium input[type="checkbox"]::after{
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  transform: scale(0);
  transition: transform .14s ease;
  background: linear-gradient(135deg,rgba(98,212,255,1),rgba(87,240,177,1));
}

.consent-row--premium input[type="checkbox"]:checked{
  border-color: rgba(87,240,177,.52);
  background: rgba(87,240,177,.10);
}

.consent-row--premium input[type="checkbox"]:checked::after{
  transform: scale(1);
}

.consent-row--premium span{
  display: block;
  color: rgba(248,245,239,.78);
  font-weight: 540;
  line-height: 1.55;
}

.referral-form .form-actions{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.referral-form .btn{
  margin-top: 0;
}

.referral-status{
  min-height: 22px;
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.referral-status.is-success{
  color: var(--green);
}

.referral-status.is-error{
  color: #ffb7b7;
}

html[data-theme="light"] .referral-copy > p:not(.eyebrow),
html[data-theme="light"] .referral-rules li,
html[data-theme="light"] .referral-rules p{
  color: rgba(15,23,42,.74);
}

html[data-theme="light"] .referral-rules, html[data-theme="light"] .referral-form--premium{
  border-color: rgba(15,23,42,.10);
  background: radial-gradient(circle at 100% 0%,rgba(98,212,255,.12),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.98),rgba(245,249,255,.88));
  box-shadow: 0 20px 56px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.84);
}

html[data-theme="light"] .referral-rules h3,
html[data-theme="light"] .referral-form--premium h3,
html[data-theme="light"] .referral-form label{
  color: #0f172a;
}

html[data-theme="light"] .referral-form input,
html[data-theme="light"] .referral-form select,
html[data-theme="light"] .referral-form textarea{
  border-color: rgba(15,23,42,.11);
  background: rgba(255,255,255,.84);
  color: #0f172a;
}

html[data-theme="light"] .referral-form input::placeholder,
html[data-theme="light"] .referral-form textarea::placeholder{
  color: rgba(15,23,42,.38);
}

html[data-theme="light"] .consent-row--premium{
  border-color: rgba(15,23,42,.08);
  background: rgba(255,255,255,.74);
}

html[data-theme="light"] .consent-row--premium input[type="checkbox"]{
  border-color: rgba(15,23,42,.18);
  background: #fff;
}

html[data-theme="light"] .consent-row--premium span{
  color: rgba(15,23,42,.72);
}

html[dir="rtl"] .referral-layout{
  direction: rtl;
}

html[dir="rtl"] .referral-copy, html[dir="rtl"] .referral-rules, html[dir="rtl"] .referral-form{
  text-align: right;
}

html[dir="rtl"] .referral-rules li{
  padding-left: 0;
  padding-right: 24px;
}

html[dir="rtl"] .referral-rules li::before{
  left: auto;
  right: 0;
}

html[dir="rtl"] .consent-row--premium{
  grid-template-columns: minmax(0,1fr) 24px;
}

html[dir="rtl"] .consent-row--premium span{
  order: 1;
}

html[dir="rtl"] .consent-row--premium input[type="checkbox"]{
  order: 2;
}

@media (max-width:1100px){
  .referral-layout{
    grid-template-columns: 1fr;
    gap: 26px;
  }

}

@media (max-width:760px){
  .referral-section{
    margin-top: 34px;
  }

  .referral-rules, .referral-form--premium{
    padding: 20px;
    border-radius: 22px;
  }

  .referral-form .form-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .consent-row--premium{
    grid-template-columns: 22px minmax(0,1fr);
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
  }

  .referral-form .form-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .referral-form .btn{
    width: 100%;
  }

  .referral-status{
    min-height: 0;
  }

}

.page-main-referral{
  padding-top: clamp(58px,7vw,112px);
}

.page-main-referral .referral-section{
  margin-top: 0 !important;
  padding-top: clamp(58px,6vw,104px) !important;
  padding-bottom: clamp(76px,7vw,128px) !important;
}

.site-nav a[href="/tippgeber.html"]{
  white-space: nowrap;
}

.contact-layout{
  display: grid;
  grid-template-columns: minmax(0,1.45fr) minmax(320px,.55fr);
  gap: clamp(18px,2.2vw,34px);
  align-items: stretch;
}

.contact-layout .contact-card{
  min-height: 100%;
}

.contact-referral-card{
  min-height: 100%;
  padding: clamp(24px,2vw,34px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background: radial-gradient(circle at 100% 0%,rgba(87,240,177,.13),transparent 34%),
    radial-gradient(circle at 0% 100%,rgba(98,212,255,.08),transparent 38%),
    linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.04));
  box-shadow: 0 20px 58px rgba(0,0,0,.16);
}

.contact-referral-card h3{
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.35rem,1.6vw,1.9rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.contact-referral-card p:not(.eyebrow){
  margin: 0 0 22px;
  color: rgba(248,245,239,.74);
  line-height: 1.65;
}

.contact-referral-card .btn{
  margin-top: auto;
}

html[data-theme="light"] .contact-referral-card{
  border-color: rgba(15,23,42,.10);
  background: radial-gradient(circle at 100% 0%,rgba(87,240,177,.13),transparent 34%),
    radial-gradient(circle at 0% 100%,rgba(98,212,255,.10),transparent 38%),
    linear-gradient(180deg,rgba(255,255,255,.98),rgba(242,249,255,.88));
  box-shadow: 0 18px 48px rgba(15,23,42,.08);
}

html[data-theme="light"] .contact-referral-card h3{
  color: #0f172a;
}

html[data-theme="light"] .contact-referral-card p:not(.eyebrow){
  color: rgba(15,23,42,.72);
}

html[dir="rtl"] .contact-layout{
  direction: rtl;
}

html[dir="rtl"] .contact-referral-card{
  text-align: right;
}

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

}

@media (max-width:760px){
  .contact-referral-card{
    border-radius: 22px;
    padding: 22px;
  }

}

.referral-form--premium{
  padding: 30px 30px 28px;
}

.referral-form--premium h3{
  margin: 0 0 20px;
  font-size: 1.36rem;
}

.referral-form .form-grid{
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 15px 14px;
}

.referral-form label{
  font-weight: 620 !important;
  letter-spacing: -.01em;
}

.referral-form input, .referral-form select, .referral-form textarea{
  background: linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.052));
  border-color: rgba(255,255,255,.13);
}

.referral-form select{
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg,transparent 50%,rgba(248,245,239,.72) 50%),
    linear-gradient(135deg,rgba(248,245,239,.72) 50%,transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.referral-form textarea{
  min-height: 118px;
}

.referral-form .full-field{
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.referral-helper-note{
  margin: 14px 0 0;
  color: rgba(248,245,239,.56);
  font-size: .88rem;
  line-height: 1.5;
}

.consent-switch{
  display: grid !important;
  grid-template-columns: 64px minmax(0,1fr);
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  background: linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.032));
}

.consent-switch input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  min-height: 1px;
  padding: 0;
  margin: 0;
}

.consent-switch-ui{
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 54px;
  height: 31px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.18);
  transition: background .18s ease,border-color .18s ease,box-shadow .18s ease;
}

.consent-switch-knob{
  position: absolute;
  left: 4px;
  top: 4px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: linear-gradient(180deg,rgba(255,255,255,.96),rgba(233,240,248,.92));
  box-shadow: 0 3px 10px rgba(0,0,0,.24);
  transition: transform .18s ease;
}

.consent-switch-copy{
  display: block;
  color: rgba(248,245,239,.78);
  font-weight: 540;
  line-height: 1.56;
}

.consent-switch input:checked + .consent-switch-ui{
  border-color: rgba(87,240,177,.52);
  background: linear-gradient(135deg,rgba(98,212,255,.55),rgba(87,240,177,.72));
  box-shadow: 0 0 0 4px rgba(87,240,177,.10);
}

.consent-switch input:checked + .consent-switch-ui .consent-switch-knob{
  transform: translateX(23px);
}

.consent-switch input:focus-visible + .consent-switch-ui{
  box-shadow: 0 0 0 4px rgba(98,212,255,.12);
}

.referral-form .form-actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

.referral-form .form-actions .btn{
  margin-top: 0;
  min-width: 168px;
}

.referral-status{
  flex: 1 1 260px;
  min-height: 24px;
  margin: 0;
  text-align: right;
  font-weight: 700;
  line-height: 1.45;
}

html[dir="rtl"] .referral-status{
  text-align: left;
}

html[data-theme="light"] .referral-helper-note{
  color: rgba(15,23,42,.52);
}

html[data-theme="light"] .consent-switch{
  border-color: rgba(15,23,42,.10);
  background: linear-gradient(180deg,rgba(255,255,255,.82),rgba(249,251,255,.74));
}

html[data-theme="light"] .consent-switch-ui{
  border-color: rgba(15,23,42,.16);
  background: rgba(15,23,42,.08);
}

html[data-theme="light"] .consent-switch-copy{
  color: rgba(15,23,42,.72);
}

@media (max-width:900px){
  .referral-form .form-grid{
    grid-template-columns: 1fr;
  }

}

@media (max-width:760px){
  .referral-form--premium{
    padding: 22px;
  }

  .consent-switch{
    grid-template-columns: 56px minmax(0,1fr);
    gap: 12px;
    align-items: start;
    padding: 13px 14px;
    border-radius: 18px;
  }

  .consent-switch-copy{
    font-size: .94rem;
  }

  .referral-form .form-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .referral-status{
    text-align: left;
  }

  html[dir="rtl"] .referral-status{
    text-align: right;
  }

}

.site-header{
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  backdrop-filter: blur(18px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.08) !important;
  background: linear-gradient(180deg,rgba(7,16,30,.88),rgba(7,16,30,.72)) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 14px 38px rgba(0,0,0,.16) !important;
}

html[data-theme="light"] .site-header{
  background: linear-gradient(180deg,rgba(255,255,255,.88),rgba(248,251,255,.72)) !important;
  border-bottom-color: rgba(15,23,42,.08) !important;
  box-shadow: 0 12px 34px rgba(15,23,42,.08) !important;
}

.contact-layout{
  grid-template-columns: minmax(0,1.05fr) minmax(430px,.72fr) !important;
  gap: clamp(16px,1.6vw,26px) !important;
  align-items: stretch !important;
}

.contact-layout .contact-card{
  width: 100% !important;
}

.contact-referral-card{
  width: 100% !important;
  max-width: none !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.contact-referral-card .btn{
  align-self: flex-start;
}

.contact-section .contact-card{
  padding-inline: clamp(32px,4.5vw,72px) !important;
}

.page-main-referral{
  padding-top: clamp(18px,2.6vw,44px) !important;
}

.page-main-referral .referral-section{
  padding-top: clamp(28px,3.8vw,64px) !important;
  padding-bottom: clamp(64px,6vw,104px) !important;
  margin-top: 0 !important;
}

section[id]{
  scroll-margin-top: 96px;
}

@media (max-width:980px){
  .contact-layout{
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .contact-referral-card{
    justify-content: flex-start !important;
  }

}

@media (max-width:760px){
  .site-header{
    backdrop-filter: blur(14px) saturate(1.06) !important;
    -webkit-backdrop-filter: blur(14px) saturate(1.06) !important;
  }

  .page-main-referral{
    padding-top: 18px !important;
  }

  .page-main-referral .referral-section{
    padding-top: 30px !important;
  }

  section[id]{
    scroll-margin-top: 82px;
  }

}

.contact-referral-card{
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

.contact-referral-card h3{
  margin: 0 0 12px !important;
}

.contact-referral-card p:not(.eyebrow){
  margin: 0 0 18px !important;
  max-width: none !important;
}

.contact-referral-card .btn{
  margin-top: 0 !important;
  align-self: flex-start !important;
}

.contact-referral-card > *:last-child{
  margin-bottom: 0 !important;
}

:root{
  --sticky-header-height: 74px;
}

.site-header.sticky-site-header, .sticky-site-header{
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
  transform: translateZ(0) !important;
  will-change: background, box-shadow, border-color, backdrop-filter !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-height: var(--sticky-header-height) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: linear-gradient(180deg,rgba(7,16,30,.94),rgba(7,16,30,.84)) !important;
  border-bottom: 1px solid rgba(255,255,255,.075) !important;
  box-shadow: 0 12px 34px rgba(0,0,0,.12) !important;
  backdrop-filter: blur(18px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.08) !important;
}

body.has-sticky-header{
  padding-top: var(--sticky-header-height) !important;
}

.sticky-site-header.is-scrolled{
  background: linear-gradient(180deg,rgba(7,16,30,.985),rgba(7,16,30,.88)) !important;
  border-bottom-color: rgba(98,212,255,.14) !important;
  box-shadow: 0 18px 48px rgba(0,0,0,.22),
    0 1px 0 rgba(255,255,255,.045) inset !important;
}

.sticky-site-header .brand-logo{
  display: block !important;
}

.sticky-site-header .site-nav{
  display: flex !important;
  align-items: center !important;
}

.sticky-site-header .site-actions{
  display: flex !important;
  align-items: center !important;
}

html[data-theme="light"] .site-header.sticky-site-header, html[data-theme="light"] .sticky-site-header{
  background: linear-gradient(180deg,rgba(255,255,255,.94),rgba(248,251,255,.84)) !important;
  border-bottom-color: rgba(15,23,42,.08) !important;
  box-shadow: 0 12px 32px rgba(15,23,42,.07) !important;
}

html[data-theme="light"] .sticky-site-header.is-scrolled{
  background: linear-gradient(180deg,rgba(255,255,255,.985),rgba(248,251,255,.91)) !important;
  border-bottom-color: rgba(15,23,42,.12) !important;
  box-shadow: 0 18px 46px rgba(15,23,42,.10),
    0 1px 0 rgba(255,255,255,.88) inset !important;
}

section[id], [id]{
  scroll-margin-top: calc(var(--sticky-header-height) + 22px) !important;
}

.page-main-referral{
  padding-top: clamp(10px,1.8vw,26px) !important;
}

.page-main-referral .referral-section{
  padding-top: clamp(22px,3vw,48px) !important;
}

@media (max-width:760px){
  :root{
    --sticky-header-height: 62px;
  }

  .site-header.sticky-site-header, .sticky-site-header{
    min-height: var(--sticky-header-height) !important;
    backdrop-filter: blur(14px) saturate(1.06) !important;
    -webkit-backdrop-filter: blur(14px) saturate(1.06) !important;
  }

  body.has-sticky-header{
    padding-top: var(--sticky-header-height) !important;
  }

  section[id], [id]{
    scroll-margin-top: calc(var(--sticky-header-height) + 16px) !important;
  }

  .page-main-referral{
    padding-top: 10px !important;
  }

  .page-main-referral .referral-section{
    padding-top: 24px !important;
  }

}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))){
  .site-header.sticky-site-header, .sticky-site-header{
    background: rgba(7,16,30,.98) !important;
  }

  html[data-theme="light"] .site-header.sticky-site-header, html[data-theme="light"] .sticky-site-header{
    background: rgba(255,255,255,.98) !important;
  }

}

.ai-mini-grid{
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  max-width: min(780px,100%);
  margin-top: 24px;
}

.ai-mini-card{
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 120px;
  padding: 18px 18px 17px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.05);
}

.ai-mini-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.01));
  pointer-events: none;
}

.ai-mini-card > *{
  position: relative;
  z-index: 1;
}

.ai-mini-icon{
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}

.ai-mini-icon svg{
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #e9fff7;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-mini-body{
  min-width: 0;
}

.ai-mini-body h3{
  margin: 0 0 8px;
  font-size: 1.02rem;
  line-height: 1.18;
  color: #f8f5ef;
  font-weight: 720;
  letter-spacing: -.01em;
}

.ai-mini-body p{
  margin: 0;
  color: rgba(248,245,239,.74);
  font-size: .92rem;
  line-height: 1.52;
  font-weight: 470;
}

.ai-mini-card.tone-cyan{
  background: radial-gradient(circle at 100% 0%,rgba(98,212,255,.20),transparent 36%),linear-gradient(135deg,rgba(20,49,78,.90),rgba(16,28,48,.96));
}

.ai-mini-card.tone-violet{
  background: radial-gradient(circle at 100% 0%,rgba(159,123,255,.23),transparent 36%),linear-gradient(135deg,rgba(32,42,86,.90),rgba(26,25,59,.96));
}

.ai-mini-card.tone-emerald{
  background: radial-gradient(circle at 100% 0%,rgba(87,240,177,.22),transparent 36%),linear-gradient(135deg,rgba(18,64,60,.90),rgba(13,37,47,.96));
}

.ai-mini-card.tone-petrol{
  background: radial-gradient(circle at 100% 0%,rgba(76,189,217,.18),transparent 36%),linear-gradient(135deg,rgba(20,47,68,.90),rgba(16,29,45,.96));
}

.ai-mini-card.tone-gold{
  background: radial-gradient(circle at 100% 0%,rgba(242,189,107,.24),transparent 36%),linear-gradient(135deg,rgba(67,50,31,.90),rgba(34,29,32,.96));
}

.ai-mini-card.tone-rose{
  background: radial-gradient(circle at 100% 0%,rgba(255,111,165,.23),transparent 36%),linear-gradient(135deg,rgba(74,34,66,.90),rgba(35,24,42,.96));
}

html[data-theme="light"] .ai-mini-card{
  border-color: rgba(16,24,39,.10);
  box-shadow: 0 18px 44px rgba(28,41,58,.10), inset 0 1px 0 rgba(255,255,255,.42);
}

html[data-theme="light"] .ai-mini-icon{
  background: rgba(255,255,255,.20);
  border-color: rgba(255,255,255,.18);
}

html[data-theme="light"] .ai-mini-body h3{
  color: #ffffff;
}

html[data-theme="light"] .ai-mini-body p{
  color: rgba(255,255,255,.86);
}

html[data-theme="light"] .ai-mini-card.tone-cyan{
  background: radial-gradient(circle at 100% 0%,rgba(98,212,255,.22),transparent 36%),linear-gradient(135deg,rgba(64,96,122,.95),rgba(34,59,82,.98));
}

html[data-theme="light"] .ai-mini-card.tone-violet{
  background: radial-gradient(circle at 100% 0%,rgba(159,123,255,.23),transparent 36%),linear-gradient(135deg,rgba(67,78,127,.95),rgba(49,45,92,.98));
}

html[data-theme="light"] .ai-mini-card.tone-emerald{
  background: radial-gradient(circle at 100% 0%,rgba(87,240,177,.22),transparent 36%),linear-gradient(135deg,rgba(40,92,88,.95),rgba(25,59,63,.98));
}

html[data-theme="light"] .ai-mini-card.tone-petrol{
  background: radial-gradient(circle at 100% 0%,rgba(76,189,217,.18),transparent 36%),linear-gradient(135deg,rgba(47,83,110,.95),rgba(28,51,73,.98));
}

html[data-theme="light"] .ai-mini-card.tone-gold{
  background: radial-gradient(circle at 100% 0%,rgba(242,189,107,.24),transparent 36%),linear-gradient(135deg,rgba(115,93,65,.95),rgba(60,52,55,.98));
}

html[data-theme="light"] .ai-mini-card.tone-rose{
  background: radial-gradient(circle at 100% 0%,rgba(255,111,165,.22),transparent 36%),linear-gradient(135deg,rgba(111,63,92,.95),rgba(58,44,68,.98));
}

@media (max-width:640px){
  .ai-mini-grid{
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .ai-mini-card{
    min-height: 110px;
    padding: 15px 15px 14px;
    border-radius: 18px;
  }

  .ai-mini-icon{
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 14px;
  }

  .ai-mini-body h3{
    font-size: .98rem;
  }

  .ai-mini-body p{
    font-size: .88rem;
  }

}

.branch-grid-expanded .branch-card{
  box-shadow: 0 18px 48px rgba(0,0,0,.17);
}

.branch-grid-expanded .branch-card h3{
  color: #f8f5ef;
}

.branch-grid-expanded .branch-card p:not(.tag){
  color: rgba(248,245,239,.84);
}

.branch-grid-expanded .branch-card .branch-icon{
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.14);
}

.branch-grid-expanded .branch-card .branch-icon .icon{
  color: #e7fff7;
}

.branch-grid-expanded .branch-card .tag{
  color: #ffffff !important;
  background: rgba(8,17,31,.34);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: none;
}

.branch-grid-expanded .branch-card a{
  color: #ffffff !important;
  background: linear-gradient(135deg,rgba(98,212,255,.30),rgba(87,240,177,.30)),rgba(9,20,34,.30);
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 14px 28px rgba(0,0,0,.14);
  text-shadow: none;
}

.branch-grid-expanded .branch-card a:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.28);
}

html[data-theme="light"] .branch-grid-expanded .branch-card.branch-fotografie{
  background: radial-gradient(circle at 86% 86%,rgba(255,145,191,.18),transparent 28%),
    radial-gradient(circle at 14% 10%,rgba(98,212,255,.19),transparent 34%),
    linear-gradient(135deg,rgba(66,107,135,.96),rgba(33,66,93,.99));
  border-color: rgba(98,212,255,.24);
}

html[data-theme="light"] .branch-grid-expanded .branch-card h3{
  color: #ffffff;
}

html[data-theme="light"] .branch-grid-expanded .branch-card p:not(.tag){
  color: rgba(255,255,255,.86);
}

html[data-theme="light"] .branch-grid-expanded .branch-card .branch-icon{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.18);
}

html[data-theme="light"] .branch-grid-expanded .branch-card .tag{
  color: #ffffff !important;
  background: rgba(9,20,34,.34);
  border-color: rgba(255,255,255,.18);
}

html[data-theme="light"] .branch-grid-expanded .branch-card a{
  color: #ffffff !important;
  background: linear-gradient(135deg,rgba(10,33,52,.82),rgba(19,63,88,.82));
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 16px 34px rgba(28,41,58,.12);
}

:root{
  --sticky-header-height: 74px;
  --overlay-safe-top: calc(var(--sticky-header-height) + 18px);
}

.request-overlay{
  position: fixed !important;
  inset: 0 !important;
  z-index: 100500 !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  padding: var(--overlay-safe-top) clamp(16px, 2vw, 28px) 22px !important;
  overflow: auto !important;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.request-overlay[hidden]{
  display: none !important;
}

.request-backdrop{
  position: fixed !important;
  inset: 0 !important;
  z-index: 0 !important;
}

.request-modal{
  position: relative !important;
  z-index: 1 !important;
  width: min(920px, 100%) !important;
  margin: 0 auto !important;
  max-height: calc(100dvh - var(--overlay-safe-top) - 22px) !important;
  overflow: auto !important;
  box-sizing: border-box;
  scroll-margin-top: var(--overlay-safe-top);
}

.request-close{
  position: sticky;
  top: 0;
  z-index: 3;
}

body.has-open-request-overlay{
  overflow: hidden !important;
}

@media (max-width: 760px){
  :root{
    --overlay-safe-top: calc(var(--sticky-header-height) + 10px);
  }

  .request-overlay{
    padding: var(--overlay-safe-top) 12px 12px !important;
    align-items: flex-start !important;
  }

  .request-modal{
    width: 100% !important;
    max-height: calc(100dvh - var(--overlay-safe-top) - 12px) !important;
  }

}

.site-footer nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.site-footer nav a{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(248,245,239,.66);
  text-decoration: none;
  font-weight: 640;
  letter-spacing: -.01em;
}

.site-footer nav a:hover{
  color: #fff;
  background: rgba(255,255,255,.055);
}

html[data-theme="light"] .site-footer nav a{
  color: rgba(15,23,42,.62);
}

html[data-theme="light"] .site-footer nav a:hover{
  color: #0f172a;
  background: rgba(15,23,42,.055);
}

@media (max-width:760px){
  .site-footer nav{
    justify-content: flex-start;
    gap: 6px;
  }

  .site-footer nav a{
    min-height: 32px;
    padding: 6px 9px;
  }

}

:root{
  --sticky-header-height: 74px;
  --overlay-gap-top: 18px;
  --overlay-gap-side: clamp(14px, 2vw, 28px);
  --overlay-gap-bottom: 20px;
}

.site-header.sticky-site-header,
.sticky-site-header,
body.has-open-request-overlay .site-header.sticky-site-header,
body.has-open-request-overlay .sticky-site-header{
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 100600 !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateZ(0) !important;
  background: linear-gradient(180deg,rgba(7,16,30,.985),rgba(7,16,30,.90)) !important;
  border-bottom: 1px solid rgba(98,212,255,.14) !important;
  box-shadow: 0 16px 42px rgba(0,0,0,.22) !important;
  backdrop-filter: blur(18px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.08) !important;
}

html[data-theme="light"] .site-header.sticky-site-header,
html[data-theme="light"] .sticky-site-header,
html[data-theme="light"] body.has-open-request-overlay .site-header.sticky-site-header,
html[data-theme="light"] body.has-open-request-overlay .sticky-site-header{
  background: linear-gradient(180deg,rgba(255,255,255,.985),rgba(248,251,255,.92)) !important;
  border-bottom-color: rgba(15,23,42,.12) !important;
  box-shadow: 0 16px 40px rgba(15,23,42,.10) !important;
}

.request-overlay{
  position: fixed !important;
  top: var(--sticky-header-height) !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  inset: var(--sticky-header-height) 0 0 0 !important;
  z-index: 100500 !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  padding: var(--overlay-gap-top) var(--overlay-gap-side) var(--overlay-gap-bottom) !important;
  overflow: auto !important;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch !important;
  box-sizing: border-box !important;
}

.request-overlay[hidden]{
  display: none !important;
}

.request-backdrop{
  position: fixed !important;
  top: var(--sticky-header-height) !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  inset: var(--sticky-header-height) 0 0 0 !important;
  z-index: 0 !important;
  background: radial-gradient(circle at 50% 16%,rgba(98,212,255,.10),transparent 34%),
    rgba(2,6,14,.62) !important;
  backdrop-filter: blur(14px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.08) !important;
}

html[data-theme="light"] .request-backdrop{
  background: radial-gradient(circle at 50% 16%,rgba(98,212,255,.12),transparent 34%),
    rgba(248,251,255,.62) !important;
  backdrop-filter: blur(14px) saturate(1.06) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.06) !important;
}

.request-modal{
  position: relative !important;
  z-index: 1 !important;
  width: min(920px,100%) !important;
  margin: 0 auto !important;
  max-height: calc(100dvh - var(--sticky-header-height) - var(--overlay-gap-top) - var(--overlay-gap-bottom)) !important;
  overflow: auto !important;
  box-sizing: border-box !important;
  scroll-margin-top: 0 !important;
}

.request-close{
  position: sticky !important;
  top: 0 !important;
  z-index: 4 !important;
  margin-left: auto !important;
}

body.has-open-request-overlay{
  overflow: hidden !important;
}

body.has-open-request-overlay .request-overlay{
  padding-top: var(--overlay-gap-top) !important;
}

@media (max-width:760px){
  :root{
    --sticky-header-height: 62px;
    --overlay-gap-top: 10px;
    --overlay-gap-side: 12px;
    --overlay-gap-bottom: 12px;
  }

  .request-overlay{
    top: var(--sticky-header-height) !important;
    inset: var(--sticky-header-height) 0 0 0 !important;
    align-items: flex-start !important;
    padding: var(--overlay-gap-top) var(--overlay-gap-side) var(--overlay-gap-bottom) !important;
  }

  .request-backdrop{
    top: var(--sticky-header-height) !important;
    inset: var(--sticky-header-height) 0 0 0 !important;
    backdrop-filter: blur(10px) saturate(1.06) !important;
    -webkit-backdrop-filter: blur(10px) saturate(1.06) !important;
  }

  .request-modal{
    width: 100% !important;
    max-height: calc(100dvh - var(--sticky-header-height) - var(--overlay-gap-top) - var(--overlay-gap-bottom)) !important;
  }

}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))){
  body.has-open-request-overlay .site-header.sticky-site-header,
  body.has-open-request-overlay .sticky-site-header{
    background: rgba(7,16,30,.99) !important;
  }

  html[data-theme="light"] body.has-open-request-overlay .site-header.sticky-site-header,
  html[data-theme="light"] body.has-open-request-overlay .sticky-site-header{
    background: rgba(255,255,255,.99) !important;
  }

  .request-backdrop{
    background: rgba(2,6,14,.72) !important;
  }

  html[data-theme="light"] .request-backdrop{
    background: rgba(248,251,255,.76) !important;
  }

}

.request-modal{
  position: relative !important;
}

.request-close{
  position: sticky !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  inset-inline-start: auto !important;
  inset-inline-end: 0 !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.request-close > *{
  margin-left: auto !important;
  margin-right: 0 !important;
}

.request-close .close-button, .request-close .close-circle, .request-close .close-icon, .request-close button{
  margin-left: auto !important;
  margin-right: 0 !important;
}

@media (max-width:760px){
  .request-close{
    margin: 0 0 8px 0 !important;
  }

}

@media (max-width: 980px){
  .mainnav.open{
    background: radial-gradient(circle at 100% 0%, rgba(98,212,255,.10), transparent 34%),
      radial-gradient(circle at 0% 100%, rgba(87,240,177,.08), transparent 36%),
      linear-gradient(180deg, rgba(7,16,30,.985), rgba(7,16,30,.97)) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    box-shadow: 0 26px 78px rgba(0,0,0,.42),
      inset 0 1px 0 rgba(255,255,255,.08) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    overflow: hidden !important;
  }

  .mainnav.open::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: #07101e;
  }

  .mainnav.open a, .mainnav.open .lang-switch, .mainnav.open .view-controls{
    position: relative;
    z-index: 1;
  }

  html[data-theme="light"] .mainnav.open{
    background: radial-gradient(circle at 100% 0%, rgba(98,212,255,.14), transparent 34%),
      radial-gradient(circle at 0% 100%, rgba(87,240,177,.11), transparent 36%),
      linear-gradient(180deg, rgba(255,255,255,.99), rgba(244,249,255,.98)) !important;
    border-color: rgba(15,23,42,.11) !important;
    box-shadow: 0 26px 72px rgba(15,23,42,.18),
      inset 0 1px 0 rgba(255,255,255,.82) !important;
  }

  html[data-theme="light"] .mainnav.open::before{
    background: #ffffff;
  }

}

@media (max-width: 760px){
  .mainnav.open{
    border-radius: 22px !important;
  }

}

.request-form select, .referral-form select{
  color-scheme: dark;
  background-color: #182638 !important;
  color: #f8f5ef !important;
  border-color: rgba(98,212,255,.22) !important;
}

.request-form select option, .referral-form select option{
  background: #182638 !important;
  color: #f8f5ef !important;
}

.request-form select option:checked,
.request-form select option:hover,
.referral-form select option:checked,
.referral-form select option:hover{
  background: #1f6fd5 !important;
  color: #ffffff !important;
}

html[data-theme="light"] .request-form select, html[data-theme="light"] .referral-form select{
  color-scheme: light;
  background-color: #ffffff !important;
  color: #0f172a !important;
  border-color: rgba(15,23,42,.14) !important;
}

html[data-theme="light"] .request-form select option, html[data-theme="light"] .referral-form select option{
  background: #ffffff !important;
  color: #0f172a !important;
}

html[data-theme="light"] .request-form select option:checked,
html[data-theme="light"] .request-form select option:hover,
html[data-theme="light"] .referral-form select option:checked,
html[data-theme="light"] .referral-form select option:hover{
  background: #dbeafe !important;
  color: #0f172a !important;
}

.request-form .check-field{
  display: none !important;
}

.request-consent-switch{
  display: grid !important;
  grid-template-columns: 64px minmax(0,1fr);
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 20px;
  background: radial-gradient(circle at 100% 0%,rgba(87,240,177,.08),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.032));
}

.request-consent-switch input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  min-height: 1px;
  padding: 0;
  margin: 0;
}

.request-consent-switch-ui{
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 56px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.20);
  transition: background .18s ease,border-color .18s ease,box-shadow .18s ease;
}

.request-consent-switch-knob{
  position: absolute;
  left: 4px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(180deg,rgba(255,255,255,.98),rgba(232,240,248,.94));
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  transition: transform .18s ease;
}

.request-consent-switch-copy{
  display: block;
  color: rgba(248,245,239,.80);
  font-weight: 540;
  line-height: 1.55;
}

.request-consent-switch input:checked + .request-consent-switch-ui{
  border-color: rgba(87,240,177,.54);
  background: linear-gradient(135deg,rgba(98,212,255,.58),rgba(87,240,177,.74));
  box-shadow: 0 0 0 4px rgba(87,240,177,.10);
}

.request-consent-switch input:checked + .request-consent-switch-ui .request-consent-switch-knob{
  transform: translateX(24px);
}

.request-consent-switch input:focus-visible + .request-consent-switch-ui{
  box-shadow: 0 0 0 4px rgba(98,212,255,.16);
}

html[data-theme="light"] .request-consent-switch{
  border-color: rgba(15,23,42,.10);
  background: radial-gradient(circle at 100% 0%,rgba(87,240,177,.11),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.86),rgba(249,251,255,.76));
}

html[data-theme="light"] .request-consent-switch-ui{
  border-color: rgba(15,23,42,.16);
  background: rgba(15,23,42,.08);
}

html[data-theme="light"] .request-consent-switch-copy{
  color: rgba(15,23,42,.74);
}

html[dir="rtl"] .request-consent-switch{
  grid-template-columns: minmax(0,1fr) 64px;
}

html[dir="rtl"] .request-consent-switch-copy{
  order: 1;
  text-align: right;
}

html[dir="rtl"] .request-consent-switch-ui{
  order: 2;
}

html[dir="rtl"] .request-consent-switch-knob{
  left: auto;
  right: 4px;
}

html[dir="rtl"] .request-consent-switch input:checked + .request-consent-switch-ui .request-consent-switch-knob{
  transform: translateX(-24px);
}

@media (max-width:760px){
  .request-consent-switch{
    grid-template-columns: 58px minmax(0,1fr);
    gap: 12px;
    align-items: flex-start;
    padding: 13px 14px;
    border-radius: 18px;
  }

  .request-consent-switch-copy{
    font-size: .94rem;
  }

  html[dir="rtl"] .request-consent-switch{
    grid-template-columns: minmax(0,1fr) 58px;
  }

}

.legal-page .legal-hero{
  padding-top: clamp(92px, 10vw, 138px);
  padding-bottom: clamp(28px, 5vw, 56px);
}

.legal-page h1{
  margin: 0;
}

.legal-layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.legal-card{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: clamp(22px, 4vw, 42px);
  background: radial-gradient(circle at 100% 0%, rgba(98,212,255,.10), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(87,240,177,.08), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.03));
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.legal-card h2, .legal-info-box h3{
  margin-top: 0;
}

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

.legal-info-box{
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 22px;
  padding: 20px;
  background: rgba(255,255,255,.045);
}

.legal-info-box dl{
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 10px 16px;
  margin: 0;
}

.legal-info-box dt{
  color: rgba(248,245,239,.58);
  font-weight: 700;
}

.legal-info-box dd{
  margin: 0;
  color: rgba(248,245,239,.86);
}

.legal-info-box a{
  color: #7ee8d0;
  text-decoration: none;
}

.legal-info-box a:hover{
  color: #ffffff;
}

html[data-theme="light"] .legal-card{
  border-color: rgba(15,23,42,.10);
  background: radial-gradient(circle at 100% 0%, rgba(98,212,255,.13), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(87,240,177,.10), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.90), rgba(249,251,255,.82));
  box-shadow: 0 24px 60px rgba(15,23,42,.10);
}

html[data-theme="light"] .legal-info-box{
  border-color: rgba(15,23,42,.10);
  background: rgba(255,255,255,.72);
}

html[data-theme="light"] .legal-info-box dt{
  color: rgba(15,23,42,.58);
}

html[data-theme="light"] .legal-info-box dd{
  color: rgba(15,23,42,.82);
}

html[data-theme="light"] .legal-info-box a{
  color: #0f766e;
}

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

  .legal-info-box dl{
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .legal-info-box dt{
    margin-top: 10px;
  }

}

.legal-page-tippgeber .legal-tippgeber-section{
  padding-top: clamp(96px, 10vw, 150px);
}

.legal-referral-layout{
  align-items: start;
}

.legal-summary-card h2{
  font-size: 1.02rem;
  margin: 0 0 12px;
}

.legal-summary-card ul{
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.legal-summary-card li{
  position: relative;
  padding-left: 22px;
  color: rgba(248,245,239,.80);
  font-weight: 560;
}

.legal-summary-card li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #57f0b1;
  font-weight: 900;
}

.legal-document-card{
  max-height: none;
}

.legal-document-card > h2{
  margin-top: 0;
  margin-bottom: 18px;
}

.legal-document-flow{
  display: grid;
  gap: 14px;
}

.legal-detail-row{
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 20px;
  padding: 18px;
  background: radial-gradient(circle at 100% 0%,rgba(98,212,255,.075),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.025));
}

.legal-detail-row h3{
  margin: 0 0 10px;
  font-size: 1.02rem;
}

.legal-detail-row p{
  margin: 0 0 10px;
  color: rgba(248,245,239,.76);
  line-height: 1.62;
}

.legal-detail-row p:last-child{
  margin-bottom: 0;
}

.legal-detail-row ul{
  margin: 8px 0 0 18px;
  color: rgba(248,245,239,.76);
}

html[data-theme="light"] .legal-summary-card li,
html[data-theme="light"] .legal-detail-row p,
html[data-theme="light"] .legal-detail-row ul{
  color: rgba(15,23,42,.72);
}

html[data-theme="light"] .legal-detail-row{
  border-color: rgba(15,23,42,.10);
  background: radial-gradient(circle at 100% 0%,rgba(98,212,255,.12),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.86),rgba(248,251,255,.78));
}

@media (max-width:980px){
  .legal-referral-layout{
    grid-template-columns: 1fr;
  }

}

.legal-single-column-layout{
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  max-width: min(1040px, calc(100vw - 32px));
  margin-inline: auto;
  gap: 22px;
}

.legal-single-column-layout .legal-copy{
  max-width: none;
}

.legal-single-column-layout .legal-summary-card{
  max-width: none;
}

.legal-single-document-card{
  width: 100%;
  max-width: none;
}

.legal-single-column-layout .legal-document-card, .legal-single-column-layout .legal-card{
  width: 100%;
  max-width: none;
}

.legal-single-column-layout .legal-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width:760px){
  .legal-single-column-layout{
    max-width: calc(100vw - 24px);
    gap: 16px;
  }

  .legal-single-column-layout .legal-grid{
    grid-template-columns: 1fr;
  }

}

.legal-v103-page{
  position: relative;
  isolation: isolate;
}

.legal-v103-page::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 18% 18%, rgba(98,212,255,.08), transparent 30%),
    radial-gradient(circle at 82% 6%, rgba(87,240,177,.07), transparent 26%);
}

.legal-v103-hero{
  padding-top: clamp(112px, 11vw, 160px);
  padding-bottom: clamp(24px, 4vw, 44px);
}

.legal-v103-container{
  max-width: min(1120px, calc(100vw - 32px));
}

.legal-v103-lead{
  max-width: 860px;
  margin: 22px 0 0;
  color: rgba(248,245,239,.72);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  line-height: 1.62;
}

.legal-v103-body{
  padding-top: 0;
  padding-bottom: clamp(56px, 8vw, 104px);
}

.legal-v103-card{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  padding: clamp(18px, 3vw, 34px);
  background: radial-gradient(circle at 100% 0%, rgba(98,212,255,.11), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(87,240,177,.08), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.058), rgba(255,255,255,.028));
  box-shadow: 0 28px 88px rgba(0,0,0,.24);
}

.legal-v103-summary{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  padding: clamp(16px, 2vw, 24px);
  background: rgba(255,255,255,.045);
}

.legal-v103-summary h2{
  margin: 0 0 12px;
  font-size: 1.04rem;
}

.legal-v103-summary ul{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-v103-summary li{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(87,240,177,.10);
  border: 1px solid rgba(87,240,177,.18);
  color: rgba(248,245,239,.78);
  font-weight: 620;
  font-size: .92rem;
}

.legal-v103-updated{
  flex: 0 0 auto;
  margin: 0;
  color: rgba(248,245,239,.56);
  font-size: .9rem;
}

.legal-v103-content{
  display: grid;
  gap: 14px;
}

.legal-v103-section{
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 24px;
  padding: clamp(18px, 2.4vw, 28px);
  background: radial-gradient(circle at 100% 0%, rgba(98,212,255,.07), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.046), rgba(255,255,255,.024));
}

.legal-v103-section h2{
  margin: 0 0 12px;
  max-width: none;
  font-size: clamp(1.12rem, 1.6vw, 1.38rem);
  letter-spacing: -.025em;
}

.legal-v103-section p{
  margin: 0 0 12px;
  color: rgba(248,245,239,.74);
  line-height: 1.68;
  font-weight: 460;
}

.legal-v103-section p:last-child{
  margin-bottom: 0;
}

.legal-v103-meta{
  display: grid;
  gap: 8px;
  margin: 0;
}

.legal-v103-meta-row{
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.legal-v103-meta-row:last-child{
  border-bottom: none;
}

.legal-v103-meta dt{
  color: rgba(248,245,239,.54);
  font-weight: 720;
}

.legal-v103-meta dd{
  margin: 0;
  color: rgba(248,245,239,.84);
}

.legal-v103-meta a, .legal-v103-section a{
  color: #7ee8d0;
  text-decoration: none;
}

.legal-v103-meta a:hover, .legal-v103-section a:hover{
  color: #ffffff;
}

.site-footer > div > p:empty{
  display: none !important;
}

html[data-theme="light"] .legal-v103-lead,
html[data-theme="light"] .legal-v103-section p,
html[data-theme="light"] .legal-v103-summary li,
html[data-theme="light"] .legal-v103-meta dd{
  color: rgba(15,23,42,.72);
}

html[data-theme="light"] .legal-v103-card{
  border-color: rgba(15,23,42,.10);
  background: radial-gradient(circle at 100% 0%, rgba(98,212,255,.13), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(87,240,177,.10), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(249,251,255,.82));
  box-shadow: 0 28px 72px rgba(15,23,42,.11);
}

html[data-theme="light"] .legal-v103-summary, html[data-theme="light"] .legal-v103-section{
  border-color: rgba(15,23,42,.10);
  background: rgba(255,255,255,.72);
}

html[data-theme="light"] .legal-v103-summary li{
  background: rgba(15,118,110,.08);
  border-color: rgba(15,118,110,.14);
}

html[data-theme="light"] .legal-v103-updated, html[data-theme="light"] .legal-v103-meta dt{
  color: rgba(15,23,42,.54);
}

html[data-theme="light"] .legal-v103-meta-row{
  border-bottom-color: rgba(15,23,42,.08);
}

html[data-theme="light"] .legal-v103-meta a, html[data-theme="light"] .legal-v103-section a{
  color: #0f766e;
}

@media (max-width:760px){
  .legal-v103-container{
    max-width: calc(100vw - 24px);
  }

  .legal-v103-card{
    border-radius: 24px;
    padding: 14px;
    gap: 14px;
  }

  .legal-v103-summary{
    display: grid;
    gap: 14px;
    border-radius: 20px;
  }

  .legal-v103-summary ul{
    display: grid;
    grid-template-columns: 1fr;
  }

  .legal-v103-section{
    border-radius: 20px;
  }

  .legal-v103-meta-row{
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
  }

}

body.legal-body-v104{
  overflow-x: hidden;
}

body.legal-body-v104 .legal-v104-page{
  position: relative;
  min-height: calc(100vh - 80px);
  padding-top: 0;
  background: radial-gradient(circle at 16% 10%, rgba(98,212,255,.075), transparent 30%),
    radial-gradient(circle at 82% 0%, rgba(122,92,255,.105), transparent 32%),
    linear-gradient(180deg, rgba(7,16,30,.20), rgba(7,16,30,0) 34%);
}

body.legal-body-v104 .legal-v104-page::before{
  display: none !important;
}

body.legal-body-v104 .legal-v104-container{
  width: min(1120px, calc(100vw - 48px)) !important;
  max-width: min(1120px, calc(100vw - 48px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.legal-body-v104 .legal-v104-hero{
  padding-top: clamp(112px, 10vw, 150px) !important;
  padding-bottom: clamp(24px, 4vw, 42px) !important;
}

body.legal-body-v104 .legal-v104-hero .eyebrow{
  margin-bottom: 18px;
}

body.legal-body-v104 .legal-v104-lead{
  max-width: 840px !important;
  margin: 20px 0 0 !important;
  color: rgba(248,245,239,.74);
  font-size: clamp(1.02rem, 1.45vw, 1.2rem) !important;
  line-height: 1.62 !important;
}

body.legal-body-v104 .legal-v104-body{
  padding-top: 0 !important;
  padding-bottom: clamp(72px, 9vw, 126px) !important;
}

body.legal-body-v104 .legal-v104-card{
  width: 100% !important;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
  margin: 0 auto !important;
  border-radius: 30px !important;
  padding: clamp(18px, 2.8vw, 32px) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  background: radial-gradient(circle at 100% 0%, rgba(98,212,255,.10), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(87,240,177,.075), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.058), rgba(255,255,255,.028)) !important;
  box-shadow: 0 28px 88px rgba(0,0,0,.24) !important;
}

body.legal-body-v104 .legal-v104-summary{
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: end !important;
  gap: 18px !important;
  width: 100% !important;
  border-radius: 22px !important;
  padding: clamp(16px, 2vw, 22px) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  background: radial-gradient(circle at 100% 0%, rgba(98,212,255,.075), transparent 30%),
    rgba(255,255,255,.040) !important;
}

body.legal-body-v104 .legal-v104-summary h2{
  margin: 0 0 12px !important;
  max-width: none !important;
  font-size: clamp(1.36rem, 2.4vw, 2.1rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -.045em !important;
}

body.legal-body-v104 .legal-v104-summary ul{
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.legal-body-v104 .legal-v104-summary li{
  min-height: 32px !important;
  padding: 7px 11px !important;
  border-radius: 999px !important;
  font-size: .88rem !important;
  line-height: 1.1 !important;
  color: rgba(248,245,239,.78) !important;
  background: rgba(87,240,177,.10) !important;
  border: 1px solid rgba(87,240,177,.18) !important;
}

body.legal-body-v104 .legal-v103-updated, body.legal-body-v104 .legal-v104-updated{
  white-space: nowrap;
  margin: 0 !important;
  color: rgba(248,245,239,.52) !important;
  font-size: .86rem !important;
}

body.legal-body-v104 .legal-v104-content{
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
  width: 100% !important;
}

body.legal-body-v104 .legal-v104-section{
  width: 100% !important;
  border-radius: 22px !important;
  padding: clamp(17px, 2.2vw, 26px) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  background: radial-gradient(circle at 100% 0%, rgba(98,212,255,.060), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.044), rgba(255,255,255,.023)) !important;
}

body.legal-body-v104 .legal-v104-section h2{
  max-width: none !important;
  margin: 0 0 11px !important;
  font-size: clamp(1.24rem, 2vw, 1.72rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -.035em !important;
}

body.legal-body-v104 .legal-v104-section p{
  max-width: none !important;
  margin: 0 0 11px !important;
  color: rgba(248,245,239,.75) !important;
  font-size: clamp(.96rem, 1.1vw, 1.03rem) !important;
  line-height: 1.67 !important;
  font-weight: 440 !important;
}

body.legal-body-v104 .legal-v104-section p:last-child{
  margin-bottom: 0 !important;
}

body.legal-body-v104 .legal-v103-meta, body.legal-body-v104 .legal-v104-meta{
  display: grid !important;
  gap: 0 !important;
  margin: 0 !important;
}

body.legal-body-v104 .legal-v103-meta-row, body.legal-body-v104 .legal-v104-meta-row{
  display: grid !important;
  grid-template-columns: 180px minmax(0,1fr) !important;
  gap: 18px !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}

body.legal-body-v104 .legal-v103-meta-row:last-child, body.legal-body-v104 .legal-v104-meta-row:last-child{
  border-bottom: none !important;
}

body.legal-body-v104 .legal-v103-meta dt, body.legal-body-v104 .legal-v104-meta dt{
  color: rgba(248,245,239,.55) !important;
  font-weight: 720 !important;
}

body.legal-body-v104 .legal-v103-meta dd, body.legal-body-v104 .legal-v104-meta dd{
  margin: 0 !important;
  color: rgba(248,245,239,.84) !important;
}

body.legal-body-v104 .legal-v104-section a, body.legal-body-v104 .legal-v103-meta a{
  color: #7ee8d0 !important;
  text-decoration: none !important;
}

body.legal-body-v104 .legal-v104-section a:hover, body.legal-body-v104 .legal-v103-meta a:hover{
  color: #ffffff !important;
}

.site-footer p:empty{
  display: none !important;
}

.site-footer > div:first-child{
  display: flex;
  align-items: center;
}

.site-footer > div:first-child strong{
  margin-bottom: 0 !important;
}

html[data-theme="light"] body.legal-body-v104 .legal-v104-page{
  background: radial-gradient(circle at 16% 10%, rgba(98,212,255,.15), transparent 30%),
    radial-gradient(circle at 82% 0%, rgba(122,92,255,.13), transparent 32%),
    linear-gradient(180deg, rgba(244,249,255,.8), rgba(244,249,255,0) 34%);
}

html[data-theme="light"] body.legal-body-v104 .legal-v104-lead,
html[data-theme="light"] body.legal-body-v104 .legal-v104-section p,
html[data-theme="light"] body.legal-body-v104 .legal-v104-summary li,
html[data-theme="light"] body.legal-body-v104 .legal-v103-meta dd{
  color: rgba(15,23,42,.72) !important;
}

html[data-theme="light"] body.legal-body-v104 .legal-v104-card{
  border-color: rgba(15,23,42,.10) !important;
  background: radial-gradient(circle at 100% 0%, rgba(98,212,255,.14), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(87,240,177,.11), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(249,251,255,.82)) !important;
  box-shadow: 0 28px 72px rgba(15,23,42,.11) !important;
}

html[data-theme="light"] body.legal-body-v104 .legal-v104-summary,
html[data-theme="light"] body.legal-body-v104 .legal-v104-section{
  border-color: rgba(15,23,42,.10) !important;
  background: rgba(255,255,255,.76) !important;
}

html[data-theme="light"] body.legal-body-v104 .legal-v104-summary li{
  background: rgba(15,118,110,.08) !important;
  border-color: rgba(15,118,110,.14) !important;
}

html[data-theme="light"] body.legal-body-v104 .legal-v103-updated,
html[data-theme="light"] body.legal-body-v104 .legal-v104-updated,
html[data-theme="light"] body.legal-body-v104 .legal-v103-meta dt{
  color: rgba(15,23,42,.54) !important;
}

html[data-theme="light"] body.legal-body-v104 .legal-v103-meta-row{
  border-bottom-color: rgba(15,23,42,.08) !important;
}

html[data-theme="light"] body.legal-body-v104 .legal-v104-section a,
html[data-theme="light"] body.legal-body-v104 .legal-v103-meta a{
  color: #0f766e !important;
}

@media (min-width:1440px){
  body.legal-body-v104 .legal-v104-container{
    width: min(1180px, calc(100vw - 64px)) !important;
    max-width: min(1180px, calc(100vw - 64px)) !important;
  }

}

@media (max-width:760px){
  body.legal-body-v104 .legal-v104-container{
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
  }

  body.legal-body-v104 .legal-v104-hero{
    padding-top: 98px !important;
    padding-bottom: 24px !important;
  }

  body.legal-body-v104 .legal-v104-card{
    border-radius: 24px !important;
    padding: 14px !important;
    gap: 14px !important;
  }

  body.legal-body-v104 .legal-v104-summary{
    grid-template-columns: 1fr !important;
    align-items: start !important;
    border-radius: 20px !important;
  }

  body.legal-body-v104 .legal-v104-summary ul{
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  body.legal-body-v104 .legal-v103-updated, body.legal-body-v104 .legal-v104-updated{
    white-space: normal !important;
  }

  body.legal-body-v104 .legal-v104-section{
    border-radius: 20px !important;
  }

  body.legal-body-v104 .legal-v103-meta-row, body.legal-body-v104 .legal-v104-meta-row{
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    padding: 10px 0 !important;
  }

}

body.legal-body-v104 .legal-v104-container{
  width: min(var(--container, 1680px), calc(100vw - 96px)) !important;
  max-width: min(var(--container, 1680px), calc(100vw - 96px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.legal-body-v104 .legal-v104-hero{
  padding-top: clamp(112px, 9vw, 152px) !important;
  padding-bottom: clamp(26px, 4vw, 48px) !important;
}

body.legal-body-v104 .legal-v104-hero h1{
  max-width: 1120px !important;
}

body.legal-body-v104 .legal-v104-lead{
  max-width: 980px !important;
}

body.legal-body-v104 .legal-v104-card{
  max-width: 1180px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

@media (min-width:1440px){
  body.legal-body-v104 .legal-v104-container{
    width: min(var(--container, 1680px), calc(100vw - 112px)) !important;
    max-width: min(var(--container, 1680px), calc(100vw - 112px)) !important;
  }

  body.legal-body-v104 .legal-v104-card{
    max-width: 1240px !important;
  }

}

@media (max-width:980px){
  body.legal-body-v104 .legal-v104-container{
    width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
  }

  body.legal-body-v104 .legal-v104-card{
    max-width: none !important;
  }

}

@media (max-width:760px){
  body.legal-body-v104 .legal-v104-container{
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
  }

  body.legal-body-v104 .legal-v104-card{
    margin-left: auto !important;
    margin-right: auto !important;
  }

}

body.legal-body-v104 .legal-v104-hero{
  padding-top: clamp(78px, 6.5vw, 112px) !important;
  padding-bottom: clamp(18px, 3vw, 32px) !important;
}

body.legal-body-v104 .legal-v104-body{
  padding-top: 0 !important;
}

body.legal-body-v104 .legal-v104-hero .eyebrow{
  margin-bottom: 14px !important;
}

body.legal-body-v104 .legal-v104-hero h1{
  margin-top: 0 !important;
}

body.legal-body-v104 .legal-v104-lead{
  margin-top: 16px !important;
}

@media (max-width:760px){
  body.legal-body-v104 .legal-v104-hero{
    padding-top: 76px !important;
    padding-bottom: 18px !important;
  }

  body.legal-body-v104 .legal-v104-lead{
    margin-top: 12px !important;
  }

}

body.legal-body-v104 .legal-v104-summary h2{
  font-size: clamp(1.18rem, 1.7vw, 1.55rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -.035em !important;
}

body.legal-body-v104 .legal-v104-section h2{
  font-size: clamp(1.08rem, 1.35vw, 1.32rem) !important;
  line-height: 1.16 !important;
  letter-spacing: -.025em !important;
}

body.legal-body-v104 .legal-v104-lead{
  font-size: clamp(.98rem, 1.2vw, 1.1rem) !important;
}

@media (max-width:760px){
  body.legal-body-v104 .legal-v104-summary h2{
    font-size: 1.22rem !important;
  }

  body.legal-body-v104 .legal-v104-section h2{
    font-size: 1.08rem !important;
  }

}

body.legal-body-v104 .legal-v104-hero{
  padding-top: clamp(58px, 4.8vw, 84px) !important;
  padding-bottom: clamp(12px, 2vw, 22px) !important;
}

body.legal-body-v104 .legal-v104-hero .eyebrow{
  margin-bottom: 12px !important;
}

body.legal-body-v104 .legal-v104-hero h1{
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

body.legal-body-v104 .legal-v104-lead{
  margin-top: 14px !important;
}

body.legal-body-v104 .legal-v104-body{
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.legal-body-v104 .legal-v104-card{
  margin-top: 0 !important;
}

@media (max-width:760px){
  body.legal-body-v104 .legal-v104-hero{
    padding-top: 64px !important;
    padding-bottom: 14px !important;
  }

  body.legal-body-v104 .legal-v104-hero .eyebrow{
    margin-bottom: 10px !important;
  }

  body.legal-body-v104 .legal-v104-lead{
    margin-top: 10px !important;
  }

}

body.legal-body-v104 .legal-v104-page h2,
body.legal-body-v104 .legal-v104-summary h2,
body.legal-body-v104 .legal-v104-section h2{
  display: block !important;
  font-size: 1.5em !important;
  margin-block-start: 0.83em !important;
  margin-block-end: 0.83em !important;
  margin-inline-start: 0 !important;
  margin-inline-end: 0 !important;
  font-weight: bold !important;
  unicode-bidi: isolate !important;
  line-height: 1.18 !important;
  letter-spacing: normal !important;
  max-width: none !important;
}

body.legal-body-v104 .legal-v104-summary h2{
  margin-block-start: 0 !important;
}

body.legal-body-v104 .legal-v104-page h2,
body.legal-body-v104 .legal-v104-summary h2,
body.legal-body-v104 .legal-v104-section h2{
  font-size: clamp(2rem, 2.65vw, 3.45rem) !important;
  line-height: 1.08 !important;
}

:where(h1,
h2,
h3,
.hero-copy h1,
.section-head h1,
.section-head h2,
.section-head h3,
.ai-copy h1,
.ai-copy h2,
.ai-copy h3,
.contact-card h1,
.contact-card h2,
.contact-card h3,
.request-modal-head h1,
.request-modal-head h2,
.request-modal-head h3,
.legal-v104-hero h1,
.legal-v104-page h2,
.legal-v104-summary h2,
.legal-v104-section h2){
  hyphens: none !important;
  -webkit-hyphens: none !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  text-wrap: balance;
}

@media (max-width:760px){
  :where(h1,
  h2,
  h3,
  .hero-copy h1,
  .section-head h1,
  .section-head h2,
  .section-head h3,
  .ai-copy h1,
  .ai-copy h2,
  .ai-copy h3,
  .contact-card h1,
  .contact-card h2,
  .contact-card h3,
  .request-modal-head h1,
  .request-modal-head h2,
  .request-modal-head h3,
  .legal-v104-hero h1,
  .legal-v104-page h2,
  .legal-v104-summary h2,
  .legal-v104-section h2){
    width: 100% !important;
    max-width: none !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    text-wrap: balance;
  }

  h1, .hero-copy h1, .section-head h1, .ai-copy h1, .contact-card h1, .request-modal-head h1{
    font-size: clamp(2.35rem, 10.8vw, 3.35rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.045em !important;
  }

  h2, .section-head h2, .pricing-section .section-head h2, .ai-copy h2, .contact-card h2, .request-modal-head h2{
    font-size: clamp(1.95rem, 8.6vw, 2.85rem) !important;
    line-height: 1.07 !important;
    letter-spacing: -0.035em !important;
  }

  h3, .section-head h3, .ai-copy h3, .contact-card h3{
    font-size: clamp(1.35rem, 6.2vw, 1.95rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.018em !important;
  }

  body.legal-body-v104 .legal-v104-page h2,
  body.legal-body-v104 .legal-v104-summary h2,
  body.legal-body-v104 .legal-v104-section h2{
    font-size: clamp(1.65rem, 7.2vw, 2.35rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.025em !important;
  }

  .site-footer{
    gap: 18px !important;
  }

  .site-footer > nav:first-child{
    width: 100%;
  }

}

body.legal-body-v104 .site-header,
body.legal-body-v104 .site-header *,
body.legal-body-v104 .topbar,
body.legal-body-v104 .topbar *,
body.legal-body-v104 .main-nav,
body.legal-body-v104 .main-nav *,
body.legal-body-v104 .brand,
body.legal-body-v104 .brand *,
body.legal-body-v104 .language-switch,
body.legal-body-v104 .language-switch *,
body.legal-body-v104 .theme-toggle,
body.legal-body-v104 .nav-toggle{
  font-family: inherit;
}

body.legal-body-v104 .site-header{
  min-height: var(--header-height, 72px);
}

body.legal-body-v104 .topbar{
  min-height: var(--header-height, 72px);
}

body.legal-body-v104 .main-nav a,
body.legal-body-v104 .language-switch a,
body.legal-body-v104 .theme-toggle,
body.legal-body-v104 .nav-toggle{
  line-height: inherit;
}

.legal-v103-page .container, body.legal-body-v104 .legal-v104-container{
  width: var(--shell) !important;
  max-width: var(--shell) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.legal-v103-hero, body.legal-body-v104 .legal-v104-hero{
  padding-top: clamp(82px, 8vw, 150px) !important;
  padding-bottom: clamp(24px, 3vw, 44px) !important;
}

.legal-v103-body, body.legal-body-v104 .legal-v104-body{
  padding-top: 0 !important;
  padding-bottom: clamp(96px, 9vw, 160px) !important;
}

.legal-v103-card, body.legal-body-v104 .legal-v104-card{
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.legal-v103-summary,
.legal-v103-section,
body.legal-body-v104 .legal-v104-summary,
body.legal-body-v104 .legal-v104-section{
  width: 100% !important;
  max-width: none !important;
}

@media (max-width:980px){
  .legal-v103-page .container, body.legal-body-v104 .legal-v104-container{
    width: var(--shell) !important;
    max-width: var(--shell) !important;
  }

}

@media (max-width:760px){
  .legal-v103-hero, body.legal-body-v104 .legal-v104-hero{
    padding-top: 72px !important;
    padding-bottom: 22px !important;
  }

}

.legal-v103-hero, body.legal-body-v104 .legal-v104-hero{
  padding-top: clamp(42px, 4.4vw, 150px) !important;
  padding-bottom: clamp(24px, 3vw, 44px) !important;
}

.legal-v103-page .legal-v103-card h3,
.legal-v103-page .legal-v103-section h3,
.legal-v103-page .legal-v103-summary h3,
body.legal-body-v104 .legal-v104-card h3,
body.legal-body-v104 .legal-v104-section h3,
body.legal-body-v104 .legal-v104-summary h3,
body.legal-body-v104 .legal-v103-card h3,
body.legal-body-v104 .legal-v103-section h3,
body.legal-body-v104 .legal-v103-summary h3{
  margin: 0 0 0.7rem !important;
  max-width: none !important;
  font-size: clamp(1.22rem, 1.85vw, 1.94rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
  font-weight: 700 !important;
}

.legal-v103-page .legal-v103-card h2,
.legal-v103-page .legal-v103-section h2,
.legal-v103-page .legal-v103-summary h2,
body.legal-body-v104 .legal-v104-card h2,
body.legal-body-v104 .legal-v104-section h2,
body.legal-body-v104 .legal-v104-summary h2,
body.legal-body-v104 .legal-v103-card h2,
body.legal-body-v104 .legal-v103-section h2,
body.legal-body-v104 .legal-v103-summary h2{
  margin: 0 0 0.7rem !important;
  max-width: none !important;
  font-size: clamp(1.22rem, 1.85vw, 1.94rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
  font-weight: 700 !important;
}

@media (max-width:760px){
  .legal-v103-page .legal-v103-card h3,
  .legal-v103-page .legal-v103-section h3,
  .legal-v103-page .legal-v103-summary h3,
  body.legal-body-v104 .legal-v104-card h3,
  body.legal-body-v104 .legal-v104-section h3,
  body.legal-body-v104 .legal-v104-summary h3,
  body.legal-body-v104 .legal-v103-card h3,
  body.legal-body-v104 .legal-v103-section h3,
  body.legal-body-v104 .legal-v103-summary h3{
    font-size: clamp(1.13rem, 5.4vw, 1.62rem) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.028em !important;
  }

}

.legal-v103-page .legal-v103-card h3,
.legal-v103-page .legal-v103-section h3,
.legal-v103-page .legal-v103-summary h3,
body.legal-body-v104 .legal-v104-card h3,
body.legal-body-v104 .legal-v104-section h3,
body.legal-body-v104 .legal-v104-summary h3,
body.legal-body-v104 .legal-v103-card h3,
body.legal-body-v104 .legal-v103-section h3,
body.legal-body-v104 .legal-v103-summary h3{
  font-weight: 700 !important;
}

.legal-v103-page .legal-v103-card h2,
.legal-v103-page .legal-v103-section h2,
.legal-v103-page .legal-v103-summary h2,
.legal-v103-page .legal-v103-card h3,
.legal-v103-page .legal-v103-section h3,
.legal-v103-page .legal-v103-summary h3,
body.legal-body-v104 .legal-v104-card h2,
body.legal-body-v104 .legal-v104-section h2,
body.legal-body-v104 .legal-v104-summary h2,
body.legal-body-v104 .legal-v104-card h3,
body.legal-body-v104 .legal-v104-section h3,
body.legal-body-v104 .legal-v104-summary h3,
body.legal-body-v104 .legal-v103-card h2,
body.legal-body-v104 .legal-v103-section h2,
body.legal-body-v104 .legal-v103-summary h2,
body.legal-body-v104 .legal-v103-card h3,
body.legal-body-v104 .legal-v103-section h3,
body.legal-body-v104 .legal-v103-summary h3{
  margin: 0 0 0.7rem !important;
  max-width: none !important;
  font-size: clamp(1.22rem, 1.85vw, 1.94rem) !important;
  line-height: 1.14 !important;
  letter-spacing: -0.03em !important;
  font-weight: 700 !important;
}

@media (max-width:760px){
  .legal-v103-page .legal-v103-card h2,
  .legal-v103-page .legal-v103-section h2,
  .legal-v103-page .legal-v103-summary h2,
  .legal-v103-page .legal-v103-card h3,
  .legal-v103-page .legal-v103-section h3,
  .legal-v103-page .legal-v103-summary h3,
  body.legal-body-v104 .legal-v104-card h2,
  body.legal-body-v104 .legal-v104-section h2,
  body.legal-body-v104 .legal-v104-summary h2,
  body.legal-body-v104 .legal-v104-card h3,
  body.legal-body-v104 .legal-v104-section h3,
  body.legal-body-v104 .legal-v104-summary h3,
  body.legal-body-v104 .legal-v103-card h2,
  body.legal-body-v104 .legal-v103-section h2,
  body.legal-body-v104 .legal-v103-summary h2,
  body.legal-body-v104 .legal-v103-card h3,
  body.legal-body-v104 .legal-v103-section h3,
  body.legal-body-v104 .legal-v103-summary h3{
    font-size: clamp(1.13rem, 5.4vw, 1.62rem) !important;
    line-height: 1.16 !important;
    letter-spacing: -0.025em !important;
    font-weight: 700 !important;
  }

}

.legal-v103-hero h1, body.legal-body-v104 .legal-v104-hero h1{
  margin: 0 !important;
  max-width: none !important;
  font-size: clamp(1.86rem, 2.95vw, 3.38rem) !important;
  line-height: 1.07 !important;
  letter-spacing: -0.036em !important;
}

@media (max-width:760px){
  .legal-v103-hero h1, body.legal-body-v104 .legal-v104-hero h1{
    font-size: clamp(1.72rem, 7vw, 2.34rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
  }

}

.price-grid{
  display: grid !important;
  align-items: start !important;
}

.price-card{
  align-self: start !important;
  min-height: auto !important;
  height: auto !important;
  margin-top: 0 !important;
}

.price-card .btn{
  margin-top: 24px !important;
}

@media (min-width:1321px){
  .price-grid{
    grid-template-columns: repeat(4,minmax(0,1fr)) !important;
    gap: 22px !important;
  }
}

@media (min-width:761px) and (max-width:1320px){
  .price-grid{
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    gap: 22px !important;
  }
}

@media (max-width:760px){
  .price-grid{
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

.ai-showcase{
  grid-template-columns: minmax(0,1.02fr) minmax(360px,.86fr) !important;
  gap: clamp(24px,3.2vw,42px) !important;
}

.ai-copy{
  max-width: 820px !important;
}

.ai-mini-grid{
  width: 100% !important;
  max-width: 100% !important;
  grid-template-columns: repeat(2,minmax(0,1fr)) !important;
}

@media (min-width:981px) and (max-width:1320px){
  .ai-showcase{
    grid-template-columns: minmax(0,1fr) minmax(340px,.84fr) !important;
    gap: 26px !important;
  }

  .ai-copy{
    max-width: 100% !important;
  }
}

@media (max-width:980px){
  .ai-showcase{
    grid-template-columns: 1fr !important;
  }

  .ai-copy{
    max-width: none !important;
  }
}

@media (min-width:981px){
  .ai-panel{
    transform: translateY(12px);
  }
}

/* Template-Auswahl und Template-Preview im Preisraster */
.template-select-field {
  display: grid;
  gap: 9px;
  margin: 22px 0 18px;
  color: rgba(248,245,239,.82);
  font-size: .88rem;
  font-weight: 850;
  letter-spacing: .01em;
}

.template-select-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 44px 0 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.11),rgba(255,255,255,.055)),
    rgba(8,17,31,.72);
  color: #ffffff;
  font: inherit;
  font-size: .94rem;
  font-weight: 760;
  line-height: 1.2;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image:
    linear-gradient(45deg,transparent 50%,rgba(255,255,255,.86) 50%),
    linear-gradient(135deg,rgba(255,255,255,.86) 50%,transparent 50%),
    linear-gradient(180deg,rgba(255,255,255,.11),rgba(255,255,255,.055));
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%,
    0 0;
  background-size:
    6px 6px,
    6px 6px,
    100% 100%;
  background-repeat: no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 12px 30px rgba(0,0,0,.14);
  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.template-select-field select:hover {
  border-color: rgba(98,212,255,.34);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 16px 34px rgba(0,0,0,.18);
}

.template-select-field select:focus-visible {
  border-color: rgba(87,240,177,.58);
  box-shadow:
    0 0 0 4px rgba(87,240,177,.12),
    inset 0 1px 0 rgba(255,255,255,.10),
    0 16px 34px rgba(0,0,0,.18);
}

.template-select-field select option {
  color: #08111f;
  background: #ffffff;
}

.template-select-field select.field-error {
  border-color: rgba(255,112,112,.78);
  box-shadow:
    0 0 0 4px rgba(255,112,112,.14),
    inset 0 1px 0 rgba(255,255,255,.08),
    0 12px 30px rgba(0,0,0,.14);
}

.template-preview-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 34px;
  margin: -6px 0 18px;
  padding: 0 12px;
  border: 1px solid rgba(98,212,255,.20);
  border-radius: 999px;
  background: rgba(98,212,255,.06);
  color: rgba(248,245,239,.72);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .01em;
  pointer-events: none;
  opacity: .52;
  transition:
    opacity .18s ease,
    border-color .18s ease,
    background .18s ease,
    color .18s ease,
    transform .18s ease;
}

.template-preview-link::after {
  content: "↗";
  margin-left: 7px;
  font-size: .76rem;
  line-height: 1;
  opacity: .76;
}

.template-preview-link.is-active {
  color: rgba(248,245,239,.92);
  border-color: rgba(98,212,255,.34);
  background: rgba(98,212,255,.10);
  pointer-events: auto;
  opacity: 1;
}

.template-preview-link.is-active:hover,
.template-preview-link.is-active:focus-visible {
  transform: translateY(-1px);
  color: #ffffff;
  border-color: rgba(87,240,177,.42);
  background: rgba(87,240,177,.10);
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card:hover,
.price-card:focus-within {
  transform: none !important;
}

.price-card ul {
  margin-bottom: 0;
}

.price-card .product-request-btn {
  align-self: flex-start;
  width: auto;
  min-width: 150px;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 22px;
  border: 1px solid rgba(111,240,214,.46);
  border-radius: 999px;
  background: linear-gradient(135deg,#72e6ff 0%,#58efb0 100%);
  color: #06111d !important;
  font-size: .92rem;
  font-weight: 760;
  letter-spacing: 0;
  box-shadow:
    0 14px 30px rgba(87,240,177,.18),
    0 8px 20px rgba(98,212,255,.12),
    inset 0 1px 0 rgba(255,255,255,.36);
}

.price-card .product-request-btn:hover,
.price-card .product-request-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(111,240,214,.62);
  background: linear-gradient(135deg,#82ecff 0%,#65f4bd 100%);
  color: #06111d !important;
  box-shadow:
    0 18px 38px rgba(87,240,177,.22),
    0 10px 24px rgba(98,212,255,.15),
    inset 0 1px 0 rgba(255,255,255,.42);
}

.price-card .product-request-btn:active {
  transform: translateY(0);
  background: linear-gradient(135deg,#67dff6 0%,#4ee6a6 100%);
  box-shadow:
    0 9px 22px rgba(87,240,177,.16),
    0 6px 16px rgba(98,212,255,.10),
    inset 0 1px 0 rgba(255,255,255,.28);
}

.price-card .product-request-btn.is-disabled,
.price-card .product-request-btn[aria-disabled="true"] {
  cursor: not-allowed;
  filter: saturate(.62);
  opacity: .66;
}

.price-card .product-request-btn.is-disabled:hover,
.price-card .product-request-btn.is-disabled:focus-visible,
.price-card .product-request-btn[aria-disabled="true"]:hover,
.price-card .product-request-btn[aria-disabled="true"]:focus-visible {
  transform: none;
}

.template-select-hint {
  margin: -8px 0 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255,190,92,.24);
  border-radius: 14px;
  background: rgba(242,189,107,.09);
  color: rgba(248,245,239,.86);
  font-size: .82rem;
  font-weight: 760;
  line-height: 1.42;
}

.template-select-hint[hidden] {
  display: none !important;
}

.template-select-hint.is-visible {
  display: block;
}

.request-template-display-field input[readonly] {
  cursor: default;
  color: rgba(248,245,239,.94);
  border-color: rgba(87,240,177,.34);
  background:
    linear-gradient(135deg,rgba(98,212,255,.10),rgba(87,240,177,.09)),
    rgba(255,255,255,.07);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 10px 24px rgba(87,240,177,.08);
}

.request-template-display-field input[readonly]:focus {
  border-color: rgba(87,240,177,.46);
  box-shadow:
    0 0 0 4px rgba(87,240,177,.10),
    inset 0 1px 0 rgba(255,255,255,.08),
    0 10px 24px rgba(87,240,177,.08);
}

html[data-theme="light"] .template-select-field {
  color: rgba(15,23,42,.78);
}

html[data-theme="light"] .template-select-field select {
  border-color: rgba(15,23,42,.13);
  background:
    linear-gradient(180deg,rgba(255,255,255,.98),rgba(245,249,255,.86)),
    #ffffff;
  color: #0f172a;
  background-image:
    linear-gradient(45deg,transparent 50%,rgba(15,23,42,.78) 50%),
    linear-gradient(135deg,rgba(15,23,42,.78) 50%,transparent 50%),
    linear-gradient(180deg,rgba(255,255,255,.98),rgba(245,249,255,.86));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.75),
    0 10px 26px rgba(15,23,42,.08);
}

html[data-theme="light"] .template-select-field select:hover {
  border-color: rgba(22,136,180,.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.8),
    0 14px 30px rgba(15,23,42,.10);
}

html[data-theme="light"] .template-select-field select:focus-visible {
  border-color: rgba(15,159,126,.48);
  box-shadow:
    0 0 0 4px rgba(15,159,126,.12),
    inset 0 1px 0 rgba(255,255,255,.8),
    0 14px 30px rgba(15,23,42,.10);
}

html[data-theme="light"] .template-select-field select.field-error {
  border-color: rgba(220,38,38,.66);
  box-shadow:
    0 0 0 4px rgba(220,38,38,.10),
    inset 0 1px 0 rgba(255,255,255,.8),
    0 10px 26px rgba(15,23,42,.08);
}

html[data-theme="light"] .template-preview-link {
  border-color: rgba(22,136,180,.18);
  background: rgba(98,212,255,.08);
  color: rgba(15,23,42,.58);
}

html[data-theme="light"] .template-preview-link.is-active {
  color: rgba(15,23,42,.82);
  border-color: rgba(22,136,180,.26);
  background: rgba(98,212,255,.12);
}

html[data-theme="light"] .template-preview-link.is-active:hover,
html[data-theme="light"] .template-preview-link.is-active:focus-visible {
  color: #0f172a;
  border-color: rgba(15,159,126,.34);
  background: rgba(87,240,177,.14);
}

html[data-theme="light"] .price-card .product-request-btn {
  border-color: rgba(22,136,180,.22);
  background: linear-gradient(135deg,#72e6ff 0%,#58efb0 100%);
  color: #06111d !important;
  box-shadow:
    0 12px 28px rgba(22,136,180,.13),
    0 8px 18px rgba(15,159,126,.10),
    inset 0 1px 0 rgba(255,255,255,.70);
}

html[data-theme="light"] .price-card .product-request-btn:hover,
html[data-theme="light"] .price-card .product-request-btn:focus-visible {
  border-color: rgba(15,159,126,.32);
  background: linear-gradient(135deg,#82ecff 0%,#65f4bd 100%);
  color: #06111d !important;
  box-shadow:
    0 16px 34px rgba(22,136,180,.15),
    0 10px 22px rgba(15,159,126,.12),
    inset 0 1px 0 rgba(255,255,255,.78);
}

html[data-theme="light"] .template-select-hint {
  border-color: rgba(180,112,22,.22);
  background: rgba(242,189,107,.14);
  color: rgba(15,23,42,.78);
}

html[data-theme="light"] .request-template-display-field input[readonly] {
  color: #0f172a;
  border-color: rgba(15,159,126,.28);
  background:
    linear-gradient(135deg,rgba(98,212,255,.12),rgba(87,240,177,.10)),
    rgba(255,255,255,.82);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.76),
    0 10px 24px rgba(15,159,126,.08);
}

html[dir="rtl"] .template-select-field select {
  padding: 0 16px 0 44px;
  background-position:
    22px 50%,
    16px 50%,
    0 0;
}

html[dir="rtl"] .template-preview-link {
  align-self: flex-end;
}

html[dir="rtl"] .template-preview-link::after {
  margin-left: 0;
  margin-right: 7px;
}

@media (max-width:760px) {
  .template-select-field {
    margin: 20px 0 16px;
  }

  .template-select-field select {
    min-height: 50px;
    border-radius: 15px;
    font-size: .95rem;
  }

  .template-preview-link {
    align-self: flex-start;
    width: auto;
    min-height: 34px;
    margin: -4px 0 18px;
  }

  .price-card .product-request-btn {
    align-self: flex-start;
    width: auto;
    min-width: 150px;
    min-height: 44px;
    margin-top: 18px;
    padding: 0 22px;
  }

  html[dir="rtl"] .template-preview-link {
    align-self: flex-end;
  }
}

/* Template-Preview-Link Klickfix */
.template-preview-link.is-active,
.template-preview-link[aria-disabled="false"] {
  pointer-events: auto !important;
  cursor: pointer;
  opacity: 1;
}

.template-preview-link[aria-disabled="true"] {
  pointer-events: none;
  cursor: default;
}

/* Mobile-Komplettfix für x25.website */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    min-width: 0;
  }

  .shell {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .section {
    padding-block: 62px;
  }

  .section-head,
  .section-head.wide {
    max-width: 100%;
    margin-bottom: 28px;
  }

  .section-head p,
  .section-head.wide p,
  .lead,
  .process-lead,
  .seo-geo-copy p,
  .ai-copy p,
  .contact-card p,
  .contact-referral-card p {
    max-width: 100%;
    font-size: .98rem;
    line-height: 1.62;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: .68rem;
    letter-spacing: .19em;
  }

  h1 {
    font-size: clamp(2.46rem, 11.8vw, 3.35rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -.052em;
  }

  h2 {
    font-size: clamp(1.92rem, 8.6vw, 2.56rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -.046em;
  }

  h3 {
    font-size: 1.08rem;
  }

  .site-header {
    width: 100%;
    min-height: 68px;
  }

  .mainnav {
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .hero {
    min-height: auto;
    padding-block: 44px 64px;
  }

  .hero-actions,
  .contact-actions,
  .ai-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .ai-actions .btn {
    width: 100%;
  }

  .trust-strip {
    gap: 10px;
    margin-top: 24px;
  }

  .trust-strip span {
    min-height: 48px;
    padding: 11px 12px;
    border-radius: 16px;
    font-size: .86rem;
  }

  .hero-visual {
    min-height: 360px;
  }

  .orbit-card {
    width: min(176px, 48vw);
    border-radius: 20px;
  }

  .orbit-card strong {
    font-size: .92rem;
  }

  .orbit-card span {
    font-size: .78rem;
  }

  .screen-card {
    border-radius: 24px;
  }

  .feature-grid,
  .branch-grid,
  .branch-grid-expanded,
  .idea-grid,
  .seo-geo-grid,
  .seo-geo-mini-grid,
  .ai-mini-grid,
  .price-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .feature-card,
  .branch-card,
  .idea-card,
  .seo-geo-card,
  .ai-mini-card,
  .price-card,
  .contact-card,
  .contact-referral-card,
  .process-note,
  .ai-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: 22px;
  }

  .feature-card,
  .branch-card,
  .idea-card,
  .price-card,
  .seo-geo-card {
    min-height: auto;
    padding: 22px;
  }

  .branch-card p,
  .feature-card p,
  .idea-card span,
  .seo-geo-card p,
  .ai-mini-body p,
  .price-card p,
  .price-card li {
    font-size: .92rem;
    line-height: 1.55;
  }

  .branch-icon,
  .feature-card .icon {
    margin-bottom: 16px;
  }

  .branch-card a,
  .branch-card span {
    margin-top: 8px;
  }

  .tag {
    max-width: 100%;
    white-space: normal;
    line-height: 1.18 !important;
  }

  .pricing-section .section-head {
    margin-bottom: 24px;
  }

  .price-card {
    gap: 0;
  }

  .price-card h3 {
    font-size: 1.34rem;
    line-height: 1.12;
  }

  .price-card ul {
    padding-left: 1.1rem;
  }

  html[dir="rtl"] .price-card ul {
    padding-left: 0;
    padding-right: 1.1rem;
  }

  .template-select-field {
    margin: 18px 0 14px;
  }

  .template-select-field select {
    width: 100%;
    max-width: 100%;
  }

  .template-preview-link {
    margin: -2px 0 14px;
  }

  .price-card .product-request-btn {
    align-self: flex-start;
    width: auto;
    max-width: 100%;
    min-width: 148px;
    min-height: 42px;
    margin-top: 16px;
  }

  .template-select-hint {
    margin: -4px 0 12px;
    font-size: .8rem;
  }

  .seo-geo-layout,
  .process-layout,
  .contact-layout,
  .ai-showcase {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 22px;
  }

  .seo-geo-mini-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
  }

  .seo-geo-mini-item {
    min-width: 0;
    padding: 11px 10px;
  }

  .seo-geo-mini-label {
    font-size: .82rem;
    line-height: 1.25;
  }

  .process-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .process-pills span {
    min-width: 0;
    max-width: 100%;
    font-size: .82rem;
  }

  .steps,
  .process-steps {
    gap: 12px;
  }

  .steps li,
  .step-card {
    grid-template-columns: 48px 1fr !important;
    gap: 12px;
    min-height: auto;
    padding: 14px;
    border-radius: 20px;
  }

  .steps strong,
  .step-card strong {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    font-size: .86rem;
  }

  .step-body span {
    font-size: .93rem;
    line-height: 1.28;
  }

  .step-body small {
    font-size: .82rem;
    line-height: 1.45;
  }

  html[dir="rtl"] .steps li,
  html[dir="rtl"] .step-card {
    grid-template-columns: 1fr 48px !important;
  }

  .ai-showcase {
    align-items: stretch;
  }

  .ai-copy {
    max-width: 100%;
  }

  .ai-mini-grid {
    margin-top: 22px;
  }

  .ai-mini-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 16px;
  }

  .ai-mini-icon {
    width: 42px;
    height: 42px;
  }

  .ai-panel {
    padding: 22px;
  }

  .ai-panel-top {
    gap: 8px;
  }

  .ai-label {
    min-height: 34px;
    padding: 8px 10px;
    font-size: .68rem;
  }

  .ai-feature-list {
    gap: 10px;
  }

  .ai-feature-list li {
    padding: 12px 13px;
    border-radius: 16px;
  }

  .contact-layout {
    align-items: stretch;
  }

  .contact-card,
  .contact-referral-card {
    padding: 24px 22px;
  }

  .request-overlay {
    align-items: flex-start;
    padding: 12px;
    overflow-y: auto;
  }

  .request-modal {
    width: 100%;
    max-width: 100%;
    max-height: none;
    margin: 8px 0 22px;
    padding: 22px;
    border-radius: 22px;
  }

  .request-modal-head h2 {
    font-size: clamp(2rem, 10vw, 2.72rem) !important;
  }

  .request-product-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .request-product-summary span {
    max-width: 100%;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .request-form label,
  .request-form input,
  .request-form select,
  .request-form textarea {
    max-width: 100%;
  }

  .request-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .request-actions .btn {
    width: 100%;
  }

  .request-consent-switch {
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
  }

  .request-consent-switch-copy {
    font-size: .82rem;
    line-height: 1.45;
  }

  .site-footer {
    gap: 18px;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    width: 100%;
  }

  .site-footer nav a {
    min-width: 0;
    font-size: .86rem;
  }

  .cookie-banner {
    max-width: calc(100vw - 28px);
    border-radius: 20px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .shell {
    width: calc(100vw - 22px);
    max-width: calc(100vw - 22px);
  }

  .section {
    padding-block: 54px;
  }

  h1 {
    font-size: clamp(2.24rem, 11.8vw, 3rem) !important;
  }

  h2 {
    font-size: clamp(1.76rem, 8.8vw, 2.34rem) !important;
  }

  .feature-card,
  .branch-card,
  .idea-card,
  .price-card,
  .seo-geo-card,
  .contact-card,
  .contact-referral-card,
  .ai-panel {
    padding: 19px;
    border-radius: 20px;
  }

  .seo-geo-mini-grid {
    grid-template-columns: 1fr !important;
  }

  .ai-mini-card {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    grid-template-columns: 1fr;
  }
}


/* Marketing entry offers · 2026-06-10 */
.small-offers-section{position:relative;overflow:hidden;border-radius:clamp(32px,3.6vw,56px);background:linear-gradient(135deg,rgba(8,17,31,.96),rgba(13,34,58,.94));border:1px solid rgba(148,163,184,.22);box-shadow:0 30px 100px rgba(0,0,0,.24);padding-top:clamp(2.1rem,3.6vw,4.4rem);padding-bottom:clamp(2.1rem,3.6vw,4.4rem)}
.small-offers-section:before{content:"";position:absolute;inset:-25% -12% auto auto;width:42rem;height:42rem;border-radius:50%;background:radial-gradient(circle,rgba(132,204,22,.18),transparent 68%);pointer-events:none}.small-offers-section>*{position:relative}.small-offers-section .section-head h2,.small-offers-section .section-head p,.small-offers-section .eyebrow{color:#fff}.small-offers-section .section-head p{color:rgba(226,232,240,.82)}
.small-offer-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(1rem,1.4vw,1.6rem)}.small-offer-card{background:rgba(255,255,255,.08);border:1px solid rgba(226,232,240,.16);border-radius:30px;padding:clamp(1.15rem,1.7vw,1.7rem);box-shadow:0 18px 46px rgba(0,0,0,.18);backdrop-filter:blur(14px)}.small-offer-card h3{color:#fff;font-size:clamp(1.35rem,1.55vw,2rem);line-height:1.12;margin:.45rem 0 .55rem}.small-offer-card p{color:rgba(226,232,240,.78)}.small-offer-card .tag{display:inline-flex;width:max-content;border:1px solid rgba(132,204,22,.34);background:rgba(132,204,22,.12);color:#d9f99d;border-radius:999px;padding:.38rem .65rem;font-weight:900;font-size:.8rem}.small-offer-card ul{margin:1rem 0 0;padding-left:1.15rem;color:rgba(226,232,240,.86);line-height:1.7}.small-offer-actions{display:flex;gap:.75rem;flex-wrap:wrap;margin-top:1.2rem}.check-page .check-hero{width:min(var(--shell),var(--max));margin:clamp(1.5rem,3.6vw,4.2rem) auto 0;border-radius:clamp(34px,4vw,64px);padding:clamp(2rem,5vw,6rem);background:linear-gradient(135deg,#07111f,#10243d);border:1px solid rgba(148,163,184,.24);box-shadow:0 32px 110px rgba(0,0,0,.3)}.check-page .check-hero h1,.check-page .check-hero p,.check-page .check-hero .eyebrow{color:#fff}.check-page .check-hero p{max-width:980px;color:rgba(226,232,240,.84)}.check-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}.check-card,.check-list-card{background:rgba(255,255,255,.94);border:1px solid rgba(229,234,243,.95);border-radius:30px;padding:clamp(1.1rem,1.8vw,1.8rem);box-shadow:var(--soft)}.check-card h3{font-size:clamp(1.25rem,1.5vw,1.85rem)}.check-card strong{display:block;font-size:clamp(1.6rem,2vw,2.5rem);margin:.45rem 0;color:var(--accent,#84cc16)}.check-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;margin-top:1rem}.check-list-card ul,.check-list-card ol{margin:.8rem 0 0;padding-left:1.15rem;color:var(--muted);line-height:1.75}.check-cta{width:min(var(--shell),var(--max));margin:1.2rem auto 0;display:flex;gap:.75rem;flex-wrap:wrap}.check-page .site-footer{margin-top:clamp(2rem,4vw,4rem)}
html[data-theme="light"] .small-offers-section{background:linear-gradient(135deg,#101828,#17324f)}
@media(max-width:980px){.small-offer-grid,.check-grid{grid-template-columns:1fr}.check-list{grid-template-columns:1fr}}

/* v7 Website-Check detail pages: native x25.website spacing, desktop/mobile safe */
.website-check-page{padding-top:clamp(52px,5.2vw,92px)!important;padding-bottom:clamp(58px,5.6vw,104px)!important;}
.website-check-page .check-hero-head h1,.website-check-teaser .check-hero-head h2{max-width:none!important;margin:0!important;font-size:clamp(2.45rem,5.2vw,5.7rem)!important;line-height:.98!important;letter-spacing:-.065em!important;}
.website-check-page .check-hero-head p,.website-check-teaser .check-hero-head p{max-width:none!important;line-height:1.68!important;}
.check-offer-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(16px,1.6vw,26px);align-items:stretch;margin-top:clamp(22px,2.5vw,36px);}
.check-offer-card{min-height:auto!important;display:flex;flex-direction:column;}
.check-offer-card ul{margin-top:auto!important;}
.check-detail-grid{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(280px,.9fr) minmax(280px,.9fr);gap:clamp(16px,1.7vw,26px);margin-top:clamp(18px,2vw,30px);}
.check-panel,.check-step-grid,.check-cta-card{border:1px solid rgba(255,255,255,.15);border-radius:30px;background:linear-gradient(180deg,rgba(255,255,255,.095),rgba(255,255,255,.045));box-shadow:0 24px 74px rgba(0,0,0,.20);padding:clamp(22px,2vw,34px);}
.check-panel h2,.check-step-grid h2,.check-cta-card h2{margin:0 0 14px!important;font-size:clamp(1.55rem,2vw,2.4rem)!important;line-height:1.08!important;letter-spacing:-.04em!important;}
.check-mini-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}
.check-mini-card,.check-step{display:flex;gap:12px;align-items:flex-start;border:1px solid rgba(255,255,255,.12);border-radius:18px;background:rgba(255,255,255,.055);padding:14px;min-width:0;}
.check-mini-card span,.check-step span{flex:0 0 auto;display:inline-grid;place-items:center;width:34px;height:34px;border-radius:12px;background:linear-gradient(135deg,var(--blue),var(--green));color:#07111d;font-weight:850;font-size:.78rem;}
.check-mini-card p,.check-step p{margin:0!important;line-height:1.55!important;color:rgba(248,245,239,.78);}
.check-clean-list{display:grid;gap:12px;margin:0!important;padding:0!important;list-style:none!important;}
.check-clean-list li{position:relative;margin:0!important;padding-left:24px!important;color:rgba(248,245,239,.78);line-height:1.6!important;}
.check-clean-list li:before{content:"";position:absolute;left:0;top:.6em;width:9px;height:9px;border-radius:999px;background:var(--green);box-shadow:0 0 0 5px rgba(87,240,177,.10);}
.check-step-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:clamp(18px,2vw,30px);}
.check-step-grid h2{grid-column:1 / -1;}
.check-cta-card{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);align-items:center;gap:clamp(18px,2vw,30px);margin-top:clamp(18px,2vw,30px);background:radial-gradient(circle at 100% 0%,rgba(87,240,177,.16),transparent 35%),linear-gradient(180deg,rgba(255,255,255,.11),rgba(255,255,255,.052));}
.check-cta-card p{margin:0!important;line-height:1.65!important;color:rgba(248,245,239,.78);}.check-actions{justify-content:flex-end!important;margin:0!important;}
html[data-theme="light"] .check-panel,html[data-theme="light"] .check-step-grid,html[data-theme="light"] .check-cta-card{border-color:rgba(15,23,42,.10);background:#fff;box-shadow:0 22px 62px rgba(15,23,42,.08);}html[data-theme="light"] .check-mini-card,html[data-theme="light"] .check-step{border-color:rgba(15,23,42,.09);background:rgba(15,23,42,.035);}html[data-theme="light"] .check-mini-card p,html[data-theme="light"] .check-step p,html[data-theme="light"] .check-clean-list li,html[data-theme="light"] .check-cta-card p{color:rgba(15,23,42,.72);}
@media(max-width:1180px){.check-detail-grid{grid-template-columns:1fr 1fr;}.check-panel-large{grid-column:1 / -1;}.check-step-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.check-cta-card{grid-template-columns:1fr;}.check-actions{justify-content:flex-start!important;}}
@media(max-width:860px){.check-offer-grid,.check-detail-grid,.check-mini-grid,.check-step-grid{grid-template-columns:1fr!important;}.website-check-page{padding-top:clamp(38px,9vw,58px)!important;padding-bottom:clamp(42px,10vw,68px)!important;}.website-check-page .check-hero-head h1,.website-check-teaser .check-hero-head h2{font-size:clamp(2.05rem,10vw,3.35rem)!important;}.check-panel,.check-step-grid,.check-cta-card{border-radius:22px;padding:20px;}.check-mini-card,.check-step{border-radius:16px;padding:13px;}.check-actions,.check-actions .btn{width:100%!important;}.check-actions .btn{justify-content:center!important;}}
