@charset "utf-8";
/* CSS Document */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:       #102335;
      --navy-deep:  #2c3b58;
      --navy-mid:   #0579a9;
      --navy-light: #d5dade;
      --blue-pale:  #d6e4f5;
      --blue-tint:  #eef4fb;
      --white:      #ffffff;
      --off-white:  #f7f9fc;
      --text:       #102335;
      --text-body:  #2d3748;
      --text-muted: #64748b;
      --border:     #dde7f2;
      --section-gap: 96px;
    }

    html { scroll-behavior: smooth; webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

    body {
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--text-body);
	background: var(--white);
	border-top-left-radius: 25px;
    }

/* Layout */
    .wrap { max-width: 1200px; margin: 0 auto; padding: 0 100px; }

/* Typo */
    h1 {
      font-size: clamp(30px, 7vw, 60px);
      font-weight: 800;
      line-height: 1.0;
      color: var(--navy);
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    h2 {
      font-size: 32px;
      font-weight: 700;
      color: var(--navy-mid);
      line-height: 1.15;
      margin-bottom: 14px;
	  letter-spacing: .02em;
    }
    h3 {
      font-size: 21px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.3;
      margin-bottom: 10px;
    }
    h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    p  { font-size: 16px; line-height: 1.65; color: var(--text-body); margin-bottom: 14px; }
	
	.eyebrow {
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .08em;
      color: var(--navy);
      display: block;
      margin-bottom: 10px;
    }
    .rule {
      width: 40px; height: 3px;
      background: var(--navy-mid);
      margin-bottom: 20px;
    }

/* Logo */
    .logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; }

/* Prevent mobile browsers from styling number sequences as phone links. */
    a[x-apple-data-detectors],
    a[href^="tel:"] {
      color: inherit !important;
      text-decoration: none !important;
      pointer-events: none;
      cursor: default;
    }
    
/* Navigation */
    nav { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.97); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); padding: 0 48px; display: flex; align-items: center; 
	justify-content: space-between; height: 68px; }
    .nav-links { display: flex; gap: 25px; list-style: none; align-items: center; }
    .nav-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; transition: color .2s; }
    .nav-links > li > a { white-space: nowrap; }
    .nav-links a:hover { color: var(--navy-mid); }
    .nav-cta { display: inline-flex; align-items: center; justify-content: center; height: 44px; min-height: 44px; background: var(--navy-mid) !important; color: var(--white) !important; padding: 12px 18px !important; font-size: 13px !important; line-height: 1; letter-spacing: .06em !important; border-radius: 30px; }
    .nav-cta:hover { background: var(--navy-deep) !important; }

/* Language Menü */
    .language-menu { position: relative; }
    .lang-toggle { display: inline-flex; align-items: center; justify-content: center; gap: 7px; height: 44px; min-height: 44px; padding: 12px 18px; border: 0; border-radius: 30px; background: var(--navy-light);
      color: var(--text-muted); font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 600; line-height: 1; letter-spacing: .04em; text-transform: uppercase; cursor: pointer;
      transition: background .2s, color .2s; }
    .lang-toggle:hover,
    .lang-toggle:focus-visible { background: var(--navy-deep); color: var(--white); }
    .lang-toggle:focus-visible { outline: 2px solid var(--navy-mid); outline-offset: 2px; }
    .lang-toggle img { display: block; width: 20px; height: 20px; flex: 0 0 20px; object-fit: contain; }
    .lang-arrow { width: 7px; height: 7px; margin: -3px 1px 0 2px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform .2s ease, margin .2s ease; }
    .lang-toggle[aria-expanded="true"] .lang-arrow { margin-top: 3px; transform: rotate(225deg); }
    .lang-dropdown { position: absolute; top: calc(100% + 9px); right: 0; z-index: 310; min-width: 150px; padding: 7px; list-style: none; background: var(--white); border: 1px solid var(--border); 
	border-radius: 30px; box-shadow: 0 12px 28px rgba(16,35,53,.16); }
    .lang-dropdown[hidden] { display: none; }
    .nav-links .lang-dropdown a { display: block; padding: 10px 12px; border-radius: 7px; color: var(--text-muted); font-size: 12px; line-height: 0.5; text-align: left; text-transform: none; white-space: nowrap; }
    .nav-links .lang-dropdown a:hover,
    .nav-links .lang-dropdown a:focus-visible { color: var(--navy-mid); }
	
/* Back to top */
	.back-to-top { position: fixed; right: 24px; bottom: 62px; z-index: 180; display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; 
	background: var(--navy-mid); color: var(--white); font-size: 24px; font-weight: 700; text-decoration: none; box-shadow: 0 6px 18px rgba(16,35,53,.25); transition: background .2s, transform .2s;
	opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(10px);}
	.back-to-top:hover,
	.back-to-top:focus-visible { background: var(--navy-deep); color: var(--white); transform: translateY(-2px); }
	.back-to-top.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
	
/* Hero */
    #hero {
      position: relative;
      background: var(--navy-mid);
      overflow: hidden;
      min-height: 88vh;
      display: flex; flex-direction: column; justify-content: center;
      padding: 48px 48px 48px;
    }
    .hero-bar {
      position: relative; z-index: 1;
      max-width: 1200px; margin: 32px auto 0; padding: 0 48px;
      display: flex; flex-wrap: wrap; gap: 0;
      border-top: 1px solid rgba(213,218,222,.55);
      padding-top: 20px;
    }
    .hero-bar-item {
      display: flex; align-items: center; gap: 8px;
      padding: 0 20px 0 0;
      font-size: 12px; font-weight: 600; letter-spacing: .06em; 
      color: rgba(255,255,255,.55);
    }
    .hero-bar-item::before {
      content: '·';
      font-size: 16px; font-weight: 400;
      color: rgba(255,255,255,.55);
      line-height: 1;
    }
    .hero-bar-item:first-child { padding-left: 0; }
    .hero-main {
      position: relative; z-index: 1;
      max-width: 1200px; margin: 0 auto; width: 100%;
    }
/* World map SVG layer */
    .hero-worldmap {
	position: absolute; top: 0; right: -1%; bottom: 0; width: 75%; display: flex; align-items: center; pointer-events: none; z-index: 0;
    }
    .hero-worldmap svg {
      width: 100%; height: auto;
      opacity: 0.13;
    }
	.hero-worldmap::before {
      content: '';
      position: absolute; center: 0; top: 0; bottom: 0; width: 150%;
      background: linear-gradient(45deg, var(--navy) 100%, transparent 30% );
      z-index: 1;
    }
    .hero-content {
      position: relative; z-index: 1;
      width: 100%;
      display: grid; grid-template-columns: 1fr 400px; gap: 72px; align-items: center;
    }
    #hero h1 { color: var(--white); font-family: 'Lato', Arial, Helvetica, sans-serif; font-weight: 800; }
    #hero .eyebrow { color: rgba(213,218,222); }
    #hero .rule { background: rgba(213,218,222); }
    .hero-sub {
      font-size: 20px; font-weight: 400; color: rgba(213,218,222);
      margin-bottom: 24px; line-height: 1.4; letter-spacing: .06em;
    }
    .hero-body { font-size: 15px; color: rgba(213,218,222); margin-bottom: 40px; max-width: 680px; letter-spacing: .06em; }
    .hero-statement {
      font-size: 14px; color: rgba(213,218,222);
      padding: 12px 0 12px 16px;
      border-left: 2px solid rgba(213,218,222);
      font-style: italic; margin-bottom: 36px;
      max-width: 500px; line-height: 1.6;
    }
    .hero-buttons { display: flex; gap: 14px; align-items: center; flex-wrap: wrap;  }
    .btn-primary {
	background: var(--navy-deep);
	color: var(--white);
	padding: 13px 28px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	letter-spacing: .08em;
	transition: background .2s;
	border-radius: 30px;
	text-transform: uppercase;
    }
    .btn-primary:hover { background: var(--navy); }
    .btn-ghost {
	background: var(--white);
	color: var(--navy-deep);
	padding: 13px 28px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	letter-spacing: .08em;
	border-radius: 30px;
	transition: border-color .2s, color .2s;
	text-transform: uppercase;
    }
    .btn-ghost:hover { background: var(--navy); color: var(--white);}

/* Pillar cards */
    .hero-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding-bottom: 20px; }
    .pillar { background: rgba(44,59,88); border-top: 3px solid rgba(255,255,255,.15); padding: 20px 18px 18px; transition: background .2s; display: flex; flex-direction: column; gap: 6px; }
    .pillar:hover { background: rgba(255,255,255,.04); }
    .pillar:nth-child(1) { border-top-color: #ffffff; }
    .pillar:nth-child(2) { border-top-color: #ffffff; }
    .pillar:nth-child(3) { border-top-color: #ffffff; }
    .pillar:nth-child(4) { border-top-color: #ffffff; }
    .pillar-num { font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 2px; }
    .pillar-title { font-size: 14px; font-weight: 600; color: rgba(255,255,255); line-height: 1.3; letter-spacing: .06em;}
    .pillar-desc  { font-size: 14px; color: rgba(213,218,222); line-height: 1.6; margin: 0; flex: 1;  }

/* Vision */
    #vision { background: var(--off-white); padding: var(--section-gap) 0; border-bottom: 1px solid var(--border); }
    .vision-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
    .vision-left {}
    .vision-headline { font-family: 'Lato', sans-serif; font-size: 32px; font-weight: 700; letter-spacing: .02em; color: var(--navy-mid); line-height: 1.15; margin-bottom: 0; }
    .vision-points { display: flex; flex-direction: column; gap: 0; }
    .vision-point { display: grid; grid-template-columns: 40px 1fr; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--border); align-items: start; }
    .vision-point:last-child { border-bottom: none; padding-bottom: 0; }
    .vision-point-num { font-family: 'Lato', sans-serif; font-size: 28px; font-weight: 600; color: var(--navy-mid); line-height: 1; padding-top: 2px; }
    .vision-point-text { font-size: 15px; color: var(--text-body); line-height: 1.7; margin: 0; }

/* Factory image */
  .service-factory { position: relative; width: 100%; overflow: hidden; background: var(--white); }
  .service-factory img { display: block; width: 100%; max-width: 1920px; height: auto; margin: 0 auto; object-fit: contain; }
  .factory-image-caption { position: absolute; right: 24px; bottom: 16px; z-index: 2; margin: 0; padding: 5px 10px; color: var(--navy-light); background: rgba(16, 35, 53, 0.25); font-size: 12px; line-height: 1.4; 
  text-align: right; }

/* Shared Section */
    .section { padding: var(--section-gap) 0; }
    .section.alt { background: var(--off-white); }
    .section-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 52px; }

/* USE CASES · Phase JOURNEY */
    .ucj { margin-bottom: 44px; }
    .ucj-rail { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
    .ucj-btn { display: block; position: relative; width: 100%; text-align: left; background: var(--white); border: none; border-top: 5px solid transparent; padding: 20px 30px 20px; cursor: pointer; font-family: inherit;
	transition: background .2s, border-color .2s; }
    .ucj-btn:hover { background: var(--navy-light); }
    .ucj-btn[aria-selected="true"] { background: var(--navy-deep); border-top-color: var(--navy-mid); }
    .ucj-btn[aria-selected="true"]:hover { background: var(--navy); }
    .ucj-num { font-family: 'Lato', sans-serif; font-size: 26px; font-weight: 600; line-height: 1; color: var(--navy-mid); margin-bottom: 8px; }
    .ucj-btn[aria-selected="true"] .ucj-num { color: var(--navy-mid); opacity: .85; }
    .ucj-name { font-size: 15px; font-weight: 800; color: var(--navy); line-height: 1.25; margin-bottom: 8px; }
    .ucj-btn[aria-selected="true"] .ucj-name { color: var(--white); letter-spacing: .06em; font-weight: 600; }
    .ucj-tag {font-size: 14px; font-weight: 600; letter-spacing: .04em;  color: var(--text-muted); }
    .ucj-btn[aria-selected="true"] .ucj-tag { color: rgba(255,255,255,.5); }
    .ucj-arrow { position: absolute; top: 50%; right: -13px; transform: translateY(-50%); z-index: 2; font-size: 13px; font-weight: 700; color: var(--white); background: var(--navy-mid); width: 24px; text-align: center; 
	line-height: 1.25; }
    .ucj-btn:last-child .ucj-arrow { display: none; }

/* USE CASES · Phase Panel */
    .ucp { display: none; }
    .ucp.active { display: block; color: var(--navy-mid);}
    .ucp-head { border-left: 3px solid var(--navy-mid); padding: 2px 0 2px 22px; margin-bottom: 30px; }
    .ucp-kicker { font-size: 15px; font-weight: 800; letter-spacing: .04em; color: var(--navy); margin-bottom: 8px; }
    .ucp-title { font-family: 'Lato', sans-serif; font-size: 32px; font-weight: 600; color: var(--navy-mid); line-height: 1.08; margin-bottom: 10px; }
    .ucp-lead { font-size: 16px; color: var(--text-body); line-height: 1.7; margin: 0; }

/* Use case card — dark treatment, matching the deep-dive bar */
    .ucc { background: var(--navy-deep); border: none; border-top: 5px solid var(--navy-mid); margin-bottom: 24px; }
    .ucc:last-of-type { margin-bottom: 0; }
    .ucc:nth-of-type(even) { border-top-color: var(--navy-mid); }
    .ucc-head { padding: 26px 32px 24px; border-bottom: 1px solid rgba(255,255,255,.09); }
    .ucc-badge { display: inline-block; font-size: 14px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); padding: 4px 10px; 
	margin-bottom: 13px; }
    .ucc-title { font-size: 20px; font-weight: 800; color: var(--white); line-height: 1.25; margin-bottom: 7px; letter-spacing: .04em; }
    .ucc-sub { font-size: 15px; color: rgba(213,218,222); line-height: 1.65; margin: 0; max-width: 940px; letter-spacing: .04em; }
    .ucc-sub em { color: rgba(213,218,222); font-style: italic; }
	
/* Two-column detail layout: context box + approach timeline */
    .ucc-body { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; padding: 32px; }
    .ucc-box { background: rgba(255,255,255,.05); border-top: 5px solid var(--navy-mid); padding: 30px; letter-spacing: .04em; }
    .ucc-step { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid rgba(5,121,169); }
    .ucc-step:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .ucc-step-label { font-size: 15px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: rgba(5,121,169); margin-bottom: 9px; }
    .ucc-step-text p { font-size: 15px; color: rgba(213,218,222); line-height: 1.65; margin: 0 0 10px; }
    .ucc-step-text p:last-child { margin-bottom: 0; }
    .ucc-chips { display: grid; grid-template-columns: 1fr; gap: 8px; }
    .ucc-chip { background: rgba(255,255,255,.07); padding: 10px 14px; display: flex; align-items: flex-start; gap: 9px; }
    .ucc-chip-check { width: 15px; height: 15px; background: var(--navy-mid); flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; color: var(--white); }
    .ucc-chip-text { font-size: 15px; font-weight: 400; color: var(--navy-light); line-height: 1.45; letter-spacing: .04em }
    .ucc-box .ucb-contact { margin-top: 30px; }
	.ucc-timeline { display: flex; flex-direction: column; padding-top: 3px; }
    .ucc-tl-label { font-size: 15px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; padding-bottom: 9px; border-bottom: 1px solid rgba(255,255,255,.12); }
    .ucc-tl-item { display: flex; gap: 25px; align-items: stretch; }
    .ucc-tl-spine { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 14px; }
    .ucc-tl-dot { width: 10px; height: 10px; background: var(--navy-mid); flex-shrink: 0; margin-top: 6px; }
    .ucc-tl-line { width: 1px; background: rgba(213,218,222); flex: 1; margin: 3px 0; }
    .ucc-tl-item:last-child .ucc-tl-line { display: none; }
    .ucc-tl-content { padding-bottom: 25px; flex: 1; min-width: 0; }
    .ucc-tl-item:last-child .ucc-tl-content { padding-bottom: 0; }
    .ucc-tl-title { font-size: 15px; font-weight: 700; color: var(--navy-mid); line-height: 1.3; margin-bottom: 4px; letter-spacing: .04em; }
    .ucc-tl-desc { font-size: 15px; color: rgba(213,218,222); letter-spacing: .04em; line-height: 1.55; }

/* Contact button in the How-to-Start block */
    .ucb-contact { display: inline-flex; align-items: center; gap: 9px; background: var(--white); color: var(--navy); text-decoration: none; font-size: 15px; font-weight: 800; letter-spacing: .06em; 
	text-transform: uppercase; padding: 12px 20px; border-radius: 30px; }
    .ucb-contact:hover { background: var(--navy); color: var(--white); }
    .ucb-contact-arrow { font-size: 15px; line-height: 1; transition: transform .2s; }
    .ucb-contact:hover .ucb-contact-arrow { transform: translateX(3px); }

/* Metric strip */
    .ucc-metrics { display: flex; flex-wrap: wrap; gap: 1px; background: rgba(255,255,255,.09); border-top: 1px solid rgba(255,255,255,.09); }
    .ucm { background: rgba(255,255,255,.04); padding: 15px 25px 16px; flex: 1 1 0; min-width: 160px; }
    .ucm-num { font-family: 'Lato', sans-serif; font-size: 24px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
    .ucm-label { font-size: 14px; font-weight: 600; letter-spacing: .02em; color: rgba(213,218,222); line-height: 1.45; }

/* Deep-dive link */
    .uc-deepdive { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 36px; padding: 24px 32px; background: var(--navy-deep); text-decoration: none; transition: background .2s; }
    .uc-deepdive:hover { background: var(--navy); }
    .uc-dd-label { font-size: 15px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(213,218,222); margin-bottom: 6px; }
    .uc-dd-title { font-size: 18px; font-weight: 800; color: var(--navy-mid); line-height: 1.3; margin-bottom: 4px; letter-spacing: .04em; }
    .uc-dd-desc { font-size: 15px; color: rgba(213,218,222); line-height: 1.5; margin: 0; letter-spacing: .04em; }
    .uc-dd-arrow { font-size: 36px; font-weight: 700; color: var(--navy-mid); flex-shrink: 0; transition: transform .2s; }
    .uc-deepdive:hover .uc-dd-arrow { transform: translateX(4px); }

    @media (max-width: 1100px) {
      .ucc-body { grid-template-columns: 1fr; gap: 28px; }
      .ucj-rail { grid-template-columns: repeat(3, 1fr); }
      .ucj-arrow { display: none; }
    }
    @media (max-width: 320px) {
 	  .ucc-body { padding: 24px; }
      .ucc-box { padding: 24px; }
      .ucj-rail { grid-template-columns: 1fr; }
      .ucp-title { font-size: 26px; }
      .uc-deepdive { flex-direction: column; align-items: flex-start; }
    }

/* Fast Track section: hidden from flow, revealed when targeted */
/* Second Page Ooverlay */
    #page-newentrant {
      position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999; overflow-y: auto; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
    #page-newentrant.active { opacity: 1; pointer-events: all; }
    .page2-nav { position: sticky; top: 0; z-index: 10; background: var(--navy-mid); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,.1); padding: 14px 48px; display: flex; 
	align-items: center; justify-content: space-between; }
    .page2-back { display: flex; align-items: center; gap: 8px; font-family: 'Lato'; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); cursor: pointer;
      background: none; border: none; padding: 0; transition: color .2s; }
    .page2-back:hover { color: var(--white); }
    .page2-back-arrow { font-size: 12px; font-weight: 400; letter-spacing: .04em; }
    .page2-logo { font-family: 'Lato'; font-size: 20px; font-weight: 600; letter-spacing: .04em; color: rgba(255,255,255); text-align: center; }
	.page2-subline { font-family: 'Lato'; font-size: 15px; font-weight: 600; letter-spacing: .04em; color: rgba(44,59,88); text-align: center; }
    .page2-cta { font-family: 'Lato'; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); text-decoration: none; }
    .page2-cta:hover { color: var(--white); border-color: var(--white); }
	
/* Factory */
    .eyebrow-factory { font-size: 15px; font-weight: 700; letter-spacing: .08em; color: var(--white); display: block; margin-bottom: 10px; }

/* Imprint */
    #imprint { var(--section-gap); background: var(--navy-light); padding-top: 50px; padding-bottom: 50px;}
	.imprint-h1 { font-size: 32px; font-weight: 700; color: var(--navy-mid); line-height: 1.15; margin-bottom: 14px; letter-spacing: .02em; }
	
	#imprint a { color: var(--navy-mid); text-decoration: underline; text-underline-offset: 2px; transition: color .2s; }
	#imprint a:hover,
	#imprint a:focus-visible { color: var(--text-body); text-decoration: underline; }
	
/* Privacy Policy */
    #privacy { var(--section-gap); background: var(--navy-light); padding-top: 50px; padding-bottom: 50px; }
	.privacy-h1 { font-size: 32px; font-weight: 700; color: var(--navy-mid); line-height: 1.15; margin-bottom: 14px; letter-spacing: .02em; }
	.privacy-num-p {margin-left: 18px; margin-bottom: 30px; }
	.privacy-toc li { padding-left: 10px; }
	.privacy-bullet-points {margin-left: 18px; margin-bottom: 30px; }
	#privacy [id^="section-"] { scroll-margin-top: 88px; }
	#privacy a { color: var(--text-body); text-decoration: underline; text-underline-offset: 2px; transition: color .2s; }
	#privacy a:hover,
	#privacy a:focus-visible { color: var(--navy-mid); text-decoration: underline; }

/* Services */
/* Factory as a service */
    #services { var(--section-gap); background: linear-gradient(to bottom, #102335 5%, #7fa9cc 100%); }
	.factory-h2 { font-size: 32px; font-weight: 700; color: var(--navy-mid); line-height: 1.15; margin-bottom: 14px; letter-spacing: .02em; }
    .factory-hd { padding: var(--section-gap) 0 0px; }
    .factory-subtitle { font-size: 15px; font-weight: 700; letter-spacing: .06em; color: var(--white); margin-bottom: 16px; }
	.factory-title { position: relative; font-size: 20px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; text-align: center; 
		color: var(--white); background: rgba(255,255,255,.08); padding: 5px 110px; margin: 60px 0 0; border-radius: 10px; }
	.factory-title-icon { position: static; display: block; width: 70px; height: auto; margin: 0px auto 0; transform: none; }
	.factory-title-desc { font-size: 18px; font-weight: 600; letter-spacing: .04em; color: var(--navy); text-align: center; }
    .factory-desc { max-width: 1200px; color: var(--navy-light); margin-bottom: 0; letter-spacing: .04em; }
	.factory-rule { width: 40px; height: 3px; background: var(--navy-mid); margin-bottom: 20px; }

/* Band layout */
    .band-label.horiz { background: var(--navy-mid); }
   
/* Shared badge row */
    .svc-cat.horizontal { color: var(--navy-mid); }

/* Use case */
    #usecase { background: var(--navy-deep); padding: var(--section-gap) 0; }
    #usecase .eyebrow { color: var(--blue-pale); }
    #usecase .rule { background: var(--navy-mid); }
    .usecase-h2 { font-family: 'Lato', sans-serif; font-size: 44px; font-weight: 700; color: var(--white); line-height: 1.05; text-transform: uppercase; margin-bottom: 8px; }
    .usecase-sub { font-size: 16px; color: var(--navy-light); margin-bottom: 48px; max-width: 600px; letter-spacing: .04 }
    .usecase-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
    .usecase-box { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-top: 5px solid var(--navy-mid); padding: 36px; }
    .uc-label { font-size: 15px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: rgba(213,218,222); margin-bottom: 16px; }
    .uc-step { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(5,121,169); }
    .uc-step-label { font-size: 15px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: rgba(5,121,169); margin-bottom: 7px; }
    .uc-step-text { font-size: 15px; color: rgba(213,218,222); line-height: 1.65; }
    .uc-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 24px; }
    .uc-chip { background: rgba(255,255,255,.07); padding: 10px 14px; display: flex; align-items: center; gap: 8px; }
    .uc-chip-check { width: 15px; height: 15px; background: var(--navy-mid); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; color: var(--white); flex-shrink: 0; }
    .uc-chip-text { font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: .03em; }
    .usecase-timeline { display: flex; flex-direction: column; }
    .tl-item { display: flex; gap: 25px; align-items: stretch; }
    .tl-spine { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 32px; }
    .tl-dot { width: 10px; height: 10px; background: var(--navy-mid); flex-shrink: 0; margin-top: 6px; }
    .tl-line { width: 1px; background: rgba(213,218,222); flex: 1; margin: 3px 0; }
    .tl-item:last-child .tl-line { display: none; }
    .tl-content { padding-bottom: 25px; flex: 1; min-width: 0; }
    .tl-week  { font-size: 15px; font-weight: 700; letter-spacing: .04em; color: rgba(5,121,169); text-transform: uppercase; margin-bottom: 4px; }
    .tl-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 4px; letter-spacing: .04em; }
    .tl-desc  { font-size: 15px; color: rgba(213,218,222); line-height: 1.5; letter-spacing: .04em; }

/* About */
	#about { background: var(--navy-light); padding: var(--section-gap) 0; border-bottom: 1px solid var(--border); }
   	.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; column-gap: 72px; row-gap: 0; align-items: start;  }
	  
/* Eyebrow + rule sit in their own row, so the 01–04 list starts level with the h2 */
    .about-head  { grid-column: 1; grid-row: 1; }
    .about-left  { grid-column: 1; grid-row: 2; }
    .about-right { grid-column: 2; grid-row: 2; }
    .about-body { font-size: 16px; color: var(--text-body); line-height: 1.75; margin-bottom: 14px; }
    .about-right { display: flex; flex-direction: column; gap: 20px; }
    .value-item  { display: flex; gap: 16px; align-items: flex-start; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
    .value-item:last-child { border-bottom: none; padding-bottom: 0; }
    .value-num { font-family: 'Lato', sans-serif; font-size: 20px; font-weight: 600; color: var(--navy-mid); flex-shrink: 0; width: 28px; line-height: 1; padding-top: 2px; }
    .value-text h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    .value-text p  { font-size: 15px; color: var(--navy); line-height: 1.6; margin-bottom: 0; }

/* CTA */
    #cta { background: var(--navy-mid); padding: 80px 0; }
    .cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
    .cta-h2 { font-family: 'Lato', sans-serif; font-size: 30px; font-weight: 600; color: var(--white); line-height: 1.2; text-transform: uppercase; margin-bottom: 10px; letter-spacing: .06em;}
    .cta-body { font-size: 16px; color: rgba(213,218,222); line-height: 1.6; max-width: 580px; margin-bottom: 0; letter-spacing: .06em; }
    .cta-right { text-align: center; }
    .btn-cta { display: inline-block; background: var(--navy-deep); color: var(--white); padding: 16px 36px; font-size: 14px; font-weight: 600; text-decoration: none; letter-spacing: .06em; text-transform: uppercase; 
		white-space: nowrap; transition: background .2s; margin-bottom: 10px; border-radius: 30px;}
    .btn-cta:hover { background: var(--white); color: var(--navy-deep); }
    .cta-note { font-size: 15px; color: rgba(212,218,222); letter-spacing: .04em; }

/* Footer */
    footer { background: var(--navy); padding: 56px 48px 32px; }
    .footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 24px; }
	.footer-address { font-size: 13px; color: rgba(212,218,222,.4); margin-bottom: 14px; letter-spacing: .04; }
    .footer-tagline { font-size: 14px; font-weight: 800; color: rgba(5,121,169); line-height: 1.6; max-width: 300px; letter-spacing: .04; text-transform: uppercase }
    .footer-col-title { font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: rgba(5,121,169); margin-bottom: 16px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; letter-spacing: .4; }
    .footer-links a { font-size: 13px; color: rgba(212,218,222,.4); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--white); }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-copy   { font-size: 13px; color: rgba(212,218,222,.4); }
    .footer-legal  { display: flex; gap: 24px; letter-spacing: .04; } 
    .footer-legal a { font-size: 13px; color: rgba(212,218,222,.4); text-decoration: none;  }
    .footer-legal a:hover { color: rgba(212,218,222,.4);  }

/* ========================================================================
   Responsive Anpassung
   ======================================================================== */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

img, svg, video, canvas {
  max-width: 100%;
  height: auto;
}

.hero-worldmap img {
  width: 100%;
  height: auto;
  opacity: .13;
}

/* Mobile navigation button is hidden on desktop. */
.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 0;
	background: transparent;
	cursor: pointer;
	flex: 0 0 auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================================================
   TABLET / SMALL DESKTOP
   ======================================================================== */
@media (max-width: 1100px) {
  :root { --section-gap: 72px; }

  .wrap { max-width: 100%; padding-left: 28px; padding-right: 28px; }

  nav.site-nav { padding: 0 20px; }
  .logo-wrap img { width: 230px; height: auto; }
  .nav-links { gap: 20px; font-size: 11px; letter-spacing: .025em; }
  .nav-links a { font-size: 11px; letter-spacing: .025em; }
  .nav-cta { height: 30px; min-height: 30px; padding: 5px 8px !important; font-size: 11px !important; letter-spacing: .025em !important; }
  .lang-toggle { height: 30px; min-height: 30px; padding: 5px 8px; font-size: 11px; letter-spacing: .025em; }

  #hero { min-height: auto; padding: 64px 28px 50px; }
  .hero-content { grid-template-columns: minmax(0, 1fr); gap: 42px; }
  .hero-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-worldmap { width: 90%; right: -18%; }
  .hero-bar { padding-left: 0; padding-right: 0; }

  .vision-layout { grid-template-columns: 1fr; gap: 36px; }
  .section-intro { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .section-intro > p { max-width: 780px; }

  .ucc-body { grid-template-columns: 1fr; gap: 28px; }
  .ucj-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ucj-arrow { display: none; }

  .usecase-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 0; row-gap: 28px; }
  .about-head, .about-left, .about-right { grid-column: 1; grid-row: auto; }
  .cta-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-right { text-align: left; }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .page2-nav { padding-left: 28px; padding-right: 28px; }
}

/* ========================================================================
   MOBILE NAVIGATION + TABLET PORTRAIT
   ======================================================================== */
@media (max-width: 1024px) {
  nav.site-nav { height: 78px; padding: 0 22px; position: sticky; }

  .logo-wrap { min-width: 0; }
  .logo-wrap img { width: min(250px, 70vw); height: auto; }
  .nav-toggle { display: block; position: relative; z-index: 302; }

  nav.site-nav .nav-links {
    display: none; position: absolute; top: 78px; left: 0; right: 0; z-index: 301; padding: 12px 22px 22px; background: rgba(255,255,255,.99); border-bottom: 1px solid var(--border);
    box-shadow: 0 14px 30px rgba(16,35,53,.12); flex-direction: column; align-items: stretch; gap: 0; }
  nav.site-nav .nav-links.is-open { display: flex; }
  nav.site-nav .nav-links li { width: 100%; border-bottom: 1px solid var(--border); }
  nav.site-nav .nav-links .nav-about-item,
  nav.site-nav .nav-links .nav-cta-item { border-bottom: 0; }
  nav.site-nav .nav-links .nav-cta-item { padding-top: 12px; }
  nav.site-nav .nav-links li:last-child { border-bottom: 0; padding-top: 12px; }
  nav.site-nav .nav-links a { display: block; width: 100%; padding: 13px 4px; font-size: 13px; }
  nav.site-nav .nav-links .nav-cta { display: flex; align-items: center; justify-content: center; width: 100%; height: 44px; min-height: 44px;padding: 12px 15px !important; font-size: 13px !important; text-align: center; }
  nav.site-nav .nav-links .language-menu { padding: 12px 0; }
  nav.site-nav .nav-links .lang-toggle { width: 100%; height: 44px; min-height: 44px; padding: 12px 15px; font-size: 13px; justify-content: center; }
  nav.site-nav .nav-links .lang-dropdown { position: static; width: 100%; min-width: 0; margin-top: 8px; box-shadow: none; background: var(--blue-tint); }
  nav.site-nav .nav-links .lang-dropdown li { width: 100%; padding: 0; border: 0; }
  nav.site-nav .nav-links .lang-dropdown a { padding: 10px 12px; text-align: center; }
  
  .hero-bar { justify-content: center; text-align: center; }
  .hero-bar-item { justify-content: center; }
  
  .footer-top { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 32px; row-gap: 36px; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
  .footer-tagline { width: 100%; max-width: none; }
  }

/* ========================================================================
   SMARTPHONE
   ======================================================================== */
@media (max-width: 768px) {
  :root { --section-gap: 52px; }

  .wrap { padding-left: 20px; padding-right: 20px; }

  h1 { font-size: clamp(28px, 9vw, 42px); line-height: 1.08; letter-spacing: .035em; }
  h2 { font-size: clamp(25px, 7vw, 31px); }
  h3 { font-size: 19px; }
  p { font-size: 15px; }
  .eyebrow { font-size: 13px; }

  nav.site-nav .nav-links .nav-cta { padding: 12px 15px !important; }

  #hero { padding: 50px 20px 38px; }
  .hero-content { gap: 30px; }
  .hero-worldmap { width: 150%; right: -65%; opacity: .7; }
  .hero-sub { font-size: 18px; }
  .hero-body { font-size: 14px; margin-bottom: 28px; }
  .hero-pillars { grid-template-columns: 1fr; }
  .pillar { padding: 18px 16px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { width: 100%; padding: 13px 18px; text-align: center; }
  .hero-bar { display: block; align-self: stretch; width: 100%; max-width: none; margin: 28px 0 0; padding-top: 18px; text-align: left; }
  .hero-bar-item { display: block; width: 100%; padding-right: 0; font-size: 11px; letter-spacing: .08em; text-align: left; }
  .hero-bar-item + .hero-bar-item { margin-top: 8px; }

  .vision-layout { gap: 28px; }
  .vision-headline { font-size: 27px; }
  .vision-point { grid-template-columns: 32px minmax(0, 1fr); gap: 12px; padding: 19px 0; }
  .vision-point-num { font-size: 23px; }

  .section-intro { margin-bottom: 34px; }

  .factory-hd { padding-top: var(--section-gap); }
  .factory-h2, .factory-title { font-size: 26px; }
  .factory-title { font-size: 16px; line-height: 1.35; margin-top: 48px; padding: 12px 24px 10px; }
  
  .faas-bar-cta { grid-column: 1 / -1; justify-self: start; white-space: normal; }

  .ucj-rail { grid-template-columns: 1fr; }
  .ucj-btn { padding: 16px 20px; }
  .ucp-head { padding-left: 16px; }
  .ucp-title { font-size: 25px; }
  .ucc-head { padding: 22px 20px; }
  .ucc-body { padding: 20px; }
  .ucc-box { padding: 20px; }
  .ucc-tl-item { gap: 16px; }
  .ucc-metrics { flex-direction: column; }
  .ucm { width: 100%; min-width: 0; padding: 14px 20px; }
  .uc-deepdive { flex-direction: column; align-items: flex-start; padding: 20px; }

  .usecase-h2 { font-size: clamp(30px, 9vw, 39px); }
  .usecase-sub { margin-bottom: 32px; }
  .usecase-box { padding: 24px 20px; }
  .uc-chips { grid-template-columns: 1fr; }
  .tl-item { gap: 15px; }
  .tl-spine { width: 20px; }

  .about-layout { row-gap: 24px; }
  .about-body { font-size: 15px; }

  #cta { padding: 58px 0; }
  .cta-h2 { font-size: 27px; }
  .cta-right { text-align: center; }
  .btn-cta { width: 100%; white-space: normal; padding: 14px 20px; }

  footer { padding: 44px 20px 26px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 30px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-legal { flex-wrap: wrap; gap: 12px 20px; }

  .page2-nav { padding: 10px 14px; gap: 10px; }
  .page2-logo { font-size: 16px; }
  .page2-subline { font-size: 11px; }
  .page2-back, .page2-cta { font-size: 10px; }
}

/* ========================================================================
   SMALL SMARTPHONE
   ======================================================================== */
@media (max-width: 480px) {
  nav.site-nav { padding-left: 16px; padding-right: 12px; }
  nav.site-nav .nav-links { padding-left: 16px; padding-right: 16px; }
  nav.site-nav .nav-links .nav-cta { padding: 8px 12px !important; }
  nav.site-nav .nav-links .lang-toggle { padding: 8px 12px; }
  .logo-wrap img { width: min(240px, 69vw); }
  .wrap { padding-left: 16px; padding-right: 16px; }
  #hero { padding-left: 16px; padding-right: 16px; }
  .hero-worldmap { width: 180%; right: -90%; }
  .btn-primary, .btn-ghost { font-size: 12px; letter-spacing: .05em; }
  .ucc-head, .ucc-body { padding-left: 16px; padding-right: 16px; }
  .ucc-box { padding: 16px; }
  .ucp-title { font-size: 23px; }
  .factory-title { font-size: 15px; line-height: 1.35; padding: 12px 20px 10px; }
  .factory-image-caption { right: 10px; bottom: 8px; padding: 3px 7px; font-size: 10px; }
  .page2-nav { align-items: center; }
  .page2-logo { display: none; }
  #hero h1 { font-size: clamp(26px, 7.5vw, 32px); line-height: 1.08; letter-spacing: .02em; }
  .back-to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; font-size: 21px;}
}

#hero .hero-worldmap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  opacity: 1;
}

#hero .hero-worldmap img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  opacity: .16;
}

/* Soft overlay keeps the hero text readable without hiding the map. */
#hero .hero-worldmap::before { content: ''; position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; 
background: linear-gradient(90deg, rgba(5,121,169,.82) 0%, rgba(5,121,169,.48) 42%, rgba(5,121,169,.12) 100% ); }

/* Override the former map offsets in tablet/mobile breakpoints. */
@media (max-width: 1100px) {
  #hero .hero-worldmap { inset: 0; width: 100%; height: 100%; }
  #hero .hero-worldmap img { object-position: center center; }
}

@media (max-width: 768px) {
  #hero .hero-worldmap { inset: 0; width: 100%; height: 100%; opacity: 1; }
  #hero .hero-worldmap img { width: 100%; height: 100%; object-fit: cover; object-position: center center; opacity: .14; }
  #hero .hero-worldmap::before { background: rgba(5,121,169,.55);}
}

@media (max-width: 480px) {
  #hero .hero-worldmap { inset: 0; width: 100%; height: 100%; }
}
