@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-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::before {
      content: '';
      position: absolute; 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: rgb(213,218,222); }
    #hero .rule { background: rgb(213,218,222); }
    .hero-sub {
      font-size: 20px; font-weight: 400; color: rgb(213,218,222);
      margin-bottom: 24px; line-height: 1.4; letter-spacing: .06em;
    }
    .hero-body { font-size: 15px; color: rgb(213,218,222); margin-bottom: 40px; max-width: 680px; letter-spacing: .06em; }
    .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: rgb(44,59,88); border-top: 3px solid var(--white); padding: 20px 18px 18px; transition: background .2s; display: flex; flex-direction: column; gap: 6px; }
    .pillar:hover { background: rgba(255,255,255,.04); }
    .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: rgb(255,255,255); line-height: 1.3; letter-spacing: .06em;}
    .pillar-desc  { font-size: 14px; color: rgb(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 h2 { 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-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: rgb(213,218,222); line-height: 1.65; margin: 0; max-width: 940px; letter-spacing: .04em; }
    .ucc-sub em { color: rgb(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 rgb(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: rgb(5,121,169); margin-bottom: 9px; }
    .ucc-step-text p { font-size: 15px; color: rgb(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: rgb(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: rgb(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: rgb(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: rgb(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: rgb(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: rgb(255,255,255); 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; }

/* Legal Notice */
    #legal-notice { background: var(--navy-light); padding-top: 50px; padding-bottom: 50px;}
	.legal-notice-h1 { font-size: 32px; font-weight: 700; color: var(--navy-mid); line-height: 1.15; margin-bottom: 30px; letter-spacing: .02em; }
	
	#legal-notice a { color: var(--navy-mid); text-decoration: underline; text-underline-offset: 2px; transition: color .2s; }
	#legal-notice a:hover,
	#legal-notice a:focus-visible { color: var(--text-body); text-decoration: underline; }
	
/* Privacy Policy */
    #privacy { 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: 30px; 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 { background: linear-gradient(to bottom, #102335 5%, #7fa9cc 100%); }
    .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-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; }

/* 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: .04em; }
    .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: rgb(213,218,222); margin-bottom: 16px; }
    .uc-step { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgb(5,121,169); }
    .uc-step-label { font-size: 15px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: rgb(5,121,169); margin-bottom: 7px; }
    .uc-step-text { font-size: 15px; color: rgb(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: rgb(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: rgb(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: rgb(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; 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 {
      position: relative;
      overflow: hidden;
      padding: 90px 0;
      background:
        radial-gradient(circle at 12% 20%, rgba(22,148,196,.30), transparent 36%),
        linear-gradient(125deg, #087fab 0%, #07577d 48%, #102b50 100%);
    }
    #cta::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .10;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px);
      background-size: 48px 48px;
      -webkit-mask-image: linear-gradient(to right, transparent 2%, #000 64%, #000);
      mask-image: linear-gradient(to right, transparent 2%, #000 64%, #000);
    }
    #cta::after {
      content: "DCCE";
      position: absolute;
      right: -38px;
      bottom: -58px;
      color: rgba(255,255,255,.035);
      font-family: 'Lato', sans-serif;
      font-size: 190px;
      font-weight: 800;
      letter-spacing: -.05em;
      pointer-events: none;
    }
    .cta-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0,1fr) minmax(390px,.86fr);
      gap: 78px;
      align-items: center;
    }
    .cta-eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
      color: rgba(255,255,255,.70);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
    }
    .cta-eyebrow::before { content: ""; width: 34px; height: 2px; background: #62caeb; flex: 0 0 auto; }
    .cta-h2 {
      margin-bottom: 20px;
      color: var(--white);
      font-family: 'Lato', sans-serif;
      font-size: clamp(31px,3vw,43px);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: .035em;
      text-transform: uppercase;
    }
    .cta-body {
      max-width: 560px;
      margin-bottom: 0;
      color: rgba(255,255,255,.74);
      font-size: 15px;
      line-height: 1.72;
      letter-spacing: .025em;
    }
    .cta-right { text-align: left; }
    .cta-card {
      padding: 42px 36px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 4px;
      background: rgba(7,29,57,.84);
      box-shadow: 0 26px 70px rgba(0,0,0,.23);
      backdrop-filter: blur(9px);
    }
    .cta-card h3 {
      margin: 0 0 28px;
      color: var(--white);
      font-family: 'Lato', sans-serif;
      font-size: 27px;
      font-weight: 700;
      line-height: 1.25;
    }
    .btn-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--white);
      color: var(--navy-deep);
      padding: 14px 28px;
      font-size: 12px;
      font-weight: 800;
      text-decoration: none;
      letter-spacing: .08em;
      text-transform: uppercase;
      white-space: nowrap;
      transition: background .2s, color .2s, transform .2s;
      border-radius: 30px;
    }
    .btn-cta:hover { background: var(--navy-mid); color: var(--white); transform: translateY(-2px); }
    .cta-trust { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 28px; }
    .cta-trust span {
      position: relative;
      padding-left: 13px;
      color: rgba(255,255,255,.62);
      font-size: 11px;
      letter-spacing: .02em;
    }
    .cta-trust span::before {
      content: "";
      position: absolute;
      top: 6px;
      left: 0;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #62caeb;
    }

/* Footer */
    footer { background: var(--navy); padding: 56px 48px 32px; }
    .footer-top { display: grid; grid-template-columns: minmax(250px, 1.8fr) repeat(4, minmax(0, 1fr)); gap: 36px; 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: .04em; }
    .footer-tagline { font-size: 14px; font-weight: 800; color: rgb(5,121,169); line-height: 1.6; max-width: 300px; letter-spacing: .04em; text-transform: uppercase; }
    .footer-col-title { font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: rgb(5,121,169); margin-bottom: 16px; }
	.footer-links { font-size: 13px; color: rgba(212,218,222,.4);list-style: none; display: flex; flex-direction: column; gap: 10px; letter-spacing: .06em; }
    .footer-links a { font-size: 13px; color: rgba(212,218,222,.4); text-decoration: none; transition: color .2s; letter-spacing: .06em; }
    .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); }

/* ========================================================================
   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: 38px; }
  .cta-right { text-align: left; }
  .cta-card { max-width: 540px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-top > div:first-child { grid-column: 1 / -1; }

  .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: 1fr; gap: 28px; }
  .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 h2 { 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-title { font-size: 26px; }
  .factory-title { font-size: 16px; line-height: 1.35; margin-top: 48px; padding: 12px 24px 10px; }
  

  .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::after { font-size: 110px; right: -24px; bottom: -30px; }
  .cta-h2 { font-size: clamp(27px, 8vw, 36px); }
  .cta-right { text-align: left; }
  .cta-card { max-width: none; padding: 32px 24px; }
  .cta-card h3 { font-size: 24px; }
  .btn-cta { width: auto; max-width: 100%; white-space: normal; padding: 14px 22px; text-align: center; }
  .cta-trust { gap: 10px 20px; margin-top: 24px; }

  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; }

  .page2-nav { padding: 10px 14px; gap: 10px; }
  .page2-logo { font-size: 16px; }
  .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%; }
}


/* ========================================================================
   INDUSTRIAL & CORPORATE PAGE
   Styles moved from industrial-and-corporate.html and scoped to this page.
   ======================================================================== */

body.industrial-corporate-page {
  --step--1: 15px;
  --step-1: 20px;
  --step-2: 32px;
  --measure: 64ch;
}

/* ===== Base ============================================================== */
body.industrial-corporate-page *, body.industrial-corporate-page *::before, body.industrial-corporate-page *::after { box-sizing: border-box; }

body.industrial-corporate-page main p { max-width: var(--measure); }

body.industrial-corporate-page :where(a, button, summary):focus-visible {
  outline: 2px solid var(--navy-mid);
  outline-offset: 3px;
}

body.industrial-corporate-page .shell {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
}

/* ===== Buttons =========================================================== */
body.industrial-corporate-page .btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Lato', sans-serif;
  font-weight: 600; font-size: 15px;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 30px;
  border: 1px solid var(--navy-deep);
  background: var(--navy-deep);
  color: var(--white);
  transition: background .2s, color .2s, transform .2s;
}
body.industrial-corporate-page .btn:hover { background: var(--navy-mid); border-color: var(--navy-mid); }
body.industrial-corporate-page .btn::after { font-family: 'Lato', sans-serif; }
@media (prefers-reduced-motion: reduce) { body.industrial-corporate-page .btn { transition: none; } }

/* ===== Sections ========================================================== */
body.industrial-corporate-page .band { padding: var(--section-gap) 0; }
body.industrial-corporate-page .band-surface { background: var(--white); }
body.industrial-corporate-page .band-deep { background: var(--navy); color: var(--white); }
body.industrial-corporate-page .band-deep .eyebrow { font-size: 15px; font-weight: 700; letter-spacing: .08em; color: var(--white); display: block; margin-bottom: 10px; }
body.industrial-corporate-page .band-deep h2 { font-size: 32px; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 14px; letter-spacing: .02em; }
body.industrial-corporate-page .band-deep p { color: var(--navy-light); }

body.industrial-corporate-page .section-head {
  margin-bottom: 52px;
}
body.industrial-corporate-page .rule { border: 0; }

/* ===== Hero ============================================================== */
body.industrial-corporate-page .hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--section-gap) 0;
}
body.industrial-corporate-page .hero-grid {
  display: grid; gap: clamp(2.25rem, 1.2rem + 4vw, 4.5rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
}
body.industrial-corporate-page .hero-copy { display: flex; flex-direction: column; gap: 0; align-items: flex-start; }
body.industrial-corporate-page .hero h1 { max-width: 600px; color: var(--navy-mid); font-family: 'Lato', sans-serif; font-weight: 800; font-size: clamp(21px, 7vw, 60px); line-height: 1.0; }
body.industrial-corporate-page .hero-lede { font-family: Lato; font-size: 15px; font-weight: 600; color: var(--text-body); margin-bottom: 40px; max-width: 500px; letter-spacing: .06em; }

body.industrial-corporate-page .hero-tenant {
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 360px;
  margin-left: auto;
  padding: 58px 48px 38px 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--navy-light);
}

body.industrial-corporate-page .hero-tenant::before,
body.industrial-corporate-page .hero-tenant::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

body.industrial-corporate-page .hero-tenant::before {
  top: -1px;
  left: -1px;
  border-top: 3px solid var(--navy-mid);
  border-left: 3px solid var(--navy-mid);
}

body.industrial-corporate-page .hero-tenant::after {
  right: -1px;
  bottom: -1px;
  border-right: 3px solid var(--navy-mid);
  border-bottom: 3px solid var(--navy-mid);
}

body.industrial-corporate-page .tenant-label {
  position: absolute;
  top: 20px;
  left: 30px;
  color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

body.industrial-corporate-page .tenant-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  min-height: 260px;
}

body.industrial-corporate-page .tenant-stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 48px;
  padding: 11px 14px;
  background: var(--white);
  border: 1px solid var(--navy-mid);
  border-top: 3px solid var(--navy-mid);
  color: var(--navy);
}

body.industrial-corporate-page .tenant-stage-01 { width: 100%; }
body.industrial-corporate-page .tenant-stage-02 { width: 84%; }
body.industrial-corporate-page .tenant-stage-03 { width: 68%; }
body.industrial-corporate-page .tenant-stage-04 {
  width: 52%;
  background: var(--navy-light);
  border-top-color: var(--navy-deep);
  border-color: var(--navy-deep);
}

body.industrial-corporate-page .tenant-stage-no,
body.industrial-corporate-page .tenant-stage-title {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .10em;
  line-height: 1.35;
  text-transform: uppercase;
}

body.industrial-corporate-page .tenant-stage-no { color: var(--navy-mid); }
body.industrial-corporate-page .tenant-stage-04 .tenant-stage-no { color: var(--navy-mid); }

body.industrial-corporate-page .tenant-agents {
  display: grid;
  grid-template-columns: repeat(2, 6px);
  gap: 4px;
  align-items: center;
}

body.industrial-corporate-page .tenant-agents i {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--navy-deep);
  border-radius: 50%;
}

body.industrial-corporate-page .tenant-agents i:nth-child(3) { grid-column: 1 / -1; justify-self: center; }

body.industrial-corporate-page .tenant-builds {
  position: absolute;
  top: 92px;
  right: 18px;
  bottom: 47px;
  width: 18px;
  border-left: 1px solid var(--navy-mid);
}

body.industrial-corporate-page .tenant-builds::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -4px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--navy-mid);
  border-left: 1px solid var(--navy-mid);
  transform: rotate(45deg);
}

body.industrial-corporate-page .tenant-builds span {
  position: absolute;
  top: 50%;
  left: 8px;
  color: var(--text-body);
  font-family: 'Arial', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
}

/* ===== Teaser strip ====================================================== */
body.industrial-corporate-page .teaser {
  background: var(--navy-light);
  border-bottom: 1px solid var(--border);
  padding: var(--section-gap) 0;
}
body.industrial-corporate-page .teaser-grid {
  display: grid; gap: clamp(1.25rem, 0.9rem + 1.8vw, 2.75rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); align-items: start;
}
body.industrial-corporate-page .teaser-claim {
	font-family: 'Lato', sans-serif; font-size: 30px; font-weight: 700; letter-spacing: .04em; color: var(--navy-deep); line-height: 1.15; margin-bottom: 0; 
	max-width: 30ch; margin: 0; padding-left: 1.1rem; border-left: 3px solid var(--navy-mid);
}
body.industrial-corporate-page .teaser-body { max-width: 56ch; font-size: 15px; color: var(--text-body); line-height: 1.7; margin: 0; }

/* ===== Ecosystem lead ==================================================== */
body.industrial-corporate-page .ecosystem { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: clamp(1.75rem, 1.2rem + 2vw, 2.75rem); padding: clamp(1.5rem, 1.1rem + 1.4vw, 2.4rem);
	border-left: 3px solid var(--navy-mid); background: var(--navy-deep); }
body.industrial-corporate-page .ecosystem h3 { font-size: 30px; color: var(--white); letter-spacing: .06em; font-weight: 400; max-width: 900px}
body.industrial-corporate-page .ecosystem p { max-width: 900px; }
body.industrial-corporate-page .chips { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin: 0; padding: 0; }
body.industrial-corporate-page .chips li { font-family: 'Lato', sans-serif; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); padding: 0.35rem 0.7rem; border: 1px solid var(--white); border-radius: 5px; }
body.industrial-corporate-page .chips li:last-child { color: var(--navy-mid); border-style: dashed; }

/* ===== Stage rail ======================================================== */
body.industrial-corporate-page section.band.reveal:not(.band-surface):not(.band-navy-light):not(.band-deep) { background: var(--off-white); }

body.industrial-corporate-page .stages {
  display: grid; gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  grid-template-columns: repeat(4, 1fr);
}

body.industrial-corporate-page .stages-intro { width: 100%; max-width: 1200px; }

body.industrial-corporate-page .stage {
  background: var(--white);
  padding: clamp(1.4rem, 1rem + 1.2vw, 2rem);
  display: grid;
  grid-row: span 5;
  grid-template-rows: subgrid;
  gap: 1rem;
  position: relative;
}
body.industrial-corporate-page .stage::before {
  content: ""; position: absolute; inset-inline: 0; top: 0; height: 3px;
  background: var(--navy-mid);
}
body.industrial-corporate-page .stage-final::before { background: var(--navy-deep); }
body.industrial-corporate-page .stage-final { background: var(--navy-light); }

body.industrial-corporate-page .stage-no {
  font-family: 'Lato', sans-serif; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy-mid);
}
body.industrial-corporate-page .stage-aim { color: var(--text-body); font-size: 15px }
body.industrial-corporate-page .stage ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.5rem;
  font-size: var(--step--1);
}
body.industrial-corporate-page .stage li { display: flex; gap: 0.6rem; }
body.industrial-corporate-page .stage li::before {
  content: ""; flex: 0 0 auto; width: 6px; height: 6px; margin-top: 0.55em;
  background: var(--navy-mid); border-radius: 50%;
}
body.industrial-corporate-page .stage-final li::before { background: var(--navy-deep); }
body.industrial-corporate-page .stage-outcome { margin-top: 0; padding-top: 20px; border-top: 1px solid var(--border); font-size: 15px; }
body.industrial-corporate-page .stage-outcome strong { display: block; font-family: 'Lato', sans-serif; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
	color: var(--text-muted); margin-bottom: 0.3rem; font-weight: 500; }

/* ===== Prose blocks ====================================================== */
body.industrial-corporate-page .lead { max-width: 1200px; color: var(--text-body); letter-spacing: .04em; }

/* ===== Risk grid ========================================================= */
body.industrial-corporate-page .risks {
  display: grid; gap: 1px;
  background: var(--navy-mid);
  border: 1px solid var(--navy-mid);
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
}

body.industrial-corporate-page .risk {
  background: var(--white);
  padding: clamp(1.4rem, 1rem + 1.2vw, 2.1rem);
  display: flex; flex-direction: column; gap: 0.85rem;
}
body.industrial-corporate-page .risk-kicker {
  font-family: 'Lato', sans-serif; color: var(--navy-mid); font-size: 15px; font-weight: 600; letter-spacing: 0.04em; margin: 0;
  display: flex; align-items: center; gap: 0.6rem;
}
body.industrial-corporate-page .risk-kicker::before {
  content: ""; width: 18px; height: 2px; background: var(--navy-mid); flex: 0 0 auto; }
body.industrial-corporate-page .risk p { max-width: 52ch; font-size: 15px; color: var(--text-body); line-height: 1.7; letter-spacing: .02em; }
body.industrial-corporate-page .risk h3 { font-size: 21px; max-width: 52ch; color: var(--navy-mid); line-height: 1.7; letter-spacing: .04em; }
body.industrial-corporate-page .risk-map {margin-top: auto; padding-top: 20px; border-top: 1px solid var(--navy-light); font-family: 'Lato', sans-serif; color: var(--text-body); font-size: 15px; font-weight: 800; 
	letter-spacing: 0.04em; }

body.industrial-corporate-page .origin {
  margin-top: clamp(2rem, 1.2rem + 2.4vw, 3.25rem);
  padding: clamp(1.5rem, 1rem + 1.6vw, 2.25rem);
  background: var(--navy-light);
  border-left: 3px solid var(--navy-mid);
  display: flex; flex-direction: column; gap: 0.9rem;
}
body.industrial-corporate-page .origin p { max-width: 930px; }

/* ===== AI split ========================================================== */
body.industrial-corporate-page .split {
  display: grid; gap: 1px; background: var(--navy-mid);
  border: 1px solid var(--navy-mid);
  grid-template-columns: repeat(2, 1fr);
}
body.industrial-corporate-page .split > div { background: var(--navy-deep); padding: clamp(1.5rem, 1.1rem + 1.4vw, 2.4rem); display: grid; grid-row: span 3; grid-template-rows: subgrid; row-gap: 1rem; }
body.industrial-corporate-page .split h3 { font-size: 24px; color: var(--white); letter-spacing: .06em; font-weight: 400;}
body.industrial-corporate-page .split ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; color: var(--navy-light); font-size: var(--step--1); }
body.industrial-corporate-page .split li { display: flex; gap: 0.7rem; }
body.industrial-corporate-page .split li::before { content: ""; flex: 0 0 auto; width: 10px; height: 1px; margin-top: 0.85em; background: var(--navy-mid); }
body.industrial-corporate-page .dependency { margin-top: clamp(1.5rem, 1rem + 1.6vw, 2.25rem); font-family: 'Lato', sans-serif; font-size: 21px; color: var(--white); max-width: 1200px; padding-left: 1.1rem; 
	border-left: 3px solid var(--navy-mid); letter-spacing: .04em; }

/* ===== Outcomes list ===================================================== */
body.industrial-corporate-page .outcomes { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
body.industrial-corporate-page .outcomes li {
  display: grid; gap: 0.3rem 1.5rem;
  grid-template-columns: minmax(0, 40ch) minmax(0, 1fr);
  align-items: baseline;
  padding-block: 1.15rem;
  border-top: 1px solid var(--border);
}
body.industrial-corporate-page .outcomes li:last-child { border-bottom: 1px solid var(--border); }
body.industrial-corporate-page .outcomes b { font-family: 'Lato', sans-serif; font-weight: 600; font-size: 21px; letter-spacing: .04em; align-self: center; }
body.industrial-corporate-page .outcomes span { color: var(--text-body); max-width: 60ch; }

/* ===== How we work ======================================================= */
body.industrial-corporate-page .band-navy-light { background: var(--navy-light); }

body.industrial-corporate-page .band-navy-light .shell {
  display: block;
}

body.industrial-corporate-page .how-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 70px);
}

body.industrial-corporate-page .how-step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 14px;
  align-items: center;
  min-width: 0;
}

body.industrial-corporate-page .how-step-number {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--navy-mid);
  border-radius: 50%;
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

body.industrial-corporate-page .how-step h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

body.industrial-corporate-page .how-step p {
  grid-column: 1 / -1;
  grid-row: 2;
  max-width: none;
  margin: 0;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

body.industrial-corporate-page .how-claim {
  width: 100%;
  max-width: none;
  margin: clamp(40px, 6vw, 62px) 0 0;
  padding: clamp(24px, 4vw, 34px) clamp(26px, 5vw, 44px);
  background: var(--navy-deep);
  border-left: 5px solid var(--navy-mid);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .04em;
}

/* ===== Contact =========================================================== */
body.industrial-corporate-page .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(38px, 7vw, 82px);
  align-items: start;
}

body.industrial-corporate-page .contact-copy > p {
  max-width: 540px;
  margin-bottom: 28px;
}

body.industrial-corporate-page .person {
  display: flex;
  align-items: center;
  align-self: start;
  gap: 24px;
  padding: clamp(28px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--navy-light);
  border-top: 5px solid var(--navy-mid);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 20px 46px rgba(16, 35, 53, 0.13);
}

body.industrial-corporate-page .person-meta {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

body.industrial-corporate-page .person-meta b {
  margin-bottom: 4px;
  color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-size: var(--step-1);
  font-weight: 600;
}

body.industrial-corporate-page .person-meta .role {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: var(--step--1);
}

body.industrial-corporate-page .contact-lines {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.industrial-corporate-page .contact-lines li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid var(--navy-light);
}

body.industrial-corporate-page .contact-label {
  display: block;
  margin-bottom: 2px;
  color: var(--navy-mid);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.industrial-corporate-page .contact-lines a {
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  overflow-wrap: anywhere;
  border-bottom: 0;
}

body.industrial-corporate-page .contact-lines a:hover,
body.industrial-corporate-page .contact-lines a:focus-visible {
  color: var(--navy-mid);
}

body.industrial-corporate-page .contact-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: var(--navy-mid);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.industrial-corporate-page .contact-address-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

body.industrial-corporate-page .contact-address-row .contact-icon {
  margin-top: 3px;
}

body.industrial-corporate-page .address {
  margin-top: 0;
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: var(--step--1);
  font-style: normal;
  line-height: 1.7;
}

/* ===== Reveal ============================================================ */
body.industrial-corporate-page .reveal,
body.industrial-corporate-page .reveal.is-in {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Shared stylesheet isolation and former inline declarations */
body.industrial-corporate-page a[href^="tel:"] {
  pointer-events: auto;
  cursor: pointer;
}

body.industrial-corporate-page > .site-nav,
body.industrial-corporate-page > footer {
  font-family: 'Lato', sans-serif;
}

/* Industrial & Corporate: uses only the shared DCCE width breakpoints. */
@media (max-width: 1100px) {
  body.industrial-corporate-page .shell {
    max-width: 100%;
    padding-left: 28px;
    padding-right: 28px;
  }

  body.industrial-corporate-page .hero-grid {
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
  }

  body.industrial-corporate-page .hero-tenant {
    min-height: 330px;
  }

  body.industrial-corporate-page .stages {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body.industrial-corporate-page {
    --step--1: 13px;
    --step-1: 18px;
    --step-2: 25px;
  }
  
  body.industrial-corporate-page .how-process {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  body.industrial-corporate-page .how-step {
    min-height: 0;
  }

  body.industrial-corporate-page .how-claim {
    padding: 24px 24px 24px 28px;
  }

  body.industrial-corporate-page .shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  body.industrial-corporate-page .section-head {
    margin-bottom: 34px;
  }

  body.industrial-corporate-page .hero-grid,
  body.industrial-corporate-page .teaser-grid,
  body.industrial-corporate-page .stages,
  body.industrial-corporate-page .risks,
  body.industrial-corporate-page .split,
  body.industrial-corporate-page .contact-grid {
    grid-template-columns: 1fr;
  }

  body.industrial-corporate-page .contact-grid {
    gap: 36px;
  }

  body.industrial-corporate-page .hero-tenant {
    max-width: 560px;
    min-height: 330px;
    margin: 0;
    padding: 56px 46px 34px 24px;
  }

  body.industrial-corporate-page .tenant-label {
    left: 24px;
  }

  body.industrial-corporate-page .tenant-stack {
    min-height: 240px;
  }

  body.industrial-corporate-page .person {
    align-items: flex-start;
  }

  body.industrial-corporate-page .outcomes li {
    grid-template-columns: 1fr;
    align-items: normal;
  }

  body.industrial-corporate-page .stage {
    display: flex;
    flex-direction: column;
    grid-row: auto;
  }
  
  body.industrial-corporate-page .split > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  grid-row: auto;
}
}

@media (max-width: 480px) {
  body.industrial-corporate-page .shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.industrial-corporate-page .hero-tenant {
    min-height: 300px;
    padding: 52px 34px 28px 18px;
  }

  body.industrial-corporate-page .tenant-label {
    top: 17px;
    left: 18px;
  }

  body.industrial-corporate-page .tenant-stack {
    min-height: 218px;
    gap: 7px;
  }

  body.industrial-corporate-page .tenant-stage {
    min-height: 44px;
    padding: 9px 10px;
  }

  body.industrial-corporate-page .tenant-stage-02 { width: 88%; }
  body.industrial-corporate-page .tenant-stage-03 { width: 76%; }
  body.industrial-corporate-page .tenant-stage-04 { width: 64%; }

  body.industrial-corporate-page .tenant-builds {
    right: 12px;
    bottom: 38px;
  }

  body.industrial-corporate-page .person {
    flex-direction: column;
    gap: 20px;
    padding: 26px 22px;
  }

  body.industrial-corporate-page .person-meta {
    width: 100%;
  }
}
