/* ==========================================================
   DEUL IT-SOLUTIONS — Stylesheet v3
   ========================================================== */

/* --- CSS Custom Properties --- */
:root {
  /* Brand */
  --clr-brand:        #1f5ed8;
  --clr-brand-hover:  #174fb9;
  --clr-brand-light:  #3f7ff0;
  --clr-brand-subtle: #eff4ff;

  /* Dark palette */
  --clr-dark:         #0f1726;
  --clr-dark-2:       #1a2840;

  /* Text */
  --clr-text:         #0f172a;
  --clr-text-2:       #374151;
  --clr-text-muted:   #6b7280;

  /* Backgrounds */
  --clr-bg:           #ffffff;
  --clr-bg-soft:      #f8fafd;
  --clr-bg-muted:     #f1f5fc;

  /* Borders */
  --clr-border:       #e2e8f0;

  /* Semantic */
  --clr-success:      #16a34a;
  --clr-error:        #b91c1c;
  --clr-whatsapp:     #22c55e;
  --clr-whatsapp-h:   #16a34a;

  /* Shadows */
  --sh-sm:  0 1px 3px rgba(15,23,38,.07), 0 1px 2px rgba(15,23,38,.04);
  --sh-md:  0 4px 16px rgba(15,23,38,.09), 0 2px 4px rgba(15,23,38,.05);
  --sh-lg:  0 12px 32px rgba(15,23,38,.11), 0 4px 8px rgba(15,23,38,.05);
  --sh-xl:  0 20px 48px rgba(15,23,38,.14), 0 8px 16px rgba(15,23,38,.06);

  /* Spacing scale */
  --sec-py:    clamp(64px, 8vw, 96px);
  --sec-py-sm: clamp(40px, 5vw, 64px);
  --wrap:      1160px;
  --wrap-sm:   960px;

  /* Radius */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   14px;
  --r-xl:   20px;
  --r-full: 999px;

  /* Nav */
  --nav-height: 70px;

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-base: 0.22s ease;
}

/* --- Reset & Base --- */
html {
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--clr-text);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Accessibility --- */
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 3000;
  background: var(--clr-dark);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--r-md);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: top var(--t-base);
}

.skip-link:focus {
  top: 12px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--clr-brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1001;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow var(--t-base);
}

.site-header.is-scrolled {
  box-shadow: var(--sh-md);
}

.navbar {
  max-width: var(--wrap);
  min-height: var(--nav-height);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 56px);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 58px;
  width: auto;
}

.nav-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: 'Bebas Neue', sans-serif;
}

.nav-links a {
  display: inline-block;
  text-decoration: none;
  color: var(--clr-text-2);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--clr-brand);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--clr-brand);
  background: var(--clr-brand-subtle);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* CTA link in nav */
.nav-links .nav-cta a {
  background: var(--clr-brand);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--r-full);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 2px 8px rgba(31, 94, 216, 0.28);
}

.nav-links .nav-cta a::after { display: none; }

.nav-links .nav-cta a:hover {
  background: var(--clr-brand-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(31, 94, 216, 0.38);
}

/* Hamburger button */
.menu-toggle {
  display: none;
  position: relative;
  z-index: 1002;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--clr-border);
  background: var(--clr-bg);
  padding: 0;
  cursor: pointer;
  border-radius: var(--r-md);
  gap: 0;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.menu-toggle:hover {
  background: var(--clr-bg-muted);
  border-color: var(--clr-brand);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--clr-text);
  margin: 3px 0;
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.18s ease;
}

/* Hamburger → X when open */
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Dim overlay when nav is open — starts below header */
body.nav-open::before {
  content: '';
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.46);
  z-index: 9998;
  animation: fadeInOverlay 0.28s ease forwards;
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* --- Section Helpers --- */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-brand);
  margin-bottom: 10px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-label {
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--clr-text);
  letter-spacing: -0.025em;
}

.section-header p {
  margin: 0 auto;
  max-width: 560px;
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

/* --- Hero Slider --- */
.hero-slider {
  width: 100%;
  background: var(--clr-dark);
}

.hero-slider__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slider__track {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider__image {
  display: block;
  width: 100%;
  height: clamp(320px, 52vw, 600px);
  object-fit: cover;
  object-position: center 30%;
  flex: 0 0 100%;
}

/* picture wrapper inside track must stretch like img */
.hero-slider__track picture {
  display: block;
  flex: 0 0 100%;
  width: 100%;
}


.hero-slider__cta {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 2;
  text-decoration: none;
  color: #fff;
  background: var(--clr-brand);
  border-radius: var(--r-lg);
  padding: 14px 30px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 6px 22px rgba(31, 94, 216, 0.48), 0 2px 6px rgba(0, 0, 0, 0.18);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}

.hero-slider__cta:hover,
.hero-slider__cta:focus-visible {
  background: var(--clr-brand-hover);
  color: #fff;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 10px 30px rgba(31, 94, 216, 0.55), 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* --- Hero → Leistungen Diagonal Transition --- */
.hero-slider {
  position: relative;
}

.hero-slider::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--clr-dark);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 3;
  pointer-events: none;
}

/* --- Responsive Design Section --- */
.section-placeholder {
  width: 100%;
  padding: var(--sec-py) 20px;
  background: var(--clr-bg);
}

.section-placeholder__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.section-placeholder__content h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
  color: var(--clr-text);
  letter-spacing: -0.02em;
}

.section-placeholder__content p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--clr-text-2);
  line-height: 1.75;
}

.section-placeholder__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
}

/* --- Pricing Section --- */
.pricing-section {
  padding: var(--sec-py) 20px;
  background: var(--clr-bg-soft);
}

.pricing-section__inner {
  max-width: var(--wrap);
  margin: 0 auto;
}

/* Overrides for section-header inside dark section */
.offer-section .section-header h2 {
  color: #fff;
}

.offer-section .section-header p {
  color: rgba(220, 235, 255, 0.72);
}

.offer-section .section-label {
  color: rgba(120, 175, 255, 0.92);
}

.pricing-section__legal {
  margin: -24px auto 36px;
  max-width: 700px;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--clr-text-muted);
  text-align: center;
  padding: 12px 18px;
  background: rgba(31, 94, 216, 0.04);
  border: 1px solid rgba(31, 94, 216, 0.1);
  border-radius: var(--r-md);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

/* --- Pricing Cards (redesigned, no phone mockup) --- */
.price-phone {
  background: var(--clr-bg);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  font-family: 'Inter', system-ui, sans-serif;
  position: relative;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--t-base), border-color var(--t-base), transform var(--t-base);
}

.price-phone:hover {
  box-shadow: var(--sh-lg);
  border-color: rgba(31, 94, 216, 0.22);
  transform: translateY(-3px);
}

/* Remove old phone notch */
.price-phone::before {
  display: none;
}

/* Highlight Business card */
.price-phone--business {
  border-color: var(--clr-brand);
  box-shadow: var(--sh-md), 0 0 0 1px var(--clr-brand);
}

.price-phone--business::after {
  content: 'Beliebt';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-brand);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.price-phone__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.price-phone--basic    .price-phone__badge { background: #dcfce7; color: #15803d; }
.price-phone--business .price-phone__badge { background: #fef3c7; color: #92400e; }
.price-phone--premium  .price-phone__badge { background: #dbeafe; color: #1e40af; }

.price-phone h3 {
  margin: 14px 0 4px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: -0.01em;
}

.price-phone__meta {
  margin: 0 0 14px;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.price-phone__price {
  margin: 0 0 4px;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--clr-text);
  letter-spacing: -0.035em;
}

.price-phone__hosting {
  margin: 0 0 16px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--clr-border);
}

.price-phone__list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--clr-text-2);
}

.price-phone__list li {
  padding: 5px 0 5px 22px;
  position: relative;
}

.price-phone__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-brand);
  font-weight: 700;
  font-size: 0.8rem;
}

.price-phone__fit {
  margin: 0 0 20px;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  font-style: italic;
  line-height: 1.5;
}

.price-phone__cta {
  display: block;
  text-align: center;
  text-decoration: none;
  background: var(--clr-brand);
  color: #fff;
  border-radius: var(--r-md);
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background var(--t-fast), transform var(--t-fast);
}

.price-phone__cta:hover,
.price-phone__cta:focus-visible {
  background: var(--clr-brand-hover);
  color: #fff;
  transform: translateY(-1px);
}

/* --- Services / Offer Section --- */
.offer-section {
  position: relative;
  background-color: var(--clr-dark);
  background-image: url("../../images/hintergrund-was-wir-bieten.png");
  background-image: image-set(
    url("../../images/hintergrund-was-wir-bieten.webp") type("image/webp"),
    url("../../images/hintergrund-was-wir-bieten.png") type("image/png")
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.offer-section__overlay {
  background: rgba(8, 14, 28, 0.82);
  padding: var(--sec-py) 20px;
}

.offer-section__inner {
  max-width: var(--wrap);
  margin: 0 auto;
}

/* Legacy selector kept for compatibility */
.offer-section h2 {
  color: #fff;
}

.offer-section__subtitle {
  display: none; /* Replaced by section-header structure */
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.offer-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  backdrop-filter: blur(4px);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}

.offer-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(100, 165, 255, 0.3);
  transform: translateY(-2px);
}

.offer-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  font-family: 'Inter', system-ui, sans-serif;
}

.offer-card p {
  margin: 0;
  color: rgba(215, 230, 255, 0.78);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* --- About Section --- */
.about-section {
  background: var(--clr-bg);
  padding: var(--sec-py) 20px;
}

.about-section__inner {
  max-width: var(--wrap-sm);
  margin: 0 auto;
}

.about-section h2 {
  margin: 0 0 8px;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  color: var(--clr-text);
  letter-spacing: -0.02em;
}

.about-section p {
  margin: 0 0 16px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--clr-text-2);
}

.about-section p:first-of-type {
  font-size: 1.1rem;
  color: var(--clr-text-2);
  font-weight: 500;
}

.about-section p:last-child {
  margin-bottom: 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--clr-border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

.trust-item::before {
  content: '✓';
  color: var(--clr-brand);
  font-weight: 700;
  font-size: 0.8rem;
}

/* --- Team Section --- */
.team-section {
  background: var(--clr-bg-soft);
  padding: var(--sec-py) 20px;
}

.team-section__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.team-section h2 {
  margin: 0 0 6px;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  color: var(--clr-text);
  letter-spacing: -0.02em;
}

.team-section__subtitle {
  margin: 0 0 30px;
  color: var(--clr-text-muted);
  font-size: 1rem;
  font-family: 'Inter', system-ui, sans-serif;
}

.team-section__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--clr-bg);
  box-shadow: var(--sh-xl), 0 0 0 1px var(--clr-border);
}

.team-section__photo {
  width: clamp(160px, 26vw, 240px);
  margin: 0 auto;
  position: relative;
}

.team-section__actions {
  position: absolute;
  inset: 0;
}

.team-section__action {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  color: #fff;
  background: rgba(15, 23, 38, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.48);
  opacity: 0;
  transition: opacity var(--t-base), transform var(--t-base), background var(--t-fast);
  backdrop-filter: blur(4px);
}

.team-section__action--phone { left: 4%; }
.team-section__action--mail  { right: 4%; }

.team-section__photo:hover .team-section__action,
.team-section__photo:focus-within .team-section__action {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.team-section__action:hover,
.team-section__action:focus-visible {
  background: rgba(31, 94, 216, 0.88);
  border-color: rgba(255, 255, 255, 0.65);
}

.team-section__name {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-top: 20px;
  margin-bottom: 3px;
  font-family: 'Inter', system-ui, sans-serif;
}

.team-section__role {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-brand);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Inter', system-ui, sans-serif;
}

.team-section__caption {
  margin: 0 auto;
  max-width: 480px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* --- Contact Section --- */
.contact-section {
  background: var(--clr-bg-muted);
  padding: var(--sec-py) 20px;
}

.contact-section__inner {
  max-width: var(--wrap-sm);
  margin: 0 auto;
}

.contact-section h2 {
  margin: 0 0 8px;
  text-align: center;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  letter-spacing: -0.02em;
}

.contact-section__intro {
  margin: 0 0 4px;
  text-align: center;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--clr-text-muted);
  font-size: 1rem;
}

.contact-section__required-note {
  margin: 0 0 26px;
  text-align: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.84rem;
  color: var(--clr-text-muted);
}

.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  align-items: start;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  box-shadow: var(--sh-md);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 4px;
}

.contact-form label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-top: 8px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 11px 14px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--clr-text);
  background: var(--clr-bg);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--clr-brand);
  box-shadow: 0 0 0 3px rgba(31, 94, 216, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: var(--clr-error);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}

.contact-form button[type="submit"] {
  margin-top: 10px;
  border: 0;
  border-radius: var(--r-md);
  padding: 13px 24px;
  color: #fff;
  background: var(--clr-brand);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.01em;
  width: 100%;
  transition: background var(--t-fast), transform var(--t-fast);
}

.contact-form button[type="submit"]:hover,
.contact-form button[type="submit"]:focus-visible {
  background: var(--clr-brand-hover);
  transform: translateY(-1px);
}

.contact-form__status {
  margin: 6px 0 0;
  min-height: 1.4em;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
}

.contact-form__privacy-hint {
  margin: 4px 0 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--clr-text-muted);
}

.contact-form__privacy-hint a {
  color: var(--clr-brand);
  text-decoration: underline;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --- WhatsApp Card --- */
.whatsapp-card {
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 20px 18px;
  background: var(--clr-bg-soft);
  font-family: 'Inter', system-ui, sans-serif;
}

.whatsapp-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
}

.whatsapp-card p {
  margin: 0 0 14px;
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: var(--r-md);
  padding: 11px 16px;
  background: var(--clr-whatsapp);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--t-fast), transform var(--t-fast);
}

.whatsapp-cta:hover,
.whatsapp-cta:focus-visible {
  background: var(--clr-whatsapp-h);
  color: #fff;
  transform: translateY(-1px);
}

.whatsapp-cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* --- Footer --- */
.site-footer {
  background: var(--clr-dark);
  padding: 24px 20px;
}

.site-footer__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__brand p {
  margin: 0;
  color: rgba(220, 232, 247, 0.68);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  line-height: 1.65;
}

.site-footer__brand p:first-child {
  font-weight: 700;
  color: rgba(220, 232, 247, 0.92);
  font-size: 0.9rem;
}

.site-footer__links {
  display: flex;
  gap: 2px;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer__links a {
  color: rgba(220, 232, 247, 0.6);
  text-decoration: none;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* --- Legal Pages --- */
.legal-main {
  background: var(--clr-bg-soft);
  padding: clamp(40px, 6vw, 64px) 20px;
}

.legal-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 36px 40px;
  font-family: 'Inter', system-ui, sans-serif;
  box-shadow: var(--sh-md);
}

.legal-card h1 {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--clr-text);
  letter-spacing: -0.02em;
}

.legal-section {
  margin-bottom: 22px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--clr-text);
}

.legal-section p {
  margin: 0 0 8px;
  line-height: 1.72;
  color: var(--clr-text-2);
  font-size: 0.93rem;
}

.legal-section ul {
  margin: 0 0 8px;
  padding-left: 20px;
  color: var(--clr-text-2);
  font-size: 0.93rem;
  line-height: 1.72;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0 14px;
  font-size: 0.88rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--clr-border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.legal-table th {
  background: var(--clr-bg-soft);
  color: var(--clr-text);
  font-weight: 700;
}

.legal-nav a {
  font-size: 1.2rem;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1100;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--clr-brand);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-lg);
  opacity: 0;
  pointer-events: none;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast), opacity var(--t-base);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--clr-brand-hover);
  transform: translateY(-2px);
  box-shadow: var(--sh-xl);
}

/* --- Hero Overlay & Content --- */
.hero-slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 14, 35, 0.78) 0%,
    rgba(8, 14, 35, 0.50) 45%,
    rgba(8, 14, 35, 0.12) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-slider__content {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px clamp(24px, 5vw, 60px);
  max-width: min(580px, 55%);
}

.hero-slider__eyebrow {
  display: block;
  margin: 0 0 10px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(110, 175, 255, 0.92);
}

.hero-slider__headline {
  margin: 0 0 14px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-slider__sub {
  margin: 0 0 28px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(0.92rem, 1.8vw, 1.06rem);
  color: rgba(215, 232, 255, 0.82);
  line-height: 1.65;
  max-width: 440px;
}

/* CTA inside content block: override absolute positioning */
.hero-slider__content .hero-slider__cta {
  position: static;
  transform: none;
  display: inline-block;
  align-self: flex-start;
}

.hero-slider__content .hero-slider__cta:hover,
.hero-slider__content .hero-slider__cta:focus-visible {
  transform: translateY(-2px);
}

/* --- KI & Digitalisierung Section --- */
.ki-section {
  padding: var(--sec-py) 20px;
  background: var(--clr-bg-soft);
}

.ki-section__inner {
  max-width: var(--wrap);
  margin: 0 auto;
}

.ki-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ki-card {
  background: var(--clr-bg);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 24px 22px 26px;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--t-base), border-color var(--t-base), transform var(--t-base);
}

.ki-card:hover {
  box-shadow: var(--sh-lg);
  border-color: rgba(31, 94, 216, 0.2);
  transform: translateY(-3px);
}

.ki-card__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.ki-card__icon svg {
  width: 24px;
  height: 24px;
}

/* Icon colour variants */
.ki-card__icon--blue   { background: #eff4ff; color: #1f5ed8; }
.ki-card__icon--purple { background: #f5f3ff; color: #7c3aed; }
.ki-card__icon--teal   { background: #f0fdfa; color: #0d9488; }
.ki-card__icon--orange { background: #fff7ed; color: #ea580c; }
.ki-card__icon--indigo { background: #eef2ff; color: #4338ca; }
.ki-card__icon--green  { background: #f0fdf4; color: #16a34a; }
.ki-card__icon--slate  { background: #f1f5f9; color: #475569; }

.ki-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: -0.01em;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.35;
}

.ki-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--clr-text-2);
  line-height: 1.72;
  font-family: 'Inter', system-ui, sans-serif;
}

/* --- FAQ Section --- */
.faq-section {
  padding: var(--sec-py) 20px;
  background: var(--clr-bg);
}

.faq-section__inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-lg);
  background: var(--clr-bg);
  overflow: hidden;
  transition: border-color var(--t-fast);
}

.faq-item[open] {
  border-color: rgba(31, 94, 216, 0.3);
}

.faq-item__question {
  padding: 18px 20px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--clr-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: background var(--t-fast);
}

.faq-item__question:hover {
  background: var(--clr-bg-soft);
}

.faq-item__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--clr-brand);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--t-base);
}

.faq-item[open] .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__question::-webkit-details-marker,
.faq-item__question::marker {
  display: none;
}

.faq-item__answer {
  margin: 0;
  padding: 0 20px 18px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.92rem;
  color: var(--clr-text-2);
  line-height: 1.75;
  border-top: 1px solid var(--clr-border);
  padding-top: 14px;
}

/* --- Process Section --- */
.process-section {
  padding: var(--sec-py) 20px;
  background: var(--clr-bg-soft);
}

.process-section__inner {
  max-width: var(--wrap);
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.process-step {
  text-align: center;
  padding: 32px 24px 28px;
  background: var(--clr-bg);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--t-base), border-color var(--t-base), transform var(--t-base);
}

.process-step:hover {
  box-shadow: var(--sh-lg);
  border-color: rgba(31, 94, 216, 0.2);
  transform: translateY(-3px);
}

.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--clr-brand-subtle);
  color: var(--clr-brand);
  font-size: 1.05rem;
  font-weight: 800;
  font-family: 'Inter', system-ui, sans-serif;
  margin: 0 auto 18px;
  letter-spacing: -0.02em;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--clr-text);
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: -0.01em;
}

.process-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.72;
  font-family: 'Inter', system-ui, sans-serif;
}

/* --- Fade-in Animations --- */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-in-delay-1 { transition-delay: 0.08s; }
  .fade-in-delay-2 { transition-delay: 0.16s; }
  .fade-in-delay-3 { transition-delay: 0.24s; }
}

/* --- Desktop: nav-links lives outside <header> (stacking context fix) —
   re-anchor it visually into the header row via position:fixed ----------- */
@media (min-width: 769px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-width: var(--wrap);
    margin: 0 auto;
    height: var(--nav-height);
    padding: 0 32px;
    justify-content: flex-end;
    z-index: 1002;
    pointer-events: none; /* transparent area must not block logo clicks */
  }

  .nav-links > li {
    pointer-events: auto;
  }
}

/* --- Responsive: Mobile --- */
@media (max-width: 768px) {
  .navbar {
    padding: 0 16px;
    max-width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
  }

  /* Slide-from-right nav panel — outside header stacking context */
  .nav-links {
    display: flex;
    position: fixed;
    top: var(--nav-height);
    right: 0;
    bottom: 0;
    width: min(300px, 82vw);
    background: var(--clr-bg);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 40px;
    gap: 0;
    z-index: 9999;
    transform: translateX(100%);
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(15, 23, 38, 0.16);
    overflow-y: auto;
    border-left: 1px solid var(--clr-border);
    border-top: 1px solid var(--clr-border);
  }

  .nav-links.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-links li {
    border-bottom: 1px solid var(--clr-border);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    font-size: 1.25rem;
    padding: 15px 10px;
    color: var(--clr-text);
    letter-spacing: 0.05em;
    border-radius: 0;
  }

  .nav-links a::after { display: none; }

  .nav-links a:hover {
    color: var(--clr-brand);
    background: var(--clr-brand-subtle);
    border-radius: var(--r-sm);
  }

  .nav-links .nav-cta {
    margin-top: 20px;
    border-bottom: none;
  }

  .nav-links .nav-cta a {
    display: block;
    text-align: center;
    border-radius: var(--r-full);
    padding: 14px 20px;
    font-size: 1.1rem;
    box-shadow: 0 2px 10px rgba(31, 94, 216, 0.25);
  }

  .nav-links .nav-cta a:hover {
    transform: none;
  }

  .hero-slider__image {
    height: clamp(380px, 58svh, 560px);
    object-position: center 25%;
  }

  .hero-slider__content {
    max-width: 100%;
    padding: 20px 16px 72px;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(8,14,35,0.88) 0%, rgba(8,14,35,0.4) 55%, transparent 100%);
  }

  .hero-slider__overlay {
    display: none;
  }

  .hero-slider__headline {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    margin-bottom: 10px;
  }

  .hero-slider__sub {
    font-size: 0.88rem;
    margin-bottom: 20px;
  }

  .hero-slider__content .hero-slider__cta {
    align-self: stretch;
    text-align: center;
  }

  .ki-section {
    padding: var(--sec-py-sm) 16px;
  }

  .ki-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-section {
    padding: var(--sec-py-sm) 16px;
  }

  .faq-item__question {
    font-size: 0.92rem;
    padding: 16px 16px;
  }

  .faq-item__answer {
    padding: 12px 16px 16px;
  }

  .process-section {
    padding: var(--sec-py-sm) 16px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-step {
    text-align: left;
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 4px;
    align-items: start;
    padding: 20px;
  }

  .process-step__num {
    margin: 0;
    grid-row: 1 / 3;
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }

  .process-step h3 {
    margin: 0;
    align-self: end;
  }

  .process-step p {
    grid-column: 2;
  }

  .section-placeholder {
    padding: var(--sec-py-sm) 16px;
  }

  .section-placeholder__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-section {
    padding: var(--sec-py-sm) 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price-phone--business {
    margin-top: 14px;
  }

  .offer-section__overlay {
    padding: var(--sec-py-sm) 16px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-section {
    padding: var(--sec-py-sm) 16px;
  }

  .team-section {
    padding: var(--sec-py-sm) 16px;
  }

  .contact-section {
    padding: var(--sec-py-sm) 16px;
  }

  .contact-section__grid {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .legal-card {
    padding: 24px 18px;
  }

  .legal-nav {
    display: flex;
    position: static;
    width: auto;
    background: transparent;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 0;
    border: 0;
  }

  .legal-nav a {
    font-size: 1.1rem;
  }

  .trust-row {
    gap: 8px 16px;
  }

  .site-footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .site-footer__links {
    justify-content: center;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }
}

/* --- Responsive: Tablet --- */
@media (min-width: 769px) and (max-width: 1060px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* --- Responsive: Tablet (ki-grid + process) --- */
@media (min-width: 769px) and (max-width: 1060px) {
  .ki-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1061px) and (max-width: 1280px) {
  .ki-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* --- Responsive: Tablet (process) --- */
@media (min-width: 769px) and (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-step {
    text-align: left;
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 16px;
    row-gap: 4px;
    padding: 24px 20px;
  }

  .process-step__num {
    margin: 0;
    grid-row: 1 / 3;
  }

  .process-step h3 { margin: 0; }
  .process-step p  { grid-column: 2; }
}

/* --- Touch: always show team action buttons --- */
@media (hover: none) {
  .team-section__action {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

/* ============================================================
   CARD LINKS (offer-card & ki-card Mehr erfahren)
   ============================================================ */

.offer-card__link,
.ki-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: gap var(--t-base), opacity var(--t-base);
}

.offer-card__link { color: rgba(150, 200, 255, 0.9); }
.ki-card__link    { color: var(--clr-brand); }

.offer-card__link:hover,
.ki-card__link:hover {
  gap: 8px;
  opacity: 0.85;
}

/* ============================================================
   SERVICE PAGES (src/leistungen/*.html)
   ============================================================ */

.service-breadcrumb {
  padding: 12px 20px;
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
}

.service-breadcrumb__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.82rem;
  color: var(--clr-text-2);
}

.service-breadcrumb a {
  color: var(--clr-text-2);
  text-decoration: none;
  transition: color var(--t-base);
}

.service-breadcrumb a:hover { color: var(--clr-brand); }
.service-breadcrumb__sep    { opacity: 0.5; }

/* Hero */
.service-hero {
  padding: clamp(60px, 10vw, 100px) 20px clamp(50px, 8vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(99,159,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.service-hero--blue    { background: linear-gradient(135deg,#0d1b2a 0%,#112240 60%,#1a3a6b 100%); }
.service-hero--purple  { background: linear-gradient(135deg,#12091e 0%,#1e0f3c 60%,#3b1f7a 100%); }
.service-hero--teal    { background: linear-gradient(135deg,#051918 0%,#0a2e2c 60%,#0d4a45 100%); }
.service-hero--orange  { background: linear-gradient(135deg,#1a0e00 0%,#2e1800 60%,#5c2f00 100%); }
.service-hero--indigo  { background: linear-gradient(135deg,#0e0e2c 0%,#171742 60%,#2b2b8a 100%); }
.service-hero--green   { background: linear-gradient(135deg,#061a0c 0%,#0c2e18 60%,#0f5028 100%); }
.service-hero--slate   { background: linear-gradient(135deg,#0c1117 0%,#161f2c 60%,#233347 100%); }
.service-hero--emerald { background: linear-gradient(135deg,#051810 0%,#092b1c 60%,#0e4a2e 100%); }
.service-hero--amber   { background: linear-gradient(135deg,#1a1000 0%,#2e1c00 60%,#5c3600 100%); }
.service-hero--sky     { background: linear-gradient(135deg,#061420 0%,#0c233a 60%,#0f3d63 100%); }
.service-hero--violet  { background: linear-gradient(135deg,#0f0822 0%,#1e1042 60%,#3b1f8a 100%); }

.service-hero__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.service-hero__icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.service-hero__icon svg { width: 34px; height: 34px; stroke-width: 1.6; }

.service-hero--blue    .service-hero__icon { background: rgba(99,159,255,0.18);  color: #7eb5ff; }
.service-hero--purple  .service-hero__icon { background: rgba(167,139,250,0.18); color: #c4b5fd; }
.service-hero--teal    .service-hero__icon { background: rgba(45,212,191,0.18);  color: #5eead4; }
.service-hero--orange  .service-hero__icon { background: rgba(251,146,60,0.18);  color: #fdba74; }
.service-hero--indigo  .service-hero__icon { background: rgba(129,140,248,0.18); color: #a5b4fc; }
.service-hero--green   .service-hero__icon { background: rgba(74,222,128,0.18);  color: #86efac; }
.service-hero--slate   .service-hero__icon { background: rgba(148,163,184,0.18); color: #cbd5e1; }
.service-hero--emerald .service-hero__icon { background: rgba(52,211,153,0.18);  color: #6ee7b7; }
.service-hero--amber   .service-hero__icon { background: rgba(251,191,36,0.18);  color: #fcd34d; }
.service-hero--sky     .service-hero__icon { background: rgba(56,189,248,0.18);  color: #7dd3fc; }
.service-hero--violet  .service-hero__icon { background: rgba(167,139,250,0.18); color: #ddd6fe; }

.service-hero__eyebrow {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(150, 210, 255, 0.7);
  margin: 0 0 12px;
}

.service-hero h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}

.service-hero__subtitle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(210, 230, 255, 0.75);
  line-height: 1.65;
  margin: 0 auto 32px;
  max-width: 580px;
}

.service-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-brand);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--r-xl);
  text-decoration: none;
  transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  box-shadow: 0 4px 16px rgba(58,131,255,0.3);
}

.service-hero__cta:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58,131,255,0.45);
}

/* Overview */
.service-overview {
  padding: clamp(52px, 8vw, 80px) 20px;
  background: var(--clr-bg);
}

.service-overview__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.service-overview__text h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--clr-text);
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  line-height: 1.2;
}

.service-overview__text p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.975rem;
  color: var(--clr-text-2);
  line-height: 1.75;
  margin: 0 0 14px;
}

.service-overview__text p:last-child { margin-bottom: 0; }

.service-overview__visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-overview__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Features */
.service-features {
  padding: clamp(52px, 8vw, 80px) 20px;
  background: var(--clr-bg-2);
}

.service-features__inner { max-width: var(--wrap); margin: 0 auto; }

.service-features h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 800;
  color: var(--clr-text);
  letter-spacing: -0.025em;
  margin: 0 0 8px;
  text-align: center;
}

.service-features__subtitle {
  text-align: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--clr-text-2);
  margin: 0 0 40px;
}

.service-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-feature-card {
  background: var(--clr-bg);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  transition: border-color var(--t-base), transform var(--t-base);
}

.service-feature-card:hover {
  border-color: var(--clr-brand);
  transform: translateY(-2px);
}

.service-feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eff4ff;
  color: var(--clr-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.service-feature-card__icon svg { width: 20px; height: 20px; }

.service-feature-card h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-text);
  margin: 0 0 8px;
}

.service-feature-card p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  color: var(--clr-text-2);
  line-height: 1.65;
  margin: 0;
}

/* Audience */
.service-audience {
  padding: clamp(52px, 8vw, 80px) 20px;
  background: var(--clr-bg);
}

.service-audience__inner { max-width: var(--wrap-sm); margin: 0 auto; }

.service-audience h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 800;
  color: var(--clr-text);
  letter-spacing: -0.025em;
  margin: 0 0 8px;
  text-align: center;
}

.service-audience__sub {
  text-align: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--clr-text-2);
  margin: 0 0 36px;
}

.service-audience__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-audience__list li {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--clr-text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.service-audience__list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: #eff4ff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233a83ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
  margin-top: 2px;
}

/* CTA Banner */
.service-cta-banner {
  padding: clamp(52px, 8vw, 80px) 20px;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2f55 100%);
  text-align: center;
}

.service-cta-banner__inner { max-width: 640px; margin: 0 auto; }

.service-cta-banner h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}

.service-cta-banner p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  color: rgba(210, 230, 255, 0.75);
  line-height: 1.65;
  margin: 0 0 28px;
}

.service-cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.service-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--r-xl);
  text-decoration: none;
  transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}

.service-cta-banner__btn--primary {
  background: var(--clr-brand);
  color: #fff;
  box-shadow: 0 4px 16px rgba(58,131,255,0.35);
}

.service-cta-banner__btn--primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58,131,255,0.5);
}

.service-cta-banner__btn--secondary {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.15);
}

.service-cta-banner__btn--secondary:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

/* Responsive: service pages */
@media (max-width: 768px) {
  .service-overview__inner   { grid-template-columns: 1fr; }
  .service-overview__visual  { order: -1; aspect-ratio: 16 / 9; }
  .service-features__grid    { grid-template-columns: 1fr; }
  .service-audience__list    { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1060px) {
  .service-features__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Legal pages: Inter font body */
.legal-main {
  font-family: 'Inter', system-ui, sans-serif;
}

.legal-card h1,
.legal-card h2,
.legal-card p,
.legal-section p {
  font-family: 'Inter', system-ui, sans-serif;
}
