:root{
  --ff-white:#ffffff;
  --ff-bg:#ffffff;
  --ff-bg-soft:#f4f8ff;
  --ff-bg-blue:#eef5ff;
  --ff-navy:#061a3a;
  --ff-navy-2:#092754;
  --ff-blue-dark:#0a3c91;
  --ff-blue:#0b5cff;
  --ff-blue-2:#1877f2;
  --ff-blue-3:#4d9cff;
  --ff-blue-soft:#dcecff;
  --ff-blue-pale:#f0f6ff;
  --ff-text:#071b3a;
  --ff-text-soft:#37516f;
  --ff-muted:#6b7f98;
  --ff-line:rgba(7,27,58,.12);
  --ff-line-strong:rgba(11,92,255,.26);
  --ff-success:#087a43;
  --ff-danger:#c03434;
  --ff-shadow:0 18px 50px rgba(6,26,58,.10);
  --ff-shadow-strong:0 28px 80px rgba(6,26,58,.16);
  --ff-radius:28px;
  --ff-radius-md:20px;
  --ff-radius-sm:14px;
  --ff-font:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  --ff-topbar-h:92px;
  --ff-productnav-h:58px;
  --ff-header-h:150px;
  --ff-transition:220ms ease;
}

*,
*::before,
*::after{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--ff-header-h) + 28px);
}

html,
body{
  min-height:100%;
  margin:0;
  padding:0;
  background:var(--ff-bg);
}

body{
  font-family:var(--ff-font);
  color:var(--ff-text);
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{max-width:100%;display:block}
a{color:var(--ff-blue);text-decoration:none}
a:hover{color:var(--ff-navy)}
button,input,textarea,select{font:inherit}

::selection{background:var(--ff-blue);color:#fff}

.skip-link{
  position:absolute;
  left:-9999px;
  top:12px;
  z-index:99999;
}

.skip-link:focus{
  left:12px;
  position:fixed;
  padding:.7rem 1rem;
  border-radius:999px;
  background:var(--ff-blue);
  color:#fff;
}

/* HEADER */

.ff-site-header{
  z-index:1040;
  background:#fff;
  box-shadow:0 10px 34px rgba(6,26,58,.10);
}

.ff-topbar{
  height:var(--ff-topbar-h);
  background:linear-gradient(90deg,var(--ff-navy),var(--ff-blue-dark));
  color:#fff;
}

.ff-topbar-inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
}

.ff-brand{
  display:inline-flex;
  align-items:center;
  color:#fff;
  min-width:0;
  margin-left:-2cm;
}

.ff-brand:hover{color:#fff;opacity:.85}

.ff-brand-logo{
  width:155px;
  height:auto;
  object-fit:contain;
  object-position:left center;
  display:block;
  margin-top:8px;
  filter:brightness(0) invert(1);
}

.ff-top-actions{
  display:flex;
  align-items:center;
  gap:1.35rem;
}

.ff-top-action{
  color:#fff;
  font-size:.96rem;
  font-weight:780;
  line-height:1;
  white-space:nowrap;
}

.ff-top-action:hover{color:var(--ff-blue-soft)}

.ff-top-phone{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
}

.ff-mobile-actions{
  display:none;
  align-items:center;
  gap:.65rem;
}

.ff-mobile-contact{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.52rem .95rem;
  border-radius:999px;
  background:#fff;
  color:var(--ff-navy);
  font-weight:900;
}

/* MENU */

.ff-menu{position:relative}

.ff-menu-btn{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  border:1px solid rgba(255,255,255,.26);
  background:rgba(255,255,255,.10);
  color:#fff;
  border-radius:14px;
  cursor:pointer;
  transition:background var(--ff-transition),color var(--ff-transition),border-color var(--ff-transition);
}

.ff-menu-btn span{
  width:17px;
  height:2px;
  border-radius:999px;
  background:currentColor;
}

.ff-menu-btn:hover{
  background:#fff;
  color:var(--ff-navy);
  border-color:#fff;
}

.ff-menu-panel{
  position:absolute;
  top:calc(100% + 14px);
  right:0;
  min-width:292px;
  display:none;
  padding:.5rem;
  background:#fff;
  border:1px solid var(--ff-line);
  border-radius:20px;
  box-shadow:0 24px 70px rgba(6,26,58,.18);
  z-index:5000;
}

.ff-menu.open .ff-menu-panel{
  display:grid;
  gap:.15rem;
}

.ff-menu-panel a{
  display:flex;
  align-items:center;
  min-height:44px;
  padding:.72rem .9rem;
  color:var(--ff-navy);
  font-weight:820;
  border-radius:14px;
  transition:background var(--ff-transition),color var(--ff-transition);
}

.ff-menu-panel a:hover{
  background:var(--ff-blue-pale);
  color:var(--ff-blue-dark);
}

/* PRODUCT NAV */

.ff-productnav{
  height:var(--ff-productnav-h);
  background:#fff;
  border-bottom:1px solid var(--ff-line);
}

.ff-productnav-inner{
  height:100%;
  display:flex;
  align-items:stretch;
  gap:.2rem;
  overflow-x:auto;
  scrollbar-width:none;
}

.ff-productnav-inner::-webkit-scrollbar{display:none}

.ff-productnav-link{
  position:relative;
  min-width:max-content;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 1.1rem;
  color:var(--ff-navy);
  font-weight:850;
  font-size:.96rem;
  border-bottom:4px solid transparent;
  transition:background var(--ff-transition),border-color var(--ff-transition),color var(--ff-transition);
}

.ff-productnav-link:hover,
.ff-productnav-link.active{
  color:var(--ff-blue-dark);
  background:var(--ff-blue-pale);
  border-bottom-color:var(--ff-blue);
}

/* GLOBAL */

main{
  padding-top:var(--ff-header-h);
  background:#fff;
}

.ff-section{
  position:relative;
  padding:clamp(4.6rem,7vw,7.4rem) 0;
  background:#fff;
}

.ff-section-soft{
  background:
    radial-gradient(circle at 10% 0%,rgba(77,156,255,.12),transparent 32%),
    linear-gradient(180deg,#f8fbff 0%,#f2f7ff 100%);
}

.ff-section-blue{
  background:
    radial-gradient(circle at 16% 18%,rgba(77,156,255,.25),transparent 30%),
    linear-gradient(135deg,var(--ff-navy) 0%,var(--ff-blue-dark) 58%,var(--ff-blue) 100%);
  color:#fff;
  overflow:hidden;
}

.ff-section-head{
  max-width:880px;
  margin-bottom:2.9rem;
}

.ff-section-head.text-center{
  margin-left:auto;
  margin-right:auto;
}

.ff-section-label{
  display:inline-flex;
  align-items:center;
  width:max-content;
  margin-bottom:.9rem;
  padding:.42rem .72rem;
  background:var(--ff-blue-pale);
  color:var(--ff-blue-dark);
  border:1px solid rgba(11,92,255,.15);
  border-radius:999px;
  font-size:.76rem;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.075em;
}

.ff-section-label-light{
  background:rgba(255,255,255,.14);
  color:#fff;
  border-color:rgba(255,255,255,.26);
}

.ff-section-head h2,
.ff-split-content h2,
.ff-system-content h2,
#kontakt-title{
  margin:0;
  color:var(--ff-navy);
  font-size:clamp(2.15rem,4.4vw,3.8rem);
  line-height:1.02;
  letter-spacing:-.065em;
  font-weight:950;
  text-wrap:balance;
}

.ff-section-blue h2{color:#fff}

.ff-section-head p,
.ff-split-content p,
.ff-system-content p,
.ff-contact-main > p{
  margin:.95rem 0 0;
  color:var(--ff-text-soft);
  font-size:1.08rem;
  line-height:1.75;
}

.ff-section-blue p{color:rgba(255,255,255,.82)}

/* HERO */

.ff-hero{
  position:relative;
  padding:0;
  height:calc(100vh - var(--ff-header-h));
  min-height:560px;
  max-height:960px;
  overflow:hidden;
  background:
    radial-gradient(circle at 15% 8%,rgba(77,156,255,.22),transparent 28%),
    radial-gradient(circle at 85% 14%,rgba(11,92,255,.12),transparent 30%),
    linear-gradient(180deg,#fff 0%,#f3f8ff 100%);
}

.ff-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(11,92,255,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(11,92,255,.045) 1px,transparent 1px);
  background-size:52px 52px;
  mask-image:linear-gradient(180deg,rgba(0,0,0,.65),transparent 78%);
  pointer-events:none;
}

.ff-hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:clamp(2rem,4vw,4rem);
  align-items:center;
  height:100%;
  padding:clamp(2rem,4vh,3rem) 0 clamp(2.5rem,5vh,4rem);
}

.ff-hero-content{min-width:0}

.ff-hero-kicker{
  display:inline-flex;
  margin-bottom:1.2rem;
  padding:.48rem .78rem;
  background:#fff;
  color:var(--ff-blue-dark);
  border:1px solid rgba(11,92,255,.18);
  border-radius:999px;
  box-shadow:0 10px 30px rgba(6,26,58,.06);
  font-size:.78rem;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.07em;
}

#heroHeadline{
  max-width:980px;
  margin:0;
  color:var(--ff-navy);
  font-size:clamp(2.1rem,4.4vw,4rem);
  line-height:1.04;
  letter-spacing:-.058em;
  font-weight:950;
  text-wrap:balance;
}

.ff-hero-lead{
  max-width:760px;
  margin:1.2rem 0 0;
  color:var(--ff-text-soft);
  font-size:clamp(1.08rem,1.65vw,1.28rem);
  line-height:1.75;
  font-weight:520;
}

.ff-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.85rem;
  margin-top:2rem;
}

/* BUTTONS */

.ff-btn{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.82rem 1.35rem;
  border:2px solid transparent;
  border-radius:999px;
  font-weight:950;
  text-decoration:none;
  cursor:pointer;
  transition:background var(--ff-transition),color var(--ff-transition),border-color var(--ff-transition),transform var(--ff-transition),box-shadow var(--ff-transition);
}

.ff-btn:hover{transform:translateY(-1px)}

.ff-btn-primary{
  background:linear-gradient(135deg,var(--ff-blue),var(--ff-blue-dark));
  color:#fff;
  border-color:var(--ff-blue);
  box-shadow:0 14px 32px rgba(11,92,255,.22);
}

.ff-btn-primary:hover{
  background:var(--ff-navy);
  color:#fff;
  border-color:var(--ff-navy);
}

.ff-btn-secondary{
  background:#fff;
  color:var(--ff-navy);
  border-color:rgba(11,92,255,.18);
  box-shadow:0 12px 28px rgba(6,26,58,.06);
}

.ff-btn-secondary:hover{
  background:var(--ff-blue-pale);
  color:var(--ff-blue-dark);
}

.ff-btn-white{
  background:#fff;
  color:var(--ff-blue-dark);
  border-color:#fff;
}

.ff-btn-ghost{
  color:#fff;
  border-color:rgba(255,255,255,.35);
  background:rgba(255,255,255,.08);
}

.ff-btn-lg{
  min-height:56px;
  padding:.95rem 1.7rem;
  font-size:1.02rem;
}

/* HERO PANEL */

.ff-hero-panel{
  position:relative;
  border-radius:24px;
  background:#fff;
  border:1px solid var(--ff-line);
  box-shadow:0 32px 80px rgba(6,26,58,.14);
  overflow:hidden;
}

.ff-status-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  flex-shrink:0;
  background:#49e28c;
  box-shadow:0 0 0 4px rgba(73,226,140,.18);
}

.ff-panel-chrome{
  display:flex;
  align-items:center;
  gap:.75rem;
  padding:.75rem 1rem;
  background:#f4f7fb;
  border-bottom:1px solid var(--ff-line);
}

.ff-panel-dots{display:flex;gap:.35rem;flex-shrink:0}
.ff-panel-dots span{width:10px;height:10px;border-radius:50%;background:#d1d9e6}
.ff-panel-dots span:first-child{background:#ff6b6b}
.ff-panel-dots span:nth-child(2){background:#ffd93d}
.ff-panel-dots span:last-child{background:#6bcb77}

.ff-panel-url{
  flex:1;
  padding:.3rem .75rem;
  background:#fff;
  border:1px solid var(--ff-line);
  border-radius:8px;
  color:var(--ff-text-soft);
  font-size:.82rem;
  font-weight:650;
  text-align:center;
}

.ff-panel-ssl{
  color:#087a43;
  font-size:.78rem;
  font-weight:850;
  flex-shrink:0;
}

.ff-panel-status{
  display:flex;
  align-items:center;
  gap:.55rem;
  padding:.85rem 1.2rem;
  background:linear-gradient(90deg,var(--ff-navy),var(--ff-blue-dark));
  color:#fff;
  font-size:.84rem;
  font-weight:750;
}

.ff-panel-badge{
  margin-left:auto;
  padding:.22rem .55rem;
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.22);
  border-radius:6px;
  color:#fff;
  font-size:.72rem;
  font-weight:900;
}

.ff-panel-badge + .ff-panel-badge{margin-left:.3rem}

.ff-panel-scores{
  display:grid;
  gap:.85rem;
  padding:1.2rem 1.2rem .9rem;
  border-bottom:1px solid var(--ff-line);
}

.ff-score-top{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  margin-bottom:.38rem;
}

.ff-score-label{
  color:var(--ff-text-soft);
  font-size:.82rem;
  font-weight:750;
}

.ff-score-num{
  color:var(--ff-navy);
  font-size:.92rem;
  font-weight:950;
}

.ff-score-track{
  height:6px;
  border-radius:999px;
  background:var(--ff-blue-pale);
  overflow:hidden;
}

.ff-score-fill{
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--ff-blue),var(--ff-blue-dark));
}

.ff-panel-checklist{
  display:grid;
  padding:.6rem 0;
}

.ff-panel-check{
  display:flex;
  align-items:center;
  gap:.7rem;
  padding:.68rem 1.2rem;
  font-size:.86rem;
  font-weight:700;
  color:var(--ff-text);
  border-bottom:1px solid var(--ff-line);
}

.ff-panel-check:last-child{border-bottom:0}

.ff-panel-check > span:first-child{
  width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#eafff3;
  color:#087a43;
  font-size:.78rem;
  font-weight:950;
  flex-shrink:0;
}

/* PROOF */

.ff-section-logos{
  padding:1.8rem 0;
  background:#fff;
}

.ff-proof-strip{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
  padding:1.25rem 1.4rem;
  border:1px solid var(--ff-line);
  border-radius:26px;
  background:#fff;
  box-shadow:var(--ff-shadow);
}

.ff-proof-strip strong{
  display:block;
  color:var(--ff-navy);
  font-size:1.08rem;
  font-weight:950;
}

.ff-proof-strip span{
  color:var(--ff-text-soft);
  font-weight:650;
}

.ff-proof-points{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
  justify-content:center;
}

.ff-proof-points span{
  padding:.5rem .72rem;
  border-radius:999px;
  background:var(--ff-blue-pale);
  color:var(--ff-blue-dark);
  font-weight:850;
}

/* CARDS */

.ff-service-card{
  position:relative;
  height:100%;
  min-height:260px;
  padding:1.55rem;
  background:
    radial-gradient(circle at 18% 0%,rgba(77,156,255,.28),transparent 38%),
    linear-gradient(135deg,var(--ff-navy),var(--ff-blue-dark));
  border:1px solid rgba(255,255,255,.08);
  border-radius:32px;
  box-shadow:0 18px 50px rgba(6,26,58,.18);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:.75rem;
  transition:transform var(--ff-transition),box-shadow var(--ff-transition);
}

.ff-service-card:hover{
  transform:translateY(-5px);
  box-shadow:0 28px 70px rgba(6,26,58,.26);
}

.ff-service-card-featured{
  background:
    radial-gradient(circle at 18% 0%,rgba(77,156,255,.35),transparent 40%),
    linear-gradient(135deg,var(--ff-navy),var(--ff-blue));
}

.ff-service-badge{
  display:inline-flex;
  align-items:center;
  width:fit-content;
  padding:.32rem .62rem;
  background:rgba(255,255,255,.14);
  color:rgba(255,255,255,.9);
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  font-size:.70rem;
  font-weight:950;
  letter-spacing:.07em;
  text-transform:uppercase;
}

.ff-service-card h3{
  margin:0;
  color:#fff;
  font-size:1.5rem;
  line-height:1.15;
  letter-spacing:-.045em;
  font-weight:950;
}

.ff-service-card p{
  margin:0;
  color:rgba(255,255,255,.82);
  font-weight:620;
}

/* SPLIT */

.ff-split,
.ff-system-grid,
.ff-contact-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(340px,.82fr);
  gap:clamp(2rem,5vw,4.5rem);
  align-items:center;
}

.ff-feature-list{
  display:grid;
  gap:1rem;
  margin-top:1.8rem;
}

.ff-feature-list div{
  padding:1.1rem 1.2rem;
  background:#fff;
  border:1px solid rgba(11,92,255,.14);
  border-left:4px solid var(--ff-blue);
  border-radius:22px;
  box-shadow:0 6px 20px rgba(6,26,58,.07);
}

.ff-feature-list strong{
  display:block;
  color:var(--ff-navy);
  font-weight:950;
  margin-bottom:.25rem;
}

.ff-feature-list span{
  color:var(--ff-text-soft);
  font-weight:650;
}

.ff-comparison-card{
  padding:1.35rem;
  border-radius:30px;
  background:#fff;
  border:1px solid var(--ff-line);
  box-shadow:var(--ff-shadow-strong);
}

.ff-comparison-head{
  padding:1.2rem;
  border-radius:22px;
  background:linear-gradient(135deg,var(--ff-blue),var(--ff-blue-dark));
  color:#fff;
}

.ff-comparison-head span{
  display:block;
  margin-bottom:.4rem;
  color:rgba(255,255,255,.78);
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.76rem;
}

.ff-comparison-head strong{
  display:block;
  font-size:1.25rem;
  line-height:1.2;
  font-weight:950;
}

.ff-comparison-table{
  display:grid;
  gap:.7rem;
  margin-top:1rem;
}

.ff-comparison-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1rem 1.1rem;
  border-radius:18px;
  background:linear-gradient(90deg,var(--ff-blue-pale),#e8f1ff);
  border:1px solid rgba(11,92,255,.18);
  border-left:4px solid var(--ff-blue);
}

.ff-comparison-row span{
  color:var(--ff-navy);
  font-weight:850;
}

.ff-comparison-row strong{
  color:var(--ff-blue-dark);
  text-align:right;
  font-weight:950;
}

/* BOARD */

.ff-board-window{
  overflow:hidden;
  border-radius:30px;
  background:#fff;
  box-shadow:0 34px 90px rgba(0,0,0,.22);
}

.ff-board-top{
  height:50px;
  display:flex;
  align-items:center;
  gap:.5rem;
  padding:0 1rem;
  background:#eef5ff;
  border-bottom:1px solid var(--ff-line);
}

.ff-board-top span{
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--ff-blue-3);
}

.ff-board-body{
  display:grid;
  grid-template-columns:170px 1fr;
  min-height:360px;
}

.ff-board-sidebar{
  padding:1.15rem;
  background:var(--ff-navy);
  color:#fff;
  display:flex;
  flex-direction:column;
  gap:.65rem;
}

.ff-board-sidebar strong{
  font-size:1.1rem;
  margin-bottom:.8rem;
}

.ff-board-sidebar span{
  padding:.58rem .7rem;
  border-radius:12px;
  color:rgba(255,255,255,.74);
  font-weight:800;
}

.ff-board-sidebar span.active{
  background:rgba(255,255,255,.14);
  color:#fff;
}

.ff-board-editor{
  padding:1.4rem;
  color:var(--ff-navy);
}

.ff-dashboard-label{
  display:block;
  margin-bottom:.5rem;
  color:var(--ff-blue-dark);
  font-size:.76rem;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.07em;
}

.ff-board-editor h3{
  margin:1rem 0 .45rem;
  font-size:1rem;
  color:var(--ff-navy);
  font-weight:950;
}

.ff-input-preview{
  min-height:52px;
  padding:.8rem .9rem;
  display:flex;
  align-items:center;
  border:2px solid rgba(11,92,255,.18);
  border-radius:16px;
  background:#fff;
  color:var(--ff-text-soft);
  font-weight:700;
}

.ff-input-preview.small{min-height:44px}

.ff-board-editor button{
  margin-top:1.2rem;
  min-height:46px;
  padding:.75rem 1rem;
  border:0;
  border-radius:999px;
  background:var(--ff-blue);
  color:#fff;
  font-weight:950;
}

/* RESPONSIVE */

@media (max-width:991.98px){
  :root{
    --ff-topbar-h:76px;
    --ff-productnav-h:52px;
  }

  .ff-top-actions{display:none}
  .ff-mobile-actions{display:flex}

  .ff-topbar-inner{
    position:relative;
    justify-content:center;
  }

  .ff-brand{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    margin-left:0;
    max-width:none;
  }

  .ff-brand-logo{
    width:138px;
    margin:0 auto;
  }

  .ff-mobile-actions{
    position:absolute;
    right:.9rem;
    top:50%;
    transform:translateY(-50%);
  }

  .ff-menu-panel{
    position:fixed;
    top:calc(var(--ff-header-h) - var(--ff-productnav-h) + 10px);
    left:1rem;
    right:1rem;
    min-width:0;
    max-height:calc(100vh - var(--ff-header-h) - 20px);
    overflow-y:auto;
  }

  main{padding-top:var(--ff-header-h)}

  .ff-hero{
    height:auto;
    min-height:auto;
    max-height:none;
    padding:2.6rem 0 3.2rem;
  }

  .ff-hero-grid,
  .ff-split,
  .ff-system-grid,
  .ff-contact-grid{
    grid-template-columns:1fr;
    height:auto;
  }

  .ff-hero-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .ff-btn{width:100%}

  .ff-proof-strip{
    align-items:flex-start;
    flex-direction:column;
  }

  .ff-board-body{
    grid-template-columns:1fr;
  }

  .ff-board-sidebar{
    display:none;
  }
}

@media (max-width:767.98px){
  input,
  textarea,
  select,
  button{
    font-size:16px;
  }

  .ff-section{
    padding:3.8rem 0;
  }

  #heroHeadline{
    font-size:clamp(2rem,10vw,2.85rem);
  }

  .ff-hero-lead{
    font-size:1rem;
  }

  .ff-service-card{
    min-height:220px;
    border-radius:24px;
  }

  .ff-proof-points{
    display:grid;
    grid-template-columns:1fr;
    width:100%;
  }

  .ff-proof-points span{
    text-align:center;
    justify-content:center;
  }
}

@media (max-width:575.98px){
  .container{
    width:min(100% - 1.4rem,1320px);
  }

  .ff-mobile-contact{
    display:none;
  }

  .ff-brand-logo{
    width:126px;
  }

  .ff-productnav-link{
    padding:0 .82rem;
    font-size:.84rem;
  }

  .ff-hero-kicker{
    font-size:.68rem;
    white-space:normal;
    border-radius:16px;
  }
}
/* =========================================================
   TRUST / SEO BUTTONS
   EXACT HERO BUTTON LOOK
   ========================================================= */

.ff-proof-points{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:.9rem !important;
}

.ff-proof-points span{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:58px;

  padding:0 1.45rem !important;

  background:
    linear-gradient(
      135deg,
      #1b67ff 0%,
      #0b5cff 45%,
      #0a3c91 100%
    ) !important;

  color:#ffffff !important;

  border:2px solid rgba(255,255,255,.14);

  border-radius:999px;

  font-size:1rem !important;
  font-weight:900 !important;
  letter-spacing:-0.02em;
  line-height:1;

  box-shadow:
    0 14px 34px rgba(11,92,255,.24),
    inset 0 1px 0 rgba(255,255,255,.18);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    filter .2s ease;
}

/* hover exakt gleicher vibe */
.ff-proof-points span:hover{
  transform:translateY(-2px);

  filter:brightness(1.03);

  box-shadow:
    0 22px 48px rgba(11,92,255,.30),
    inset 0 1px 0 rgba(255,255,255,.20);
}

/* mobil */
@media (max-width:991.98px){

  .ff-proof-points{
    justify-content:flex-start;
  }
}

@media (max-width:767.98px){

  .ff-proof-points{
    width:100%;
    display:grid !important;
    grid-template-columns:1fr;
  }

  .ff-proof-points span{
    width:100%;
    min-height:54px;
    justify-content:center;
    text-align:center;
  }
}
/* =========================================================
   GLOBAL SCALE
   EXAKT WIE FUERST-SOFTWARE.COM
   ========================================================= */

/* WICHTIG:
   alte html{font-size:75%} REGEL KOMPLETT ENTFERNEN
*/

/* gleicher scaling-look wie hauptseite */
html{
  font-size:16px !important;
  zoom:1;
}

/* container exakt gleich breit */
.container{
  max-width:1480px !important;
}

/* hero spacing exakt angleichen */
.ff-hero .container{
  max-width:1480px !important;
}

/* typography exakt kräftig */
body{
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

/* große desktops */
@media (min-width:1700px){

  html{
    zoom:.92;
  }
}

/* normale desktops */
@media (max-width:1699px){

  html{
    zoom:.86;
  }
}

/* laptops */
@media (max-width:1440px){

  html{
    zoom:.82;
  }
}

/* kleinere laptops */
@media (max-width:1280px){

  html{
    zoom:.78;
  }
}

/* tablet/mobile NIE zoomen */
@media (max-width:991.98px){

  html{
    zoom:1;
  }

  .container{
    max-width:100% !important;
  }
}
/* =========================================================
   FOOTER 1:1 FUERST STYLE
   ========================================================= */

.ff-footer{
  padding:5.6rem 0 1.15rem;
  background:linear-gradient(135deg,#061a3a 0%,#0a3c91 100%);
  color:#ffffff;
}

.ff-footer-top{
  display:grid;
  grid-template-columns:220px 280px 1fr;
  gap:4.2rem;
  align-items:start;
}

.ff-footer-logo-wrap{
  display:block;
  width:220px;
}

.ff-footer-logo{
  width:220px;
  height:auto;
  display:block;
  filter:brightness(0) invert(1);
}

.ff-footer-brandtext h3{
  margin:0 0 .75rem;
  color:#ffffff;
  font-size:1.35rem;
  line-height:1.12;
  font-weight:950;
  letter-spacing:-.045em;
}

.ff-footer-brandtext p{
  margin:0;
  max-width:270px;
  color:rgba(255,255,255,.84);
  font-size:1rem;
  line-height:1.58;
  font-weight:500;
}

.ff-footer-nav{
  display:grid;
  grid-template-columns:repeat(4,minmax(130px,1fr));
  gap:2.6rem;
}

.ff-footer-group{
  display:grid;
  align-content:start;
  gap:.9rem;
}

.ff-footer-group span{
  margin-bottom:.25rem;
  color:rgba(255,255,255,.82);
  font-size:.86rem;
  font-weight:950;
  letter-spacing:.16em;
}

.ff-footer-group a{
  color:rgba(255,255,255,.78);
  font-size:1rem;
  line-height:1.25;
  font-weight:800;
  transition:
    color .2s ease,
    transform .2s ease;
}

.ff-footer-group a:hover{
  color:#ffffff;
  transform:translateX(2px);
}

.ff-footer-bottom{
  margin-top:4.4rem;
  padding-top:1.65rem;
  border-top:1px solid rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  color:rgba(255,255,255,.82);
  font-size:.92rem;
}

.ff-footer-bottom strong{
  color:#ffffff;
  font-weight:950;
}

/* Tablet */
@media (max-width:1199.98px){

  .ff-footer-top{
    grid-template-columns:220px 1fr;
    gap:3rem;
  }

  .ff-footer-nav{
    grid-column:1 / -1;
    grid-template-columns:repeat(4,1fr);
  }
}

/* Mobile */
@media (max-width:767.98px){

  .ff-footer{
    padding:4rem 0 1.2rem;
  }

  .ff-footer-top{
    grid-template-columns:1fr;
    gap:2rem;
  }

  .ff-footer-logo-wrap,
  .ff-footer-logo{
    width:190px;
  }

  .ff-footer-brandtext p{
    max-width:100%;
  }

  .ff-footer-nav{
    grid-template-columns:1fr 1fr;
    gap:2rem 1.4rem;
  }

  .ff-footer-bottom{
    margin-top:3rem;
    align-items:flex-start;
    flex-direction:column;
  }
}

/* Small Mobile */
@media (max-width:480px){

  .ff-footer-nav{
    grid-template-columns:1fr;
  }

  .ff-footer-logo-wrap,
  .ff-footer-logo{
    width:175px;
  }
}