
    :root {
      --blue: #00a6e2;
      --blue-dark: #007dae;
      --ink: #102033;
      --text: #24364a;
      --muted: #6d7c8c;
      --soft: #f4f8fb;
      --soft-blue: #edf9fe;
      --line: rgba(16,32,51,.10);
      --white: #ffffff;
      --shadow: 0 28px 80px rgba(16, 32, 51, .12);
      --shadow-soft: 0 16px 42px rgba(16, 32, 51, .08);
      --radius: 28px;
      --max: 1180px;
      --hero-img: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1440&q=75");
      --studio-img: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1100&q=75");
      --plans-img: url("https://images.unsplash.com/photo-1503387837-b154d5074bd2?auto=format&fit=crop&w=1100&q=75");
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background: #fff;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    .container {
      width: min(var(--max), calc(100% - 44px));
      margin: 0 auto;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255,255,255,.86);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }

    .nav-inner {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .logo {
      width: 146px;
      height: 30px;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 650;
    }

    .nav-links a:hover { color: var(--blue-dark); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 14px 21px;
      border-radius: 999px;
      border: 1px solid var(--line);
      font-weight: 850;
      transition: .22s ease;
      background: #fff;
    }

    .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

    .btn-primary {
      color: #fff;
      border: 0;
      background: linear-gradient(135deg, var(--blue), #37c8f7);
      box-shadow: 0 18px 40px rgba(0,166,226,.25);
    }

    .hero {
      position: relative;
      padding: 70px 0 46px;
      overflow: hidden;
      background:
        radial-gradient(circle at 5% 0%, rgba(0,166,226,.11), transparent 30%),
        linear-gradient(180deg, #fff 0%, #f7fbfd 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 56px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
      padding: 9px 14px;
      border: 1px solid rgba(0,166,226,.22);
      border-radius: 999px;
      color: var(--blue-dark);
      background: rgba(0,166,226,.08);
      font-size: 14px;
      font-weight: 850;
    }

    .eyebrow:before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--blue);
      box-shadow: 0 0 0 6px rgba(0,166,226,.12);
    }

    h1 {
      margin: 0 0 24px;
      max-width: 760px;
      color: var(--ink);
      font-size: clamp(46px, 6.5vw, 78px);
      line-height: .97;
      letter-spacing: -.065em;
    }

    h1 span { color: var(--blue); }

    .lead {
      max-width: 680px;
      margin: 0 0 34px;
      color: var(--muted);
      font-size: clamp(18px, 2vw, 21px);
      line-height: 1.65;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 42px;
    }




    .software-logo-badges {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
      margin: -18px 0 34px;
    }

    .software-logo-badge {
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 18px;
      border-radius: 18px;
      background: rgba(255,255,255,.88);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .software-logo-badge img {
      max-width: 210px;
      max-height: 34px;
      width: auto;
      height: auto;
      object-fit: contain;
    }

    .reference-logo-fallback {
      display: none;
      color: var(--ink);
      font-weight: 850;
      text-align: center;
    }

    .software-badges {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin: -18px 0 34px;
    }

    .software-badge {
      display: inline-flex;
      align-items: center;
      padding: 9px 13px;
      border-radius: 999px;
      color: var(--blue-dark);
      background: rgba(0,166,226,.08);
      border: 1px solid rgba(0,166,226,.18);
      font-size: 14px;
      font-weight: 850;
    }

    .proof {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      max-width: 720px;
    }

    .proof-item {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: rgba(255,255,255,.74);
      box-shadow: var(--shadow-soft);
    }

    .proof-item strong {
      display: block;
      margin-bottom: 4px;
      color: var(--ink);
      font-size: 18px;
    }

    .proof-item span {
      color: var(--muted);
      line-height: 1.45;
    }

    .hero-art {
      position: relative;
      min-height: 630px;
    }

    .image-main {
      position: absolute;
      inset: 0 0 80px 48px;
      border-radius: 38px;
      background-image: var(--hero-img);
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .image-main:after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(16,32,51,.18));
    }

    .image-card {
      position: absolute;
      left: 0;
      bottom: 0;
      width: min(390px, 86%);
      padding: 24px;
      border-radius: 28px;
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(18px);
      border: 1px solid rgba(255,255,255,.7);
      box-shadow: var(--shadow);
    }

    .image-card .label {
      color: var(--blue-dark);
      font-weight: 900;
      font-size: 13px;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .image-card strong {
      display: block;
      color: var(--ink);
      font-size: 23px;
      line-height: 1.18;
      letter-spacing: -.03em;
      margin-bottom: 10px;
    }

    .image-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }

    .section { padding: 92px 0; }

    .section-head {
      max-width: 820px;
      margin-bottom: 38px;
    }

    .kicker {
      margin-bottom: 12px;
      color: var(--blue-dark);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    h2 {
      margin: 0 0 16px;
      color: var(--ink);
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.04;
      letter-spacing: -.05em;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.7;
    }

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

    .service-card {
      min-height: 255px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--shadow-soft);
      transition: .22s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      border-color: rgba(0,166,226,.28);
      box-shadow: var(--shadow);
    }

    .icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      margin-bottom: 22px;
      border-radius: 18px;
      color: var(--blue);
      background: var(--soft-blue);
      border: 1px solid rgba(0,166,226,.14);
    }

    .icon svg {
      width: 27px;
      height: 27px;
      fill: currentColor;
    }

    .service-card h3 {
      margin: 0 0 12px;
      color: var(--ink);
      font-size: 22px;
      letter-spacing: -.025em;
    }

    .service-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .band {
      background: var(--soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .feature {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 34px;
      align-items: stretch;
    }

    .feature-image {
      min-height: 520px;
      border-radius: 36px;
      background-image: var(--studio-img);
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow);
    }

    .feature-panel {
      padding: 42px;
      border: 1px solid var(--line);
      border-radius: 36px;
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .checks {
      display: grid;
      gap: 14px;
      margin-top: 28px;
    }

    .check {
      display: flex;
      gap: 14px;
      padding: 16px;
      border-radius: 20px;
      background: #f8fbfd;
      border: 1px solid var(--line);
      color: var(--muted);
      line-height: 1.55;
    }

    .check:before {
      content: "✓";
      width: 24px;
      height: 24px;
      flex: 0 0 24px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: var(--blue);
      font-weight: 900;
    }

    .check b { color: var(--ink); }

    .visual-section {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 22px;
      align-items: stretch;
    }

    .visual-big {
      min-height: 520px;
      border-radius: 38px;
      background-image:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(16,32,51,.28)),
        var(--plans-img);
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow);
    }

    .visual-copy {
      padding: 44px;
      border-radius: 38px;
      color: #fff;
      background:
        radial-gradient(circle at 100% 0%, rgba(55,200,247,.32), transparent 32%),
        linear-gradient(135deg, #102033, #173957);
      box-shadow: var(--shadow);
    }

    .visual-copy .kicker { color: #82dcff; }
    .visual-copy h2 { color: #fff; }
    .visual-copy p {
      margin: 0;
      color: rgba(255,255,255,.78);
      font-size: 18px;
      line-height: 1.75;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      counter-reset: step;
    }

    .step {
      counter-increment: step;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: 26px;
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .step:before {
      content: "0" counter(step);
      display: block;
      margin-bottom: 20px;
      color: var(--blue);
      font-size: 15px;
      font-weight: 900;
      letter-spacing: .14em;
    }

    .step h3 {
      margin: 0 0 10px;
      color: var(--ink);
      font-size: 21px;
    }

    .step p {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }


    .topic-links,
    .case-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .topic-link,
    .case-card,
    .faq-item {
      border: 1px solid var(--line);
      border-radius: 26px;
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .topic-link {
      display: block;
      min-height: 170px;
      padding: 26px;
      transition: .22s ease;
    }

    .topic-link:hover {
      transform: translateY(-4px);
      border-color: rgba(0,166,226,.28);
      box-shadow: var(--shadow);
    }

    .topic-link strong,
    .case-card h3 {
      display: block;
      margin: 0 0 10px;
      color: var(--ink);
      font-size: 22px;
      letter-spacing: -.025em;
      line-height: 1.2;
    }

    .topic-link span,
    .case-card p,
    .faq-item p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .case-grid {
      margin-top: 26px;
    }

    .case-card {
      padding: 26px;
    }

    .case-card .label {
      display: inline-flex;
      margin-bottom: 14px;
      color: var(--blue-dark);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .faq-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .faq-item {
      padding: 0;
      overflow: hidden;
    }

    .faq-item summary {
      cursor: pointer;
      padding: 22px 24px;
      color: var(--ink);
      font-size: 19px;
      font-weight: 850;
      line-height: 1.35;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary:after {
      content: "+";
      float: right;
      color: var(--blue);
      font-size: 24px;
      line-height: 1;
      margin-left: 14px;
    }

    .faq-item[open] summary:after { content: "-"; }

    .faq-item p {
      padding: 0 24px 24px;
    }

    .references {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 24px;
    }

    .reference-logo {
      min-height: 128px;
      display: grid;
      place-items: center;
      padding: 26px;
      border-radius: 26px;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: var(--shadow-soft);
      filter: grayscale(1);
      opacity: .86;
    }

    .reference-logo img {
      max-width: 100%;
      max-height: 76px;
      width: auto;
      height: auto;
      object-fit: contain;
    }

    .reference-logo-fallback {
      display: none;
      color: var(--ink);
      font-size: 20px;
      font-weight: 900;
      text-align: center;
      letter-spacing: -.02em;
    }

    .quote {
      margin-top: 22px;
      padding: 30px;
      border-radius: 28px;
      border: 1px solid rgba(0,166,226,.16);
      background: linear-gradient(135deg, #fff, #eef9fe);
      color: var(--muted);
      font-size: 18px;
      line-height: 1.7;
      box-shadow: var(--shadow-soft);
    }

    .quote strong { color: var(--ink); }

    .google-review {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      margin-top: 22px;
      padding: 28px;
      border-radius: 28px;
      border: 1px solid rgba(0,166,226,.16);
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .google-review strong {
      display: block;
      margin-bottom: 8px;
      color: var(--ink);
      font-size: 24px;
      letter-spacing: -.025em;
    }

    .google-review p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .google-stars {
      display: inline-flex;
      gap: 3px;
      margin-bottom: 10px;
      color: #f5a623;
      font-size: 22px;
      letter-spacing: .04em;
    }

    .google-embed-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 20px;
      margin-top: 24px;
    }

    .google-map-card,
    .google-rating-card {
      overflow: hidden;
      border-radius: 32px;
      border: 1px solid rgba(0,166,226,.16);
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .google-map-card iframe {
      width: 100%;
      height: 390px;
      display: block;
      border: 0;
    }

    .google-rating-card {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 34px;
    }

    .google-rating-card .google-badge {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      gap: 10px;
      margin-bottom: 18px;
      padding: 10px 14px;
      border-radius: 999px;
      color: var(--blue-dark);
      background: rgba(0,166,226,.08);
      border: 1px solid rgba(0,166,226,.18);
      font-size: 14px;
      font-weight: 900;
    }

    .google-rating-card h3 {
      margin: 0 0 12px;
      color: var(--ink);
      font-size: clamp(28px, 3vw, 40px);
      line-height: 1.08;
      letter-spacing: -.045em;
    }

    .google-rating-card p {
      margin: 0 0 22px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.7;
    }


    .contact-box {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 20px;
      padding: 24px;
      border-radius: 40px;
      background: linear-gradient(135deg, #f2fbff, #fff);
      border: 1px solid rgba(0,166,226,.16);
      box-shadow: var(--shadow);
    }

    .contact-main {
      padding: 32px;
    }

    .contact-main p {
      margin: 0 0 28px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.7;
    }

    .contact-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .locations {
      display: grid;
      gap: 14px;
    }

    .location {
      padding: 26px;
      border-radius: 28px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .location strong {
      display: block;
      color: var(--ink);
      font-size: 22px;
      margin-bottom: 8px;
    }

    .location p {
      margin: 0 0 18px;
      color: var(--muted);
      line-height: 1.6;
    }

    .location a {
      display: inline-flex;
      color: var(--blue-dark);
      font-weight: 850;
      margin-right: 14px;
    }

    footer {
      padding: 44px 0;
      border-top: 1px solid var(--line);
      color: var(--muted);
      background: #fff;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 24px;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      font-weight: 750;
    }

    .footer-links a:hover { color: var(--blue-dark); }



    .legal-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      align-items: start;
    }

    .legal-card {
      padding: 28px;
      border-radius: 28px;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .legal-card h3 {
      margin: 0 0 14px;
      color: var(--ink);
      font-size: 24px;
      letter-spacing: -.03em;
    }

    .legal-card p,
    .legal-card li {
      color: var(--muted);
      line-height: 1.65;
    }

    .legal-card p { margin: 0 0 14px; }
    .legal-card ul { margin: 0 0 16px; padding-left: 18px; }
    .legal-card strong { color: var(--ink); }

    .legal-note {
      margin-top: 22px;
      padding: 20px 22px;
      border-radius: 22px;
      border: 1px solid rgba(0,166,226,.16);
      background: rgba(0,166,226,.07);
      color: var(--muted);
      line-height: 1.65;
    }

    .legal-link {
      display: inline-flex;
      align-items: center;
      margin-top: 4px;
      color: var(--blue-dark);
      font-weight: 850;
    }

    @media (max-width: 980px) {
      .nav-links { display: none; }
      .hero-grid, .feature, .visual-section, .contact-box, .google-embed-grid, .legal-grid { grid-template-columns: 1fr; }
      .hero-art { min-height: 520px; }
      .image-main { inset: 0 0 70px 26px; }
      .services { grid-template-columns: repeat(2, 1fr); }
      .steps, .proof, .references, .topic-links, .case-grid, .faq-list { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 640px) {
      .google-review { flex-direction: column; align-items: flex-start; }
      .google-map-card iframe { height: 330px; }
      .container { width: min(var(--max), calc(100% - 28px)); }
      .nav-inner { height: 70px; }
      .logo { width: 128px; height: 27px; }
      .hero { padding-top: 48px; }
      .hero-art { min-height: 420px; }
      .image-main { inset: 0; border-radius: 30px; }
      .image-card { left: 14px; right: 14px; width: auto; bottom: 14px; }
      .services, .steps, .proof, .references, .topic-links, .case-grid, .faq-list { grid-template-columns: 1fr; }
      .feature-image, .visual-big { min-height: 360px; border-radius: 30px; }
      .feature-panel, .visual-copy, .contact-main { padding: 28px; }
      .section { padding: 72px 0; }
      h1 { font-size: 43px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
      }
      .btn:hover, .service-card:hover, .service-link:hover { transform: none; }
    }
  
/* Shared accessibility, language navigation and content improvements. */
*{box-sizing:border-box}img{max-width:100%}a:focus-visible,summary:focus-visible{outline:3px solid #07547a;outline-offset:5px}a,summary{touch-action:manipulation}
.skip-link{position:fixed;left:16px;top:-100px;z-index:100;background:#fff;color:#102033;padding:14px 20px;border:2px solid #07547a}.skip-link:focus{top:12px}
.language-bar{background:#f2f8fc;border-bottom:1px solid #d9e6ed}.language-links{display:flex;justify-content:flex-end;gap:8px;flex-wrap:wrap;padding-block:5px}.language-links a{display:inline-flex;align-items:center;min-height:38px;padding:5px 12px;border-radius:8px;color:#174862;font-size:14px;font-weight:700}.language-links a[aria-current=page]{background:#174862;color:white}
.breadcrumbs{padding-top:22px;font-size:14px;color:#42566a}.breadcrumbs a{text-decoration:underline;text-underline-offset:3px}.breadcrumbs span{margin-inline:8px}
.seo-links{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.seo-links a{display:block;padding:24px;background:#fff;border:1px solid #d9e6ed;border-radius:20px;color:#174862;font-weight:700;line-height:1.5}.seo-links a:hover{border-color:#0573a0}
.consultation{max-width:850px}.consultation p,.consultation li{font-size:18px;line-height:1.75;color:#42566a}.consultation li{margin-block:10px}.consultation h2{font-size:clamp(28px,4vw,44px)}
.service-languages{margin-block:24px;padding:20px;border:1px solid #cbdfe9;border-radius:18px;background:#fff;color:#42566a}.service-languages h3{margin:0 0 14px;color:#174862;font-size:19px;line-height:1.4}.service-languages dl{margin:0;display:grid;gap:14px}.service-languages dt{font-weight:750;color:#102033}.service-languages dd{margin:4px 0 0;font-size:15px;line-height:1.6}
.service-languages p{margin:0;font-size:15px;line-height:1.6}html:not([lang="de-CH"]) .hero-grid h1{font-size:clamp(36px,4.8vw,64px)}
.nav-inner{gap:16px}.nav-links{flex-wrap:wrap;justify-content:center}.nav-links a{white-space:normal}.nav .btn{flex-shrink:0}.hero-grid>*,.feature>*,.contact-box>*{min-width:0}h1,h2,h3{overflow-wrap:break-word}section[id]{scroll-margin-top:140px}
@media(max-width:980px){.nav-inner{height:auto!important;min-height:76px;flex-wrap:wrap;padding-block:14px}.nav-links{display:flex!important;order:3;flex-basis:100%;gap:4px 18px;font-size:14px}.nav-links a{padding-block:8px}.nav{position:relative!important}.seo-links{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.language-links{justify-content:center;gap:2px}.language-links a{padding-inline:10px}.seo-links{grid-template-columns:1fr}.nav-inner>.btn{font-size:13px;padding:11px 12px}.hero h1{font-size:clamp(34px,9vw,43px)}.legal-grid{grid-template-columns:1fr!important}}
