/* Generated from /shared/common/styles.css by scripts/sync-shared.php. */

/* Shared source of truth for styles. Run php scripts/sync-shared.php after edits. */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&family=Open+Sans:wght@400;600;700&family=Roboto+Condensed:wght@300;400;700&display=swap');

/* styles.css */
:root{
  --bg: #ffffff;
  --text: #111827;
  --muted: #4B5563;
  --border: #D7DEE7;
  --accent: #10B981;
  --accent-strong: #059669;
  --accent-soft: #F0FDF4;
  --accent-glow: rgba(16,185,129,.12);
  --ink-soft: #EDF2F7;
  --card: #F7F9FC;
  --surface: rgba(255,255,255,.96);
  --surface-strong: #ffffff;
  --shadow: 0 12px 28px rgba(15, 23, 42, .045);
  --shadow-soft: 0 6px 18px rgba(15, 23, 42, .035);
  --radius: 10px;
  --max: 1160px;
  --header-height: 60px;
  --font-body: "Open Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  --font-display: "Roboto Condensed", "Open Sans", ui-sans-serif, system-ui, sans-serif;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin:0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--text);
  background: #ffffff;
  line-height: 1.62;
  padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, .brand, .section-title, .price, .value{
  font-family: var(--font-display);
}
h1, h2, h3, h4, .section-title, .card h3, .tile h3, .price-title h4, .project-header h3, .reference-group-title, .modal-head h3, .legal-card h2, .cookie-banner__copy h3, .domain-check-copy h2{
  font-weight: 300;
}
strong, b{
  font-weight: 700;
}
h1 strong,
.section-title strong,
.card h3 strong,
.reference-group-title strong{
  font-weight: 600;
}
.title-nowrap{
  white-space: nowrap;
}
.section-title.title-nowrap{
  max-width: none;
  white-space: nowrap;
  text-wrap: nowrap;
}
.section-title.title-nowrap-tight{
  max-width: none;
  white-space: nowrap;
  text-wrap: nowrap;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
}
.hero-title-nowrap-desktop{
  max-width: none;
  white-space: nowrap;
  text-wrap: nowrap;
}
.hero-title-nowrap-tight{
  max-width: none;
  white-space: nowrap;
  text-wrap: nowrap;
  font-size: clamp(1.45rem, 2.18vw, 2.18rem);
}
.hero-title-chunk{
  white-space: nowrap;
}
a{ color: inherit; text-decoration: none; }
a:focus, button:focus, input:focus, textarea:focus{
  outline: 3px solid rgba(16,185,129,.35);
  outline-offset: 2px;
  border-radius: 10px;
}

/* Layout */
.container{ width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section{ padding: 68px 0; }
.section.sm{ padding: 46px 0; }
.grid{ display: grid; gap: 24px; }
.two{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px){
  .two, .three{ grid-template-columns: 1fr; }
  .section{ padding: 52px 0; }
  .section.sm{ padding: 34px 0; }
}

/* Top bar */
.topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15,23,42,.04);
}
.topbar-inner{
  position: relative;
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -.03em;
  flex: 0 0 auto;
  font-size: 1.03rem;
}
.brand-logo{
  height: 40px;
  width: auto;
  display: block;
}
.nav{
  display:flex;
  align-items:center;
  gap: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
}
.nav-dropdown{
  position: relative;
}
.nav-dropdown summary{
  list-style: none;
}
.nav-dropdown summary::-webkit-details-marker{
  display: none;
}
.nav-dropdown-trigger{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  white-space: nowrap;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nav-dropdown-trigger::after{
  content: "▾";
  font-size: 11px;
  color: rgba(15,23,42,.55);
}
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown[open] .nav-dropdown-trigger{
  background: #F8FAFC;
  color: var(--text);
  transform: translateY(-1px);
}
.nav-dropdown-menu{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 10px;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 14px 34px rgba(15,23,42,.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 140;
}
.nav-dropdown-menu a{
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
}
.nav-dropdown-menu a:hover{
  background: #F8FAFC;
  color: var(--text);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown[open] .nav-dropdown-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav a{
  padding: 7px 9px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nav a:hover{
  background: #F8FAFC;
  color: var(--text);
  transform: translateY(-1px);
}

/* Hamburger menu (mobile) */
.hamburger{
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
}

@media (max-width: 900px){
  :root{ --header-height: 52px; }
  .hamburger{
    display: block;
  }

  .nav{
    display: none;
    position: absolute;
    top: 56px;
    right: 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 12px;
    z-index: 100;
  }
  .nav-dropdown{
    width: 100%;
  }
  .nav a,
  .nav-dropdown-trigger{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    text-align: center;
  }
  .nav-dropdown-trigger{
    position: relative;
    padding-right: 30px;
  }
  .nav-dropdown-trigger::after{
    position: absolute;
    right: 10px;
  }
  .nav-dropdown-menu{
    position: static;
    min-width: 0;
    margin-top: 8px;
    padding: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(248,250,252,.95);
  }
  .nav-dropdown[open] .nav-dropdown-menu{
    display: block;
  }

  .nav.active{
    display: flex;
  }

  .brand-logo{
    height: 34px;
  }
}

/* Buttons */
.btn{
  display:inline-flex;
  font-family: var(--font-body);
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -.01em;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .05s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  user-select: none;
  white-space: nowrap;
  min-height: 46px;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--accent);
  color: white;
  border-color: #0E9F6E;
  box-shadow: 0 12px 24px rgba(16,185,129,.12);
}
.btn-primary:hover{
  background: var(--accent-strong);
  box-shadow: 0 16px 30px rgba(16,185,129,.14);
  transform: translateY(-1px);
}
.btn-ghost{
  background: #ffffff;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover{
  border-color: #C7D1DC;
  background: #F8FAFC;
}
.btn:disabled{
  cursor: not-allowed;
  opacity: .72;
}
.hero-inner > div:first-child{
  max-width: 760px;
}

/* Hero */
.hero{
  position: relative;
  overflow: clip;
  padding: 68px 0 40px;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 72%, #fbfcfd 100%);
  border-bottom: 1px solid var(--border);
}
.hero::before{
  display: none;
}
.hero-inner{
  display:grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  gap: 42px;
  align-items: start;
}
.hero-inner > *{
  min-width: 0;
}
@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 8px;
  color: var(--muted);
  box-shadow: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.kicker strong{ color: var(--text); }
h1{
  margin: 20px 0 16px;
  max-width: none;
  font-size: clamp(1.6rem, 2.55vw, 2.45rem);
  line-height: 1.01;
  letter-spacing: -.04em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: nowrap;
  white-space: nowrap;
}
.hero-title-wrap{
  max-width: 18ch;
  text-wrap: balance;
  white-space: normal;
}
.hero-title-flow{
  max-width: 24ch;
  text-wrap: balance;
  white-space: normal;
}
.hero-home-title{
  max-width: none;
  white-space: normal;
  text-wrap: pretty;
}
.product-hero-title{
  max-width: 27ch;
  text-wrap: balance;
  white-space: normal;
}
.hero-product-page .hero-inner > div:first-child{
  max-width: 700px;
}
.hero-product-page .product-hero-title{
  max-width: 26ch;
}
.hero-duty-page .hero-inner{
  grid-template-columns: minmax(0, 1.48fr) minmax(280px, .52fr);
}
.hero-duty-page .hero-inner > div:first-child{
  max-width: none;
}
.hero-duty-page .hero-title-nowrap-tight{
  font-size: clamp(1.28rem, 1.92vw, 2.02rem);
}
.lead{
  margin: 0 0 20px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  max-width: 58ch;
}
.hero-cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  align-items: center;
}
.hero-proof{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(215, 222, 231, .8);
}
.proof-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fbfcfd;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
}
.proof-item::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  box-shadow: none;
}
.hero-highlights{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  max-width: 900px;
}
.hero-highlight{
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.hero-highlight::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), rgba(16,185,129,.22));
}
.hero-highlight strong{
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.015em;
}
.hero-highlight span{
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.mini-card{
  position: relative;
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}
.mini-card::before{
  display: none;
}
.hero-visual{
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #F8FAFC;
}
.mini-card h3{
  margin: 0 0 6px;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.mini-card .value{
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.02;
}
.mini-card .value.value-sm{
  font-size: 28px;
}
.mini-list{
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.mini-list li + li{
  margin-top: 4px;
}
.reference-hero-card{
  background:
    radial-gradient(circle at top right, rgba(16,185,129,.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%);
}
.reference-hero-card .hero-visual{
  max-height: 220px;
  object-fit: contain;
  margin-bottom: 14px;
}
.mini-card .muted{
  color: var(--muted);
}
@media (max-width: 900px){
  .hero{
    padding-top: 46px;
  }
  h1{
    max-width: 18ch;
    font-size: clamp(1.65rem, 6vw, 2.25rem);
    line-height: 1.02;
    text-wrap: balance;
    white-space: normal;
  }
  .hero-title-wrap{
    max-width: 18ch;
  }
  .product-hero-title{
    max-width: 18ch;
  }
  .hero-product-page .hero-inner > div:first-child{
    max-width: none;
  }
  .hero-product-page .product-hero-title{
    max-width: 18ch;
  }
  .hero-duty-page .hero-inner{
    grid-template-columns: 1fr;
  }
  .title-nowrap{
    white-space: normal;
  }
  .section-title.title-nowrap{
    max-width: 18ch;
    white-space: normal;
    text-wrap: pretty;
  }
  .section-title.title-nowrap-tight{
    max-width: 18ch;
    white-space: normal;
    text-wrap: pretty;
    font-size: clamp(1.55rem, 6vw, 2rem);
  }
  .hero-title-nowrap-desktop,
  .hero-title-nowrap-tight{
    max-width: 18ch;
    white-space: normal;
    text-wrap: balance;
  }
  .hero-title-nowrap-tight{
    font-size: clamp(1.55rem, 6vw, 2rem);
  }
  .hero-title-chunk{
    white-space: normal;
  }
  .hero-proof{
    gap: 8px;
  }
  .hero-highlights{ grid-template-columns: 1fr; }
  .references-hero .mini-card{
    max-width: none;
    justify-self: stretch;
  }
}

/* Section headings */
.section-title{
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.6vw, 2.55rem);
  line-height: 1.01;
  letter-spacing: -.035em;
  max-width: 18ch;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: pretty;
}
.card.soft .section-title,
.references-intro .section-title,
.contact .section-title{
  max-width: none;
}
.section-sub{
  margin: 0 0 28px;
  color: var(--muted);
  max-width: 68ch;
  font-size: 1.08rem;
  line-height: 1.72;
}
.pricing .section-title,
#services .section-title,
#pakete .section-title,
#infrastruktur .section-title{
  max-width: 24ch;
}
#infrastruktur .card.soft .section-title{
  max-width: none;
}
.muted{ color: var(--muted); }
.footer-legal{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 14px;
}
.footer-legal a{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-legal-button{
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-legal-button:hover{
  color: var(--accent-strong);
}
.footer-legal-button:focus{
  outline: none;
  border-radius: 0;
}
.legal-page{
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}
.legal-page .hero{
  border-bottom: 0;
}
.legal-grid{
  display: grid;
  gap: 18px;
}
.legal-card{
  padding: 24px;
}
.legal-card h2{
  margin: 0 0 12px;
  font-size: 1.7rem;
  letter-spacing: -.03em;
}
.legal-card p,
.legal-card li{
  color: var(--muted);
}
.legal-card ul{
  margin: 0;
  padding-left: 20px;
}
.legal-card ul li + li{
  margin-top: 8px;
}

.cookie-banner{
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 220;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.cookie-banner.is-hidden{
  display: none;
  opacity: 0;
  transform: translateY(18px);
  visibility: hidden;
}
.cookie-banner.is-hidden .cookie-banner__inner{
  pointer-events: none;
}
.cookie-banner__inner{
  width: min(920px, 100%);
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15,23,42,.14);
  padding: 22px;
  pointer-events: auto;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.cookie-banner__copy h3{
  margin: 0 0 8px;
  font-size: 1.5rem;
  letter-spacing: -.03em;
}
.cookie-banner__copy p{
  margin: 0;
  color: var(--muted);
}
.cookie-banner__copy a{
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__eyebrow{
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}
.cookie-banner__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.cookie-panel{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(215,222,231,.95);
  display: grid;
  gap: 14px;
}
.cookie-option{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  background: #F8FAFC;
  border: 1px solid rgba(215,222,231,.95);
  border-radius: 14px;
}
.cookie-option strong{
  display: block;
  margin-bottom: 4px;
}
.cookie-option p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.cookie-switch{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.cookie-switch input{
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}
.cookie-panel__actions{
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 720px){
  .cookie-banner{
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .cookie-banner__inner{
    padding: 18px;
    border-radius: 16px;
  }
  .cookie-banner__actions,
  .cookie-panel__actions{
    flex-direction: column;
  }
  .cookie-banner__actions .btn,
  .cookie-panel__actions .btn{
    width: 100%;
  }
  .cookie-option{
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-switch{
    width: 100%;
    justify-content: space-between;
  }
}

/* Domain check */
.domain-check{
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  max-width: 860px;
  margin: 0 auto;
}
.domain-check-copy{
  text-align: center;
  margin-bottom: 10px;
}
.domain-check-copy h2{
  margin: 0 0 4px;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  letter-spacing: -0.035em;
}
.domain-check-copy p{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}
.domain-check-form{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 10px;
  align-items: stretch;
}
.domain-check-shell{
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 118px;
  gap: 0;
  background: var(--card);
  padding: 6px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.domain-prefix{
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.domain-check-shell input,
.domain-check-shell select{
  border: 0;
  outline: none;
  min-height: 46px;
  font: inherit;
}
.domain-check-shell input{
  padding: 0 14px;
  font-size: 15px;
  color: var(--text);
  background: white;
  border-radius: 6px 0 0 6px;
}
.domain-check-shell select{
  padding: 0 12px;
  font-size: 15px;
  color: #334155;
  background: #f8fafc;
  border-left: 1px solid rgba(148, 163, 184, .35);
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}
.domain-submit{
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(16, 185, 129, .12);
  cursor: pointer;
  padding: 0 16px;
  min-height: 58px;
}
.domain-status{
  margin: 10px 0 0;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}
.domain-status.is-checking{
  color: #1d4ed8;
}
.domain-status.is-available{
  color: #047857;
}
.domain-status.is-taken{
  color: #b91c1c;
}
.domain-status.is-error{
  color: #92400e;
}
.domain-note{
  margin: 6px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}
@media (max-width: 900px){
  .domain-check-form{
    grid-template-columns: 1fr;
  }
  .domain-submit{
    min-height: 48px;
  }
}
@media (max-width: 720px){
  .domain-check{
    padding: 14px;
  }
  .domain-check-shell{
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 8px;
  }
  .domain-prefix{
    justify-content: flex-start;
    padding: 2px 8px 0;
    font-size: 14px;
  }
  .domain-check-shell input,
  .domain-check-shell select{
    min-height: 44px;
    border-radius: 6px;
  }
  .domain-check-shell select{
    border-left: 0;
  }
}

/* Cards */
.card{
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 24px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card.soft{
  background: #F8FAFC;
  box-shadow: none;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
  border-color: #C9D4DE;
}
.card h3{
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.bullets{
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.bullets li{ margin: 8px 0; }

/* Industry tiles */
.tile{
  display:flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.tile:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
  border-color: #C9D4DE;
}
.tile h3{
  margin: 0;
  font-size: 29px;
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 16ch;
}
.tile .tag{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  background: #F8FAFC;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  width: fit-content;
}
.tile .tag .pill{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}
.tile .actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
@media (max-width: 720px){
  .tile h3{
    font-size: 24px;
    max-width: none;
  }
}

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  align-items: stretch;
  overflow: visible;
  padding-top: 10px;
}
@media (max-width: 900px){
  .pricing{ grid-template-columns: 1fr; }
}
.price-card{
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction: column;
  gap: 14px;
  overflow: visible;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  isolation: isolate;
}
.price-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, .065);
  border-color: #C9D4DE;
}
.price-card::after{
  display: none;
}
.service-visual{
  display: block;
  width: 100%;
  height: 156px;
  object-fit: contain;
  padding: 14px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 8px;
  background: #F8FAFC;
}
.price-card .bullets{
  margin-bottom: 18px;
  padding-top: 2px;
}
.service-note{
  justify-content: space-between;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}
.service-note .price-title h4{
  max-width: 18ch;
}
.price-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}
.price-card.featured{
  border-color: rgba(16,185,129,.5);
  box-shadow: 0 16px 34px rgba(16,185,129,.12);
  margin-top: 0;
  padding-top: 22px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f9fffc 100%);
}
.product-offer{
  display: grid;
  gap: 22px;
}
.software-catalog{
  display: grid;
  gap: 16px;
}
.software-catalog-table{
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.22);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 16px 34px rgba(15,23,42,.04);
}
.software-catalog-table thead th{
  text-align: left;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #475569;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(148,163,184,.18);
  background: linear-gradient(180deg, #fbfdff 0%, #f6faf8 100%);
}
.software-catalog-table td{
  padding: 18px;
  vertical-align: top;
  border-bottom: 1px solid rgba(148,163,184,.14);
}
.software-catalog-table tbody tr:last-child td{
  border-bottom: 0;
}
.software-catalog-name{
  display: grid;
  gap: 6px;
}
.software-catalog-name strong{
  font-size: 20px;
  line-height: 1.02;
  letter-spacing: -.03em;
}
.software-catalog-name span,
.software-catalog-copy{
  color: var(--muted);
  line-height: 1.6;
}
.software-catalog-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.software-catalog-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.software-preview{
  display: grid;
  gap: 20px;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
}
.software-preview-copy{
  display: grid;
  gap: 14px;
}
.software-preview-copy p{
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
.software-preview-media{
  display: grid;
  gap: 12px;
}
.software-preview-note{
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.product-offer-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .9fr);
  gap: 20px;
  align-items: stretch;
}
.product-offer-main{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(16,185,129,.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%);
  border-color: rgba(16,185,129,.24);
}
.product-offer-main::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(16,185,129,.05), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(15,23,42,.05), transparent 18%);
  pointer-events: none;
}
.product-offer-main > *{
  position: relative;
  z-index: 1;
}
.product-offer-eyebrow{
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #047857;
}
.product-offer-main h3{
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  max-width: none;
}
.product-offer-main p{
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}
.product-offer-copy{
  display: grid;
  gap: 16px;
}
.product-offer-points{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.product-point{
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.18);
  background: rgba(255,255,255,.8);
  box-shadow: 0 10px 24px rgba(15,23,42,.04);
}
.product-point strong{
  font-size: 14px;
  letter-spacing: -.01em;
}
.product-point span{
  color: var(--muted);
  font-size: 14px;
}
.product-feature-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-feature-grid li{
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}
.product-feature-grid li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .63em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}
.product-targets{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-targets .chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.22);
  background: rgba(255,255,255,.84);
  color: var(--muted);
  font-size: 13px;
}
.product-offer-side{
  display: grid;
  gap: 16px;
}
.offer-card .price-title h4{
  max-width: none;
}
.offer-card .price{
  margin-top: 2px;
}
.offer-card .bullets{
  margin-bottom: 0;
}
.offer-card .btn{
  width: 100%;
}
.price-card.featured::before{
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 4px;
  border-radius: 4px;
  background: var(--accent);
}
.badge{
  position:absolute;
  top: -16px;
  right: 14px;
  transform: none;
  background: #eefaf4;
  color: #065F46;
  border: 1px solid rgba(16,185,129,.35);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--bg);
}

/* Fix: "Most Popular" badge overlapping on very small screens */
@media (max-width: 520px){
  .badge{
    top: -12px;
    right: 12px;
    transform: none;
    font-size: 11px;
    padding: 5px 8px;
    max-width: calc(100% - 24px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 980px){
  .product-offer-grid{
    grid-template-columns: 1fr;
  }
  .software-preview{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px){
  .product-offer-points,
  .product-feature-grid{
    grid-template-columns: 1fr;
  }
  .home-proof-grid,
  .home-reference-grid,
  .case-study-grid,
  .trust-grid{
    grid-template-columns: 1fr;
  }
  .software-catalog-table,
  .software-catalog-table thead,
  .software-catalog-table tbody,
  .software-catalog-table tr,
  .software-catalog-table th,
  .software-catalog-table td{
    display: block;
    width: 100%;
  }
  .software-catalog-table thead{
    display: none;
  }
  .software-catalog-table td{
    border-bottom: 0;
    padding: 8px 18px;
  }
  .software-catalog-table tbody tr{
    padding: 12px 0;
    border-bottom: 1px solid rgba(148,163,184,.14);
  }
  .software-catalog-table tbody tr:last-child{
    border-bottom: 0;
  }
  .reference-gallery--program{
    grid-template-columns: 1fr;
  }
  .media-lightbox{
    padding: 18px;
  }
  .media-lightbox-close{
    top: -6px;
    width: 42px;
    height: 42px;
  }
}
.price-title{
  display:flex;
  flex-direction: column;
  gap: 4px;
}
.price-title p{
  line-height: 1.6;
}
.price-title h4{
  margin: 0;
  font-size: 27px;
  line-height: 1.01;
  letter-spacing: -0.03em;
}
.price{
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 2px 0 0;
  padding: 4px 0 14px;
  border-bottom: 1px solid rgba(215, 222, 231, .85);
}
.price small{
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--muted);
  font-size: 14px;
}
.meta{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  margin-top: -2px;
}
.meta span{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 5px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #F8FAFC;
}
.cta-row{
  margin-top: auto;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.price-actions .btn,
.cta-row .btn{
  flex: 1 1 170px;
}
.price-actions .btn-primary,
.cta-row .btn-primary{
  min-width: 0;
}

#services .price-card,
#pakete .price-card,
#infrastruktur .price-card,
#kontakt .card{
  min-height: 0;
}

/* Referenzen */
.project-showcase{
  padding-top: 24px;
}
.project-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.project-grid.single{
  grid-template-columns: 1fr;
}
.project-card{
  border: 1px solid var(--border);
  border-radius: 10px;
  background: white;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.project-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
  border-color: #C9D4DE;
}
.project-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.project-header h3{
  margin: 0;
  font-size: 22px;
  line-height: 1;
}
.project-status{
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #065F46;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.3);
}
.project-status-muted{
  color: #475569;
  background: rgba(15,23,42,.05);
  border-color: rgba(148,163,184,.35);
}
.project-domain{
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.project-actions{
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.references-intro{
  display: grid;
  gap: 18px;
}
.reference-list{
  display: grid;
  gap: 16px;
}
.reference-group{
  display: grid;
  gap: 18px;
}
.reference-group + .reference-group{
  margin-top: 32px;
}
.reference-group-head{
  display: grid;
  gap: 8px;
}
.reference-group-title{
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.03;
  letter-spacing: -.03em;
}
.reference-group-copy{
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}
.reference-card{
  display: grid;
  gap: 14px;
}
.reference-meta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.reference-tags{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.reference-tag{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #0F172A;
  background: #F8FAFC;
  border: 1px solid rgba(148,163,184,.28);
}
.reference-summary{
  display: grid;
  gap: 12px;
}
.reference-summary p{
  margin: 0;
}
.reference-media{
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,.22);
  background: #F8FAFC;
  flex: 0 0 280px;
  width: 280px;
  height: 175px;
  margin: 0;
}
.reference-media-button{
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  flex: 0 0 280px;
}
.reference-media-button .reference-media{
  width: 100%;
}
.home-proof-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.home-proof-card{
  display: grid;
  gap: 10px;
}
.home-proof-card p{
  margin: 0;
}
.home-reference-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.home-reference-card{
  display: grid;
  gap: 14px;
}
.home-reference-card .reference-media{
  width: 100%;
  height: 220px;
  flex: 1 1 auto;
}
.home-reference-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.home-reference-card p{
  margin: 0;
}
.home-reference-card .btn{
  width: fit-content;
}
.case-study-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.case-study-card{
  display: grid;
  gap: 12px;
}
.case-study-card p{
  margin: 0;
}
.case-study-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.trust-card{
  display: grid;
  gap: 10px;
}
.trust-card p{
  margin: 0;
}
.reference-shot{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.reference-gallery{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: flex-start;
  align-items: flex-start;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.reference-gallery--portrait .reference-media{
  flex: 0 0 180px;
  width: 180px;
  height: 360px;
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0 10px 28px rgba(15,23,42,.08);
}
.reference-gallery--portrait .reference-shot{
  object-fit: cover;
  object-position: top center;
}
.reference-gallery--program{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 280px));
  gap: 12px;
  overflow: visible;
  padding-bottom: 0;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(148,163,184,.24);
  border-bottom: 1px solid rgba(148,163,184,.24);
  margin-top: 4px;
}

.references-hero .hero-inner{
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: 34px;
}

.references-hero .mini-card{
  display: block;
  max-width: 400px;
  justify-self: end;
}

.references-hero .hero-inner > div:first-child{
  max-width: none;
}

.references-hero .hero-title-wrap{
  max-width: none;
  white-space: normal;
  text-wrap: pretty;
}

.reference-hero-highlights{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin-top: 30px;
}

.reference-hero-highlights .hero-highlight{
  min-height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.reference-hero-highlights .hero-highlight strong{
  font-size: 14px;
}

.reference-hero-highlights .hero-highlight span{
  font-size: 14px;
  line-height: 1.6;
}
.reference-gallery--program .reference-media-button{
  flex: 0 0 auto;
}
.media-lightbox{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(15,23,42,.72);
  z-index: 320;
}
.media-lightbox.is-open{
  display: flex;
}
.media-lightbox-dialog{
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100vh - 56px);
  display: grid;
  gap: 12px;
  justify-items: center;
}
.media-lightbox-image{
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  display: block;
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(15,23,42,.34);
  background: #fff;
}
.media-lightbox-caption{
  color: #fff;
  text-align: center;
  font-size: 14px;
}
.media-lightbox-close{
  position: absolute;
  top: -10px;
  right: 0;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(15,23,42,.82);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.reference-note{
  padding: 14px 16px;
  border-radius: 10px;
  background: #F8FAFC;
  border: 1px solid rgba(148,163,184,.22);
}
.reference-note strong{
  display: block;
  margin-bottom: 4px;
}
.project-shell{
  padding: 18px;
}
@media (max-width: 900px){
  .project-grid{
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq-list{
  display:grid;
  gap: 14px;
}
.faq-item{
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.faq-item:hover{
  border-color: #C9D4DE;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .05);
}
.faq-item summary{
  cursor: pointer;
  font-weight: 600;
  font-size: 1.08rem;
  list-style: none;
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker{
  display:none;
}
.faq-item summary::after{
  content: "+";
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
  flex: 0 0 auto;
}
.faq-item[open] summary::after{
  content: "−";
}
.faq-item p{
  margin: 12px 0 0;
  color: var(--muted);
}

.modal{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, .54);
  z-index: 200;
}
.modal.is-open{ display: flex; }
.modal-dialog{
  width: min(640px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(2, 6, 23, .18);
}
.modal-head{
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 14px;
  border-bottom: 1px solid var(--border);
}
.modal-head h3{
  margin: 0 0 6px;
  font-size: 1.7rem;
}
.modal-head p{
  margin: 0;
  color: var(--muted);
}
.modal-close{
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}
.modal-body{ padding: 22px; }
.modal-note{
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(16,185,129,.24);
  background: rgba(16,185,129,.08);
  border-radius: 14px;
  color: #065F46;
  font-size: 14px;
}
.form-status{
  min-height: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.form-status.is-loading{
  color: #0f766e;
}
.form-status.is-success{
  color: #047857;
}
.form-status.is-error{
  color: #b91c1c;
}
.order-form{
  display: grid;
  gap: 14px;
}
.form-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.field{
  display: grid;
  gap: 6px;
}
.field label{
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.field > span{
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.field input,
.field select,
.field textarea{
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  background: white;
}
.field textarea{
  min-height: 110px;
  resize: vertical;
}
.honeypot{
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.term-switch{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
}
.term-option{
  position: relative;
  cursor: pointer;
}
.term-option input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.term-option span{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}
.term-option input:checked + span{
  background: white;
  color: var(--text);
  box-shadow: 0 8px 18px rgba(2, 6, 23, .08);
}
.modal-summary{
  display: grid;
  gap: 6px;
  padding: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.modal-summary strong{ font-size: 16px; }
@media (max-width: 700px){
  .form-grid{ grid-template-columns: 1fr; }
}

/* Steps */
.steps{
  counter-reset: step;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 900px){
  .steps{ grid-template-columns: 1fr; }
}
.step{
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.step:before{
  counter-increment: step;
  content: counter(step);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.35);
  color: #065F46;
  font-weight: 700;
  margin-bottom: 10px;
}
.step h4{
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1;
}
.step p{ margin: 0; color: var(--muted); }

/* Contact */
.contact{
  background: #ffffff;
  border-top: 1px solid var(--border);
}
.contact .grid.two{
  align-items: stretch;
}
.contact-callout{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(16,185,129,.14), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f6fbf8 100%);
  border-color: rgba(16,185,129,.22);
}
.contact-callout::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(16,185,129,.08), transparent 32%),
    radial-gradient(circle at 84% 20%, rgba(15,23,42,.06), transparent 22%);
  pointer-events: none;
}
.contact-callout > *{
  position: relative;
  z-index: 1;
}
.contact-eyebrow{
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #047857;
}
.contact-points{
  display: grid;
  gap: 10px;
}
.contact-point{
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 24px rgba(15,23,42,.04);
}
.contact-point strong{
  font-size: 14px;
  letter-spacing: -.01em;
}
.contact-point span{
  color: var(--muted);
  font-size: 14px;
}
.contact-callout-footer{
  margin-top: auto;
  display: grid;
  gap: 12px;
}
.contact-callout-footer .btn{
  width: 100%;
}
.contact-response{
  margin: 0;
  font-size: 13px;
  color: #065F46;
}
.contact-direct{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(148,163,184,.2);
  color: var(--muted);
  font-size: 14px;
}
.contact-direct strong{
  color: var(--text);
  font-size: 15px;
}
html[dir="rtl"] .contact-direct{
  flex-direction: row-reverse;
}
form{ display:grid; gap: 12px; }
label{
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
input, textarea{
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font: inherit;
  background: white;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
input:hover, textarea:hover{
  border-color: #C7D1DC;
}
input:focus, textarea:focus{
  border-color: rgba(16,185,129,.45);
  box-shadow: 0 0 0 4px rgba(16,185,129,.08);
}
textarea{ min-height: 110px; resize: vertical; }
.form-row{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 900px){
  .form-row{ grid-template-columns: 1fr; }
  .contact-direct{
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Footer */
footer{
  padding: 26px 0 40px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--border);
  background: #ffffff;
}
.footer-inner{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

/* Helpers */
.hr{
  height: 1px;
  background: var(--border);
  border: none;
  margin: 24px 0;
}
.pill-link{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  font-size: 14px;
  color: var(--muted);
  box-shadow: none;
}
.pill-link:hover{
  border-color: #C7D1DC;
  background: #F8FAFC;
  color: var(--text);
}
.pill-link::after{
  content: "->";
  font-size: 11px;
  color: var(--accent-strong);
}

.scroll-top{
  position: fixed;
  right: 24px;
  bottom: 22px;
  transform: translateY(18px) scale(.96);
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--text);
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease, background .18s ease, box-shadow .18s ease;
}
@media (max-width: 900px){
  .scroll-top{
    display: none !important;
  }
}
.scroll-top::after{
  display: none;
}
.scroll-top.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scroll-top:hover{
  background: #F8FAFC;
  box-shadow: 0 14px 28px rgba(15,23,42,.08);
}
.scroll-top:focus-visible{
  outline: 3px solid rgba(16,185,129,.35);
  outline-offset: 3px;
}
.scroll-top::before{
  content: "↑";
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  text-shadow: none;
}
html[dir="rtl"] .scroll-top{
  right: auto;
  left: 24px;
}
@media (max-width: 700px){
  .scroll-top{
    right: 16px;
    width: 52px;
    height: 52px;
    bottom: 18px;
  }
  html[dir="rtl"] .scroll-top{
    right: auto;
    left: 16px;
  }
}

/* Shared overrides for .com + RTL support */
:root{
  --font-arabic: "Cairo", "Open Sans", ui-sans-serif, system-ui, sans-serif;
}

html[dir="rtl"] body,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] .brand,
html[dir="rtl"] .btn,
html[dir="rtl"] .section-title,
html[dir="rtl"] .price,
html[dir="rtl"] .value{
  font-family: var(--font-arabic);
}

.topbar .container{
  width: min(1400px, calc(100% - 32px));
}

.topbar-inner{
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.brand{
  grid-column: 1;
  grid-row: 1;
  min-width: max-content;
  position: relative;
  z-index: 1;
}

.nav{
  grid-column: 2;
  grid-row: 1;
  width: auto;
  margin-left: auto;
  overflow: visible;
}

.topbar-controls{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  flex: 0 0 auto;
}

.lang-switch{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 999px;
  padding: 3px;
}

.lang-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1;
}

.lang-link:hover{
  color: var(--text);
}

.lang-link.active{
  background: rgba(16,185,129,.12);
  color: #065F46;
  border: 1px solid rgba(16,185,129,.35);
}

html[dir="rtl"] .nav{
  justify-content: center;
}

html[dir="rtl"] .nav-dropdown-menu{
  left: auto;
  right: 0;
}

html[dir="rtl"] .hero-highlight::before{
  left: auto;
  right: 0;
}

html[dir="rtl"] .domain-check-shell{
  grid-template-columns: 140px minmax(0, 1fr) 110px;
}

html[dir="rtl"] .domain-check-shell input{
  border-radius: 0 12px 12px 0;
}

html[dir="rtl"] .domain-check-shell select{
  border-left: 0;
  border-right: 1px solid rgba(148, 163, 184, .35);
  border-radius: 14px 0 0 14px;
}

html[dir="rtl"] .price-card.featured::before{
  background: var(--accent);
}

html[dir="rtl"] .product-feature-grid li{
  padding-left: 0;
  padding-right: 18px;
}

html[dir="rtl"] .product-feature-grid li::before{
  left: auto;
  right: 0;
}

html[dir="rtl"] .badge{
  right: auto;
  left: 14px;
}

.hero-home-ar .hero-inner > div:first-child{
  max-width: none;
}

.hero-home-ar .hero-title-ar-home{
  max-width: 32ch;
  font-size: clamp(1.6rem, 2.55vw, 2.45rem);
  line-height: 1.01;
  white-space: normal;
  text-wrap: balance;
}

.hero-break-desktop{
  display: block;
}

.pricing .section-title,
#services .section-title,
#pakete .section-title,
#infrastruktur .section-title,
#real-estate .section-title,
#clinics .section-title{
  max-width: 16ch;
}

@media (max-width: 900px){
  .hero-break-desktop{
    display: none;
  }

  .topbar-inner{
    display: flex;
    justify-content: space-between;
  }

  .topbar-controls{
    margin-left: 0;
  }

  .lang-link{
    padding: 5px 8px;
  }

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

  html[dir="rtl"] .domain-check-shell select{
    border-right: 0;
  }
}

@media (max-width: 700px){
  .home-proof-grid,
  .home-reference-grid,
  .case-study-grid,
  .trust-grid{
    grid-template-columns: 1fr;
  }

  .home-reference-card .reference-media{
    height: 200px;
  }

  .references-hero .hero-title-wrap{
    max-width: none;
    white-space: normal;
    text-wrap: pretty;
  }

  .reference-hero-highlights{
    grid-template-columns: 1fr;
  }
}
