@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Aileron";
  src: url("/assets/fonts/Aileron-Regular-webfont.woff") format("woff");
  font-display: swap;
}

:root {
  --bg: #0b1319;
  --bg-soft: #121c23;
  --surface: #16232c;
  --surface-soft: #1c2d37;
  --text: #eaf3f5;
  --text-soft: #a5b8bf;
  --accent: #2f8790;
  --accent-strong: #a7d3d8;
  --accent-soft: #223741;
  --dark: #0c151c;
  --dark-soft: #132029;
  --border: #33505a;
  --success: #39cf91;
  --radius-sm: 0.75rem;
  --radius-md: 1.125rem;
  --radius-lg: 1.75rem;
  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 16px 36px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 22px 52px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Aileron", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 84% -18%, rgba(64, 151, 160, 0.2), transparent 45%),
    radial-gradient(circle at 10% 20%, rgba(64, 151, 160, 0.11), transparent 40%),
    linear-gradient(180deg, #0b1319 0%, #121d25 100%);
  line-height: 1.6;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(66, 132, 139, 0.45);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  background: var(--accent);
  color: #ffffff;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 7rem 0;
}

.section-tight {
  padding: 5rem 0;
}

#start,
#leistungen,
#saas-produkte,
#warum-itwt,
#stimmen,
#kontakt {
  scroll-margin-top: 6.2rem;
}

.section-theme-grid,
.section-theme-soft,
.section-theme-contrast {
  position: relative;
}

.section-theme-grid::before,
.section-theme-soft::before,
.section-theme-contrast::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-theme-grid::before {
  background:
    linear-gradient(90deg, rgba(61, 109, 116, 0.09), transparent 18%, transparent 82%, rgba(61, 109, 116, 0.09)),
    repeating-linear-gradient(
      90deg,
      rgba(115, 169, 175, 0.045) 0,
      rgba(115, 169, 175, 0.045) 1px,
      transparent 1px,
      transparent 36px
    );
  opacity: 0.45;
}

.section-theme-soft::before {
  background: linear-gradient(180deg, rgba(14, 25, 32, 0.52), rgba(11, 20, 27, 0.2));
}

.section-theme-contrast::before {
  background:
    radial-gradient(circle at 18% -8%, rgba(87, 164, 172, 0.2), transparent 42%),
    radial-gradient(circle at 86% 110%, rgba(87, 164, 172, 0.15), transparent 35%);
}

.section-theme-grid > .container,
.section-theme-soft > .container,
.section-theme-contrast > .container {
  position: relative;
  z-index: 1;
}

.section-head {
  margin-bottom: 2rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-head h1,
.section-head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 1.55rem + 1.55vw, 3rem);
  line-height: 1.16;
}

.section-head p {
  margin: 0.9rem 0 0;
  color: var(--text-soft);
  max-width: 70ch;
}

.section-head-usp h2 {
  max-width: 21ch;
  font-size: clamp(2.1rem, 1.7rem + 1.9vw, 3.25rem);
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(51, 80, 90, 0.34);
  background: linear-gradient(180deg, rgba(11, 20, 28, 0.9), rgba(11, 20, 28, 0.68));
  backdrop-filter: blur(9px);
}

.site-header-inner {
  min-height: 4.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand img {
  width: 164px;
  height: auto;
}

.nav-toggle {
  border: 1px solid rgba(67, 102, 114, 0.74);
  background: rgba(27, 43, 54, 0.78);
  color: var(--text);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
}

.nav-toggle svg {
  width: 1.35rem;
  height: 1.35rem;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.site-nav {
  position: absolute;
  top: 4.8rem;
  left: 4vw;
  right: 4vw;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(16, 28, 36, 0.96);
  box-shadow: var(--shadow-md);
  padding: 0.75rem;
  display: none;
}

.site-nav.is-open {
  display: block;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.site-nav a {
  display: block;
  padding: 0.6rem 0.7rem;
  border-radius: 0.65rem;
  font-weight: 600;
  font-size: 0.96rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active,
.site-nav a.is-current {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.nav-cta {
  margin-top: 0.55rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.78rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(115deg, #2b747d, #3b8b95);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(33, 103, 112, 0.34);
}

.btn-primary:hover {
  box-shadow: 0 16px 30px rgba(33, 103, 112, 0.4);
}

.btn-secondary {
  background: var(--surface);
  color: var(--accent-strong);
  border-color: var(--border);
}

.btn-whatsapp {
  background: linear-gradient(115deg, #1f6b5a, #2f8a74);
  color: #eef7f4;
  box-shadow: 0 10px 24px rgba(23, 86, 70, 0.35);
}

.btn-whatsapp:hover {
  box-shadow: 0 14px 28px rgba(23, 86, 70, 0.45);
}

.contact-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero {
  padding: 3rem 0 2.6rem;
  position: relative;
}

.hero-grid {
  display: grid;
  gap: 1.8rem;
}

.hero-home {
  padding: clamp(5.8rem, 9vw, 8.6rem) 0 clamp(5.2rem, 8vw, 7.6rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-home .hero-grid {
  min-height: clamp(27rem, 70vh, 45rem);
  align-items: center;
  justify-items: center;
}

.hero-home .hero-copy {
  max-width: 860px;
  text-align: center;
}

.hero-home .hero-copy p {
  margin-top: 1.65rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 58ch;
}

.hero-home .hero-kicker-logo {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.35rem;
}

.hero-home .hero-cta,
.hero-home .hero-proof {
  justify-content: center;
}

.hero-home .hero-cta {
  margin-top: 2.55rem;
}

.hero-home .hero-proof {
  margin-top: 0.85rem;
}

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

.hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.02) brightness(0.62);
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 22%, rgba(78, 154, 163, 0.28), rgba(78, 154, 163, 0) 52%),
    linear-gradient(180deg, rgba(10, 19, 26, 0.52) 0%, rgba(10, 19, 26, 0.72) 78%, rgba(10, 19, 26, 0.82) 100%);
}

.hero-home::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(120px, 18vw, 210px);
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 19, 26, 0) 0%, rgba(10, 19, 26, 0.82) 72%, #121d25 100%);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.1rem, 1.7rem + 2.2vw, 3.7rem);
  line-height: 1.09;
}

.hero-kicker-logo {
  width: clamp(204px, 24vw, 312px);
  height: auto;
  margin: 0 0 0.95rem;
  transform: translateY(-30px);
  filter: drop-shadow(0 10px 22px rgba(21, 135, 144, 0.22));
}

.hero-copy p {
  margin: 1.1rem 0 0;
  color: var(--text-soft);
  max-width: 52ch;
}

.hero-cta {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-proof {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.grid-cards {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.card h3,
.card h4 {
  margin: 0;
}

.card p {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
}

.card-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #a6dbe1;
  font-weight: 700;
  border-bottom: 1px solid rgba(151, 211, 219, 0.36);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-cta:hover {
  color: #dcf6f9;
  border-bottom-color: rgba(220, 246, 249, 0.68);
}

.section-text-cta {
  margin: 1.35rem 0 0;
}

.section-divider {
  height: 1px;
  width: min(1200px, 92vw);
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(127, 191, 199, 0.45), transparent);
}

.elevate {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.elevate:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.icon-box {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.85rem;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  margin-bottom: 0.8rem;
}

.icon-box img {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
}

.section-usp .section-head {
  margin-bottom: 2.15rem;
}

.section-usp {
  padding-bottom: clamp(1.9rem, 3vw, 2.6rem);
}

.section-services {
  padding-top: clamp(2.4rem, 4vw, 3.2rem);
}

.usp-grid {
  gap: 1.2rem;
}

.section-usp .card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0.15rem 0.1rem 0.7rem;
  position: relative;
}

.section-usp .card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(128, 181, 188, 0.25), rgba(128, 181, 188, 0.05));
}

.section-usp .card:last-child::after {
  display: none;
}

.section-usp .card h3 {
  font-size: clamp(1.16rem, 1.08rem + 0.22vw, 1.28rem);
}

.section-usp .card p {
  margin-top: 0.55rem;
}

.stats-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.social-proof-section {
  position: relative;
  padding: 4rem 0;
}

.social-proof-shell {
  position: relative;
  border: 1px solid rgba(73, 126, 134, 0.3);
  border-radius: var(--radius-lg);
  padding: clamp(1.55rem, 1.15rem + 1.25vw, 2.45rem);
  background:
    radial-gradient(circle at 12% -12%, rgba(87, 166, 174, 0.25), transparent 43%),
    radial-gradient(circle at 92% 118%, rgba(87, 166, 174, 0.18), transparent 38%),
    linear-gradient(180deg, #12212b 0%, #0e1a22 100%);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.social-proof-shell::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(149, 205, 212, 0.36), transparent);
}

.social-proof-head {
  margin-bottom: 1rem;
}

.social-proof-head h2 {
  max-width: 24ch;
  text-wrap: balance;
}

.social-proof-head p {
  margin-top: 0.7rem;
  max-width: 62ch;
  color: #a6bcc2;
}

.stat-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, #182a35, #13242e);
  padding: 1.3rem 1.2rem;
  box-shadow: var(--shadow-sm);
  min-height: 13rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.stat-value {
  margin: 0;
  font-size: clamp(1.5rem, 1.2rem + 0.7vw, 2rem);
  line-height: 1.1;
  color: var(--accent-strong);
  font-weight: 800;
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.stat-label {
  margin: 0;
  color: var(--text-soft);
  text-wrap: balance;
  line-height: 1.45;
}

.social-proof-stats {
  gap: 0;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(121, 171, 178, 0.3);
}

.social-proof-stats .stat-card {
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 1.1rem 1rem 1.05rem;
  gap: 0.35rem;
  border-top: 1px solid rgba(121, 171, 178, 0.18);
}

.social-proof-stats .stat-card:first-child {
  border-top: 0;
}

.social-proof-stats .stat-value {
  font-size: clamp(1.55rem, 1.2rem + 0.78vw, 2.1rem);
  letter-spacing: -0.01em;
}

.social-proof-stats .stat-label {
  max-width: 28ch;
}

.section-saas {
  padding-top: 4.2rem;
  padding-bottom: 4.4rem;
}

.saas-grid {
  display: grid;
  gap: 1.1rem;
}

.saas-panel {
  border: 1px solid rgba(120, 177, 185, 0.24);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  background: linear-gradient(160deg, rgba(24, 40, 50, 0.96), rgba(17, 29, 38, 0.94));
  box-shadow: var(--shadow-sm);
}

.saas-hero {
  border-radius: 1rem;
  padding: 1.05rem 1rem;
  margin-bottom: 0.95rem;
  border: 1px solid rgba(122, 179, 187, 0.33);
  background: linear-gradient(145deg, rgba(43, 123, 131, 0.3), rgba(23, 43, 52, 0.42));
}

.saas-hero span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #e1f7f9;
}

.saas-hero small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #95c7ce;
}

.saas-hero-financer {
  background: linear-gradient(150deg, rgba(48, 131, 139, 0.4), rgba(19, 39, 49, 0.7));
}

.saas-hero-bugio {
  background: linear-gradient(150deg, rgba(38, 116, 132, 0.42), rgba(16, 33, 49, 0.72));
}

.saas-panel h3 {
  margin: 0;
}

.saas-panel p {
  margin: 0.72rem 0 0;
  color: var(--text-soft);
}

.saas-points {
  margin: 0.9rem 0 0;
  padding-left: 1.15rem;
}

.saas-points li + li {
  margin-top: 0.42rem;
}

.saas-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.95rem;
  align-items: center;
}

.audience-layout {
  display: grid;
  gap: 1.3rem;
}

.audience-copy h2 {
  margin: 0.68rem 0 0;
  font-size: clamp(1.7rem, 1.48rem + 1.2vw, 2.7rem);
  line-height: 1.17;
  max-width: 19ch;
}

.audience-copy p {
  margin: 0.85rem 0 0;
  max-width: 54ch;
  color: var(--text-soft);
}

.audience-copy .text-cta {
  margin-top: 1.1rem;
}

.audience-list {
  display: grid;
  gap: 0.82rem;
}

.audience-item {
  border-left: 2px solid rgba(112, 173, 180, 0.35);
  padding: 0.25rem 0 0.25rem 0.9rem;
}

.audience-item h3 {
  margin: 0;
  font-size: 1.08rem;
}

.audience-item p {
  margin: 0.46rem 0 0;
  color: var(--text-soft);
}

.testimonials-section .section-head {
  margin-bottom: 1.25rem;
}

.testimonials-layout {
  display: grid;
  gap: 1rem;
}

.testimonial-feature {
  border: 1px solid rgba(120, 177, 185, 0.28);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.25rem;
  background: linear-gradient(165deg, rgba(23, 40, 50, 0.96), rgba(15, 28, 37, 0.9));
  box-shadow: var(--shadow-sm);
}

.testimonial-feature blockquote {
  margin: 0;
  font-size: clamp(1.12rem, 1.01rem + 0.48vw, 1.45rem);
  line-height: 1.36;
  color: #eef8f9;
}

.testimonial-stream {
  display: grid;
  gap: 0.75rem;
}

.testimonial-line {
  padding: 0.82rem 0.95rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(112, 173, 180, 0.24);
  background: rgba(22, 37, 47, 0.7);
}

.testimonial-line blockquote {
  margin: 0;
  color: #d8e9ec;
}

.testimonial-line .testimonial-author {
  margin-top: 0.55rem;
}

.why-itwt .section-head h2 {
  max-width: 20ch;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.why-layout {
  display: grid;
  gap: clamp(2rem, 1.35rem + 1.2vw, 3rem);
  align-items: start;
}

.why-left {
  display: grid;
  gap: 1.35rem;
  align-content: start;
}

.why-intro {
  margin: 0;
  max-width: 52ch;
  color: var(--text-soft);
  font-size: clamp(1.03rem, 0.99rem + 0.3vw, 1.16rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.why-proof {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.7rem;
}

.why-proof span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(136, 180, 185, 0.28);
  border-radius: 999px;
  padding: 0.28rem 0.72rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: #9cc8cf;
  background: rgba(27, 45, 56, 0.56);
}

.why-right {
  display: grid;
  gap: 1.05rem;
  position: relative;
  padding-left: 0.12rem;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.45rem;
  border-top: 1px solid rgba(136, 180, 185, 0.22);
  position: relative;
}

.why-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  bottom: 0.8rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(123, 184, 192, 0.34), rgba(123, 184, 192, 0.12));
}

.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.95rem;
  padding: 1.05rem 0 1rem 0.9rem;
  border-bottom: 1px solid rgba(136, 180, 185, 0.18);
  position: relative;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.why-item::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.78rem;
  bottom: 0.78rem;
  width: 2px;
  border-radius: 2px;
  background: transparent;
  transition: background-color 0.2s ease;
}

.why-item:hover {
  border-bottom-color: rgba(136, 180, 185, 0.35);
  background: rgba(24, 40, 50, 0.3);
}

.why-item:hover::before {
  background: rgba(105, 183, 191, 0.72);
}

.why-item:hover strong {
  color: #dbf0f3;
}

.why-index {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 2.06rem;
  height: 2.06rem;
  border-radius: 999px;
  border: 1px solid rgba(127, 179, 187, 0.34);
  background: rgba(25, 42, 52, 0.6);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #79aeb6;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-top: 0.1rem;
}

.why-item strong {
  display: block;
  color: var(--text);
  line-height: 1.3;
  font-size: clamp(1.03rem, 0.98rem + 0.25vw, 1.16rem);
  transition: color 0.2s ease;
}

.why-item p {
  margin: 0.3rem 0 0;
  color: var(--text-soft);
  line-height: 1.52;
  max-width: 47ch;
}

.why-cta-wrap {
  padding-top: 0.4rem;
}

.why-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  color: #b0e3e8;
  border: 1px solid rgba(158, 213, 219, 0.34);
  border-radius: 999px;
  padding: 0.54rem 0.9rem;
  background: rgba(16, 30, 38, 0.5);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.26);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.why-cta-link:hover {
  color: #e3f7fa;
  border-color: rgba(215, 242, 245, 0.7);
  background: rgba(19, 35, 44, 0.75);
  transform: translateY(-1px);
}

.services-grid {
  display: grid;
  gap: 1rem;
}

.services-grid .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.services-grid .service-points {
  margin-bottom: clamp(1.2rem, 2.9vw, 1.85rem);
}

.services-grid .card-link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.58rem 0.96rem;
  background: rgba(25, 40, 50, 0.78);
  color: var(--accent-strong);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.services-grid .card-link:hover {
  color: #dbf1f4;
  border-color: rgba(168, 214, 220, 0.52);
  background: rgba(31, 49, 61, 0.9);
  transform: translateY(-1px);
}

.testimonial-author {
  margin-top: 0.95rem;
  font-size: 0.93rem;
  color: var(--text-soft);
}

.dark-cta {
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, #111d25, #1a303a);
  color: #edf8f9;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.dark-cta::before {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 147, 152, 0.22), transparent 68%);
}

.dark-cta h2,
.dark-cta p {
  position: relative;
  margin: 0;
}

.dark-cta p {
  margin-top: 0.75rem;
  color: rgba(232, 246, 248, 0.85);
}

.contact-merged {
  display: grid;
  gap: 1.35rem;
}

.contact-merged-top {
  position: relative;
}

.contact-merged-body {
  position: relative;
  border-top: 1px solid rgba(136, 180, 185, 0.24);
  padding-top: 1.2rem;
}

.contact-merged-body h3 {
  margin: 0.05rem 0 0;
  font-size: clamp(1.72rem, 1.45rem + 0.9vw, 2.45rem);
  line-height: 1.15;
}

.contact-merged-body p {
  margin-top: 0.75rem;
}

.contact-merged-body .contact-inline {
  margin-top: 1.05rem;
}

.page-hero {
  padding: 2.7rem 0 2.2rem;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.82rem;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-hero h1 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.95rem, 1.55rem + 1.8vw, 3.1rem);
  line-height: 1.15;
}

.page-hero p {
  margin: 1rem 0 0;
  max-width: 67ch;
  color: var(--text-soft);
}

.page-hero-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.service-hero-card {
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(140deg, #1a2c36, #14242d);
  box-shadow: var(--shadow-sm);
}

.service-hero-card img {
  width: 3.2rem;
  height: 3.2rem;
}

.service-points {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.service-points li + li {
  margin-top: 0.44rem;
}

.process {
  display: grid;
  gap: 0.8rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
  padding: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
}

.step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 0.6rem;
  background: var(--accent-soft);
  color: var(--accent-strong);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 800;
}

.proof-box {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, #1a2b35, #13222b);
  padding: 1.15rem;
}

.proof-list {
  margin: 0;
  padding-left: 1rem;
}

.proof-list li + li {
  margin-top: 0.4rem;
}

.faqs {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 0.85rem 1rem;
}

.faq-item summary {
  font-weight: 700;
  cursor: pointer;
}

.faq-item p {
  margin: 0.65rem 0 0;
  color: var(--text-soft);
}

body.service-detail-page .section {
  padding: clamp(3.75rem, 6.2vw, 5rem) 0;
}

body.service-detail-page .section-tight {
  padding: clamp(3.1rem, 5.1vw, 4.1rem) 0;
}

body.service-detail-page .page-hero {
  padding: clamp(4.9rem, 8.5vw, 6.4rem) 0 clamp(4.2rem, 6.8vw, 5.4rem);
}

body.service-detail-page .service-page-hero .container {
  padding: clamp(1.5rem, 2vw, 2.2rem);
  border: 1px solid rgba(112, 168, 175, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(22, 38, 48, 0.8), rgba(16, 29, 38, 0.5));
  box-shadow: var(--shadow-sm);
}

body.service-detail-page .page-hero h1 {
  max-width: 19ch;
  text-wrap: balance;
}

body.service-detail-page .page-hero p {
  margin-top: 1.2rem;
  max-width: 64ch;
  line-height: 1.7;
}

body.service-detail-page .page-hero-actions {
  margin-top: clamp(1.85rem, 2.5vw, 2.35rem);
}

body.service-detail-page .service-hero-card {
  margin-top: 1.55rem;
  padding: 1.25rem 1.35rem;
  display: grid;
  gap: 0.85rem;
  align-items: start;
}

body.service-detail-page .service-hero-card p {
  margin: 0;
  color: #b9cdd2;
}

body.service-detail-page .service-block .section-head {
  margin-bottom: clamp(1.45rem, 1rem + 1vw, 2.4rem);
}

body.service-detail-page .service-block .section-head h2 {
  max-width: 21ch;
  text-wrap: balance;
}

body.service-detail-page .service-block .grid-cards {
  gap: 1.15rem;
}

body.service-detail-page .service-block-products .saas-grid {
  margin-top: 0.3rem;
  gap: 1.2rem;
}

body.service-detail-page .service-block-products .saas-panel {
  min-height: 100%;
}

body.service-detail-page .service-block-products .saas-panel p {
  line-height: 1.62;
}

body.service-detail-page .service-block .card {
  min-height: 100%;
  padding: 1.35rem 1.25rem;
}

body.service-detail-page .service-block .card p {
  line-height: 1.64;
}

body.service-detail-page .process {
  gap: 0.9rem;
}

body.service-detail-page .process-step {
  gap: 0.88rem;
  padding: 1.06rem 1.1rem;
}

body.service-detail-page .process-step h3 {
  margin: 0;
}

body.service-detail-page .process-step p {
  margin: 0.45rem 0 0;
  color: var(--text-soft);
  line-height: 1.55;
}

body.service-detail-page .proof-box {
  padding: 1.35rem 1.4rem;
}

body.service-detail-page .proof-list {
  padding-left: 1.2rem;
}

body.service-detail-page .proof-list li {
  line-height: 1.64;
}

body.service-detail-page .proof-list li + li {
  margin-top: 0.58rem;
}

body.service-detail-page .faqs {
  gap: 0.8rem;
}

body.service-detail-page .faq-item {
  padding: 0.95rem 1.1rem;
}

body.service-detail-page .faq-item summary {
  font-size: 1.01rem;
  line-height: 1.38;
}

body.service-detail-page .faq-item p {
  margin-top: 0.68rem;
  line-height: 1.58;
}

body.service-detail-page .contact-section {
  padding-top: clamp(4.4rem, 6.5vw, 5.4rem);
}

.legal-content {
  border: 1px solid var(--border);
  background: linear-gradient(160deg, #1a2b35, #152631);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.35rem;
  color: #d5e2e6;
  line-height: 1.72;
  font-size: 1rem;
}

.legal-content > * + * {
  margin-top: 0.75rem;
}

.legal-content h2,
.legal-content h3 {
  margin-top: 1.4rem;
  margin-bottom: 0.45rem;
  line-height: 1.25;
  color: #ecf5f7;
}

.legal-content p,
.legal-content li,
.legal-content td {
  color: #c2d3d8;
}

.legal-content ul,
.legal-content ol {
  margin: 0.45rem 0 0.2rem;
  padding-left: 1.25rem;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  background: rgba(19, 33, 42, 0.52);
}

.legal-content a {
  color: #9ed5db;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}

.legal-content .text-gray-900,
.legal-content .active\:text-gray-900,
.legal-content .hover\:text-violet-600 {
  color: #9ed5db !important;
}

.legal-content .hover\:bg-violet-50:hover,
.legal-content .lg\:hover\:bg-transparent:hover {
  background: transparent !important;
}

.legal-content .hi-lock-closed {
  width: 0.98rem;
  height: 0.98rem;
  max-width: none;
  display: inline-block;
  vertical-align: -0.12em;
  margin: 0 0.12rem;
  color: #9ed5db;
}

.legal-logo {
  max-width: 220px;
  height: auto;
}

.legal-content td,
.legal-content th {
  border: 1px solid var(--border);
  padding: 0.7rem;
  vertical-align: top;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #12202a;
  margin-top: 3.1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  padding: 2rem 0 1rem;
  align-items: start;
}

.footer-brand img {
  width: 148px;
}

.footer-brand p {
  margin: 0.55rem 0 0;
  color: var(--text-soft);
  max-width: 38ch;
  font-size: 0.92rem;
  line-height: 1.45;
}

.footer-nav-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
}

.footer-nav-group {
  display: grid;
  gap: 0.42rem;
  align-content: start;
}

.footer-nav-group h4 {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: #8aa0a7;
  line-height: 1.2;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.2;
  white-space: nowrap;
}

.footer-links a:hover {
  color: var(--accent-strong);
}

.footer-bottom {
  margin-top: 0.85rem;
  padding: 0.72rem 0 0.98rem;
  border-top: 1px solid rgba(57, 88, 99, 0.82);
  font-size: 0.83rem;
  color: var(--text-soft);
  text-align: center;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-parallax] {
  will-change: transform;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (min-width: 700px) {
  .grid-cards,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-proof-stats .stat-card {
    border-top: 0;
    border-right: 1px solid rgba(121, 171, 178, 0.2);
  }

  .social-proof-stats .stat-card:nth-child(2n) {
    border-right: 0;
  }

  .social-proof-stats .stat-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(121, 171, 178, 0.2);
  }

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

  .audience-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .audience-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.1rem;
  }

  .testimonials-layout {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .footer-nav-columns {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 0.35rem 1.5rem;
    align-items: start;
  }

  body.service-detail-page .service-hero-card {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  body.service-detail-page .service-block .section-head h2 {
    max-width: 19ch;
  }

  body.service-detail-page .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.05rem;
  }

  body.service-detail-page .service-block.service-block-faq .faqs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    position: static;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 0.1rem;
  }

  .site-nav a {
    padding: 0.6rem 0.78rem;
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 0.5rem;
  }

  .footer-grid {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 1rem 2.5rem;
    align-items: start;
  }

  .footer-nav {
    justify-self: stretch;
  }

  .hero {
    padding: 4.35rem 0 3.4rem;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .hero-home {
    padding: clamp(6.8rem, 9vw, 10.5rem) 0 clamp(6.2rem, 8vw, 9rem);
  }

  .hero-home .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: clamp(34rem, 78vh, 54rem);
  }

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

  .social-proof-stats .stat-card {
    border-right: 1px solid rgba(121, 171, 178, 0.2);
    border-bottom: 0;
  }

  .social-proof-stats .stat-card:last-child {
    border-right: 0;
  }

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

  .usp-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }

  .section-usp .card {
    padding: 0.2rem 1rem 0.2rem 0;
  }

  .section-usp .card::after {
    left: auto;
    right: 0;
    top: 0.1rem;
    bottom: 0.1rem;
    height: auto;
    width: 1px;
    background: linear-gradient(180deg, rgba(128, 181, 188, 0.28), rgba(128, 181, 188, 0.06));
  }

  .section-usp .card:last-child::after {
    display: none;
  }

  .why-layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(2rem, 1.6vw, 2.8rem);
  }

  .audience-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: start;
    gap: 1.5rem 2rem;
  }

  .audience-copy {
    order: 2;
  }

  .audience-list {
    order: 1;
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonials-layout {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    align-items: start;
    gap: 1.05rem 1.2rem;
  }

  .testimonial-feature {
    min-height: 100%;
  }

  .why-left {
    padding-right: 0.2rem;
  }

  .why-right {
    padding-top: 0.12rem;
  }

  .why-proof {
    gap: 0.65rem;
  }

  .why-proof span {
    white-space: nowrap;
  }

  .contact-merged {
    padding: 2.4rem;
    gap: 1.5rem;
  }

  body.service-detail-page .service-page-hero .container {
    padding: clamp(1.75rem, 1.25vw + 1.1rem, 2.6rem);
  }

  body.service-detail-page .service-block .section-head {
    margin-bottom: clamp(1.75rem, 1.1rem + 0.95vw, 2.6rem);
  }

  body.service-detail-page .service-block .grid-cards {
    gap: 1.25rem;
  }

  body.service-detail-page .service-block.service-block-benefits .grid-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.service-detail-page .proof-box {
    padding: 1.55rem 1.7rem;
  }

}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
