:root {
  --ink: #151515;
  --ink-soft: #3e3c38;
  --muted: #6c6861;
  --paper: #f7f3ec;
  --paper-2: #efe9df;
  --paper-3: #e5ddd2;
  --white: #fffdf8;
  --accent: #e87531;
  --accent-dark: #b94d18;
  --green: #789681;
  --line: rgba(21, 21, 21, .16);
  --line-strong: rgba(21, 21, 21, .38);
  --shadow: 0 24px 65px rgba(20, 18, 15, .10);
  --shadow-small: 0 12px 34px rgba(20, 18, 15, .08);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 36px;
  --container: 1240px;
  --header-height: 82px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 117, 49, .06), transparent 26rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans TC", "PingFang TC", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open, body.assistant-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: var(--white); background: var(--accent); }

[hidden] { display: none !important; }
[data-lang-zh] { font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "PingFang TC", sans-serif; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container.narrow { width: min(calc(100% - 40px), 860px); }
.section { padding: clamp(78px, 10vw, 150px) 0; position: relative; }
.section.compact { padding: clamp(55px, 7vw, 92px) 0; }
.section.dark { color: var(--paper); background: var(--ink); }
.section.paper-2 { background: var(--paper-2); }
.section.white { background: var(--white); }
.section.rule-top { border-top: 1px solid var(--line); }
.section-head {
  display: grid;
  grid-template-columns: minmax(150px, .6fr) minmax(0, 1.8fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
  margin-bottom: clamp(40px, 7vw, 82px);
}
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.dark .section-label { color: #aaa49a; }
.section-label::before { content: ""; width: 28px; height: 2px; background: var(--accent); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(232,117,49,.12); }
.dark .eyebrow { color: #b9b2a8; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-weight: 720;
  letter-spacing: -.045em;
  line-height: 1.04;
}
h1 { font-size: clamp(3.15rem, 7.4vw, 7.35rem); }
h2 { font-size: clamp(2.25rem, 4.8vw, 4.9rem); }
h3 { font-size: clamp(1.38rem, 2.1vw, 2.05rem); }
h4 { font-size: 1.05rem; letter-spacing: -.02em; }
.display-medium { font-size: clamp(2.6rem, 5.7vw, 6.2rem); }
.lead {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(1.14rem, 1.7vw, 1.42rem);
  line-height: 1.55;
}
.dark .lead { color: #c9c3b9; }
.text-muted { color: var(--muted); }
.text-accent { color: var(--accent); }
.max-60 { max-width: 60ch; }
.max-70 { max-width: 70ch; }
.kicker { color: var(--accent); font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 32px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-size: 14px;
  font-weight: 780;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .24s var(--ease), background .24s, color .24s, border-color .24s;
}
.button:hover { transform: translateY(-2px); background: var(--accent); border-color: var(--accent); }
.button.secondary { color: var(--ink); background: transparent; }
.button.secondary:hover { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.button.accent { color: var(--white); background: var(--accent); border-color: var(--accent); }
.button.accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.button.light { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.button.light:hover { color: var(--paper); background: var(--accent); border-color: var(--accent); }
.button.small { min-height: 40px; padding: 8px 15px; font-size: 13px; }
.button svg { width: 17px; height: 17px; transition: transform .24s var(--ease); }
.button:hover svg { transform: translateX(3px); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-weight: 760;
  line-height: 1.3;
}
.text-link:hover { color: var(--accent); }

.utility-bar { color: #d7d1c7; background: #101010; border-bottom: 1px solid rgba(255,255,255,.08); }
.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.utility-links { display: flex; align-items: center; gap: 18px; }
.utility-links a:hover { color: var(--accent); }
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(247, 243, 236, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; width: 176px; }
.brand img { width: 176px; height: auto; }
.main-nav { justify-self: center; }
.nav-list { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.nav-item { position: relative; }
.nav-link, .nav-trigger {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: var(--ink-soft);
  border: 0;
  background: none;
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
}
.nav-link:hover, .nav-trigger:hover, .nav-item.active > .nav-link, .nav-item.active > .nav-trigger { color: var(--accent); }
.nav-trigger svg { width: 11px; transition: transform .2s; }
.nav-item:hover .nav-trigger svg, .nav-item:focus-within .nav-trigger svg { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 330px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-small);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.dropdown.wide { width: 510px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown a { display: grid; gap: 3px; padding: 13px 14px; border-radius: 12px; }
.dropdown a:hover { background: var(--paper-2); }
.dropdown strong { font-size: 13px; }
.dropdown span { color: var(--muted); font-size: 11px; line-height: 1.45; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.lang-toggle {
  min-width: 58px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.lang-toggle:hover { color: var(--accent); border-color: var(--accent); }
.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; width: 18px; height: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }
.menu-toggle { gap: 4px; }
.nav-open .menu-toggle span { opacity: 0; }
.nav-open .menu-toggle::before { transform: translateY(6px) rotate(45deg); }
.nav-open .menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }

.hero { min-height: calc(100vh - 116px); display: grid; align-items: center; padding: clamp(68px, 8vw, 112px) 0; overflow: clip; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); gap: clamp(40px, 7vw, 100px); align-items: center; }
.hero h1 { max-width: 970px; margin-bottom: 30px; }
.hero .lead { max-width: 650px; }
.hero-note { display: flex; align-items: flex-start; gap: 12px; max-width: 590px; margin-top: 26px; color: var(--muted); font-size: 13px; }
.hero-note::before { content: ""; width: 8px; height: 8px; flex: 0 0 auto; margin-top: 7px; border-radius: 50%; background: var(--green); }
.hero-art { position: relative; }
.hero-art::before { content: ""; position: absolute; inset: 12% -12% -8% 18%; z-index: -1; border-radius: 50%; background: rgba(232,117,49,.12); filter: blur(55px); }
.hero-art img { width: 100%; filter: saturate(.9); }
.hero-meta {
  position: absolute;
  right: -12px;
  bottom: 20px;
  width: 210px;
  padding: 16px;
  background: rgba(255,253,248,.95);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-small);
}
.hero-meta strong { display: block; font-size: 13px; }
.hero-meta span { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; }

.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 0; animation: marquee 32s linear infinite; }
.marquee-item { display: flex; align-items: center; gap: 18px; padding: 17px 28px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.marquee-item::after { content: "+"; color: var(--accent); font-size: 20px; font-weight: 500; }
@keyframes marquee { to { transform: translateX(-50%); } }

.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.path-card {
  min-height: 530px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 56px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.path-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.path-card.dark-card { color: var(--paper); background: var(--ink); }
.path-card.light-card { background: var(--white); }
.path-card .path-number { font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.path-card h3 { max-width: 560px; margin-bottom: 20px; font-size: clamp(2.2rem, 4.6vw, 4.8rem); }
.path-card p { max-width: 590px; color: var(--muted); font-size: 1.08rem; }
.path-card.dark-card p { color: #bdb7ad; }
.path-card .path-footer { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-top: 45px; }
.path-card .mini-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { display: inline-flex; align-items: center; min-height: 30px; padding: 5px 10px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 11px; font-weight: 700; }
.dark-card .tag { border-color: rgba(255,255,255,.25); color: #ccc4b9; }
.path-card .orb { position: absolute; top: -90px; right: -70px; width: 250px; height: 250px; border-radius: 50%; background: rgba(232,117,49,.15); filter: blur(1px); }
.path-card .circuit-lines { position: absolute; top: 32px; right: 30px; width: 140px; height: 140px; opacity: .6; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card, .feature-card, .product-card, .case-card, .package-card, .info-card {
  position: relative;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .28s var(--ease), border-color .28s, box-shadow .28s;
}
.service-card:hover, .feature-card:hover, .product-card:hover, .case-card:hover, .package-card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow-small); }
.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 14px;
  color: var(--paper);
  background: var(--ink);
}
.card-icon.accent { background: var(--accent); }
.card-icon svg { width: 24px; height: 24px; }
.service-card h3, .feature-card h3, .package-card h3 { margin-bottom: 14px; }
.service-card p, .feature-card p, .product-card p, .case-card p, .package-card p, .info-card p { color: var(--muted); }
.card-arrow { width: 38px; height: 38px; display: grid; place-items: center; margin-top: 26px; border: 1px solid var(--line-strong); border-radius: 50%; }
.card-arrow svg { width: 16px; }
.card-eyebrow { margin-bottom: 12px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(45px, 8vw, 110px); align-items: center; }
.split.top { align-items: start; }
.image-panel { position: relative; }
.image-panel img { width: 100%; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.image-caption { display: flex; justify-content: space-between; gap: 20px; margin-top: 13px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.check-list { display: grid; gap: 14px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; }
.check-list li::before { content: "✓"; width: 22px; height: 22px; display: grid; place-items: center; color: var(--paper); background: var(--ink); border-radius: 50%; font-size: 11px; font-weight: 900; }
.dark .check-list li::before { color: var(--ink); background: var(--accent); }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.stat { min-height: 190px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat strong { display: block; margin-bottom: 36px; color: var(--accent); font-size: clamp(2.5rem, 4vw, 4.5rem); line-height: 1; letter-spacing: -.06em; }
.stat span { color: var(--muted); font-size: 13px; }

.process-grid { counter-reset: steps; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.2); }
.process-step { min-height: 330px; padding: 34px 28px; border-right: 1px solid rgba(255,255,255,.2); }
.process-step:last-child { border-right: 0; }
.process-step::before { counter-increment: steps; content: "0" counter(steps); display: block; margin-bottom: 86px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.process-step h3 { margin-bottom: 14px; }
.process-step p { color: #aaa49b; font-size: 14px; }

.brand-strip { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.brand-pill { min-height: 48px; display: inline-flex; align-items: center; padding: 10px 18px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 13px; font-weight: 800; }
.brand-note { margin-top: 16px; color: var(--muted); font-size: 11px; }

.quote-block { display: grid; grid-template-columns: .45fr 1.55fr; gap: clamp(30px, 6vw, 90px); padding: clamp(42px, 7vw, 92px); color: var(--paper); background: var(--ink); border-radius: var(--radius-lg); }
.quote-mark { color: var(--accent); font-size: clamp(5rem, 10vw, 10rem); font-weight: 700; line-height: .7; }
.quote-block blockquote { margin: 0; font-size: clamp(1.7rem, 3.4vw, 3.8rem); font-weight: 650; line-height: 1.2; letter-spacing: -.04em; }
.quote-block cite { display: block; margin-top: 26px; color: #aaa49b; font-size: 13px; font-style: normal; }

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  align-items: end;
  gap: 40px;
  padding: clamp(40px, 7vw, 90px);
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.cta-panel::after { content: "+"; position: absolute; top: -90px; right: 2%; color: rgba(232,117,49,.16); font-size: 320px; font-weight: 200; line-height: 1; }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 900px; margin-bottom: 20px; }
.cta-panel p { max-width: 700px; color: #b9b3aa; }

.page-hero { padding: clamp(70px, 10vw, 145px) 0 clamp(55px, 8vw, 100px); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(40px, 8vw, 100px); align-items: end; }
.page-hero h1 { margin-bottom: 28px; }
.page-hero-side { padding-left: 24px; border-left: 1px solid var(--line-strong); }
.page-hero-side p { color: var(--muted); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; color: var(--muted); font-size: 12px; font-weight: 720; }
.breadcrumbs span::before { content: "/"; margin-right: 8px; color: var(--accent); }

.sticky-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: clamp(40px, 8vw, 110px); align-items: start; }
.sticky-aside { position: sticky; top: 130px; }
.aside-nav { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.aside-nav a { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 700; }
.aside-nav a:hover { color: var(--accent); }
.content-stack { display: grid; gap: 64px; }
.content-block { scroll-margin-top: 130px; }
.content-block + .content-block { padding-top: 64px; border-top: 1px solid var(--line); }
.content-block h2 { font-size: clamp(2rem, 3.8vw, 4rem); }

.package-card { display: flex; flex-direction: column; min-height: 430px; }
.package-card.featured { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.package-card.featured p, .package-card.featured li { color: #bdb7ad; }
.package-card .package-name { margin-bottom: 14px; color: var(--accent); font-size: 11px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.package-card ul { display: grid; gap: 10px; margin: 24px 0 30px; padding: 0; list-style: none; }
.package-card li { display: grid; grid-template-columns: 15px 1fr; gap: 8px; color: var(--muted); font-size: 13px; }
.package-card li::before { content: "+"; color: var(--accent); font-weight: 900; }
.package-card .text-link { margin-top: auto; align-self: flex-start; }

.finder {
  padding: clamp(30px, 5vw, 58px);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
}
.finder-head { display: flex; align-items: start; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.finder-head h2 { margin-bottom: 12px; font-size: clamp(2rem, 4vw, 4rem); }
.finder-step { display: none; }
.finder-step.active { display: block; animation: fadeUp .35s var(--ease); }
.finder-progress { display: flex; gap: 6px; min-width: 140px; }
.finder-progress span { height: 4px; flex: 1; border-radius: 2px; background: var(--paper-3); }
.finder-progress span.active { background: var(--accent); }
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0; }
.option-card { position: relative; }
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-card label {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
}
.option-card label::after { content: ""; width: 18px; height: 18px; flex: 0 0 auto; border: 2px solid var(--line-strong); border-radius: 50%; }
.option-card label:hover { transform: translateY(-2px); border-color: var(--ink); }
.option-card input:checked + label { background: var(--paper-2); border-color: var(--accent); }
.option-card input:checked + label::after { border: 5px solid var(--accent); }
.option-title { display: block; font-weight: 800; line-height: 1.35; }
.option-desc { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; }
.finder-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.finder-result { padding: 28px; background: var(--ink); color: var(--paper); border-radius: 20px; }
.finder-result h3 { margin-bottom: 12px; }
.finder-result p { color: #bdb7ad; }
.result-list { display: grid; gap: 12px; margin: 24px 0; }
.result-item { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; }
.result-item .num { width: 30px; height: 30px; display: grid; place-items: center; color: var(--ink); background: var(--accent); border-radius: 50%; font-size: 12px; font-weight: 900; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } }

.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.tab-button { padding: 10px 16px; border: 1px solid var(--line-strong); border-radius: 999px; background: transparent; font-size: 13px; font-weight: 800; cursor: pointer; }
.tab-button.active, .tab-button:hover { color: var(--paper); background: var(--ink); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp .3s var(--ease); }

.catalog-tools { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 34px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-button { padding: 9px 14px; border: 1px solid var(--line-strong); border-radius: 999px; background: transparent; font-size: 12px; font-weight: 800; cursor: pointer; }
.filter-button.active, .filter-button:hover { color: var(--paper); background: var(--ink); }
.search-field { width: min(100%, 320px); position: relative; }
.search-field input { width: 100%; min-height: 46px; padding: 10px 16px 10px 42px; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--white); }
.search-field svg { width: 18px; position: absolute; top: 14px; left: 15px; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { min-height: 340px; display: flex; flex-direction: column; }
.product-card[hidden] { display: none; }
.product-visual { min-height: 116px; display: grid; place-items: center; margin-bottom: 24px; overflow: hidden; background: var(--paper-2); border-radius: 15px; }
.product-visual svg { width: 70px; height: 70px; color: var(--ink); }
.product-card .category { color: var(--accent); font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.product-card h3 { margin: 10px 0 12px; font-size: 1.45rem; }
.product-card .product-footer { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 20px; }
.product-card .availability { color: var(--muted); font-size: 11px; }
.empty-state { display: none; padding: 50px; text-align: center; border: 1px dashed var(--line-strong); border-radius: var(--radius); }
.empty-state.visible { display: block; }

.case-card { min-height: 420px; display: flex; flex-direction: column; overflow: hidden; }
.case-card .case-top { min-height: 170px; margin: -28px -28px 28px; padding: 28px; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.case-card.dark-case .case-top { color: var(--paper); background: var(--ink); }
.case-card .case-type { color: var(--accent); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.case-card .case-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 28px; }

.accordion { border-top: 1px solid var(--line-strong); }
.accordion-item { border-bottom: 1px solid var(--line-strong); }
.accordion-trigger { width: 100%; display: grid; grid-template-columns: 1fr 34px; gap: 24px; align-items: center; padding: 23px 0; text-align: left; border: 0; background: transparent; font-weight: 790; cursor: pointer; }
.accordion-trigger::after { content: "+"; width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; font-size: 20px; font-weight: 400; transition: transform .25s, background .25s; }
.accordion-trigger[aria-expanded="true"]::after { transform: rotate(45deg); color: var(--paper); background: var(--ink); }
.accordion-panel { padding: 0 60px 24px 0; color: var(--muted); }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 800; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(232,117,49,.12); }
.field-help { color: var(--muted); font-size: 11px; }
.form-status { display: none; margin-top: 18px; padding: 16px; border-radius: 12px; background: var(--paper-2); }
.form-status.visible { display: block; }
.contact-layout { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: clamp(45px, 8vw, 100px); align-items: start; }
.contact-details { display: grid; gap: 26px; }
.contact-item { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.contact-item span { display: block; margin-bottom: 8px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-item strong, .contact-item a { font-size: 1.1rem; }
.map-placeholder { min-height: 300px; position: relative; display: grid; place-items: center; overflow: hidden; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); }
.map-placeholder::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 30px 30px; }
.map-pin { width: 54px; height: 54px; position: relative; z-index: 1; display: grid; place-items: center; color: var(--paper); background: var(--accent); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: var(--shadow-small); }
.map-pin svg { width: 22px; transform: rotate(45deg); }

.notice { padding: 18px 20px; color: var(--ink-soft); background: rgba(232,117,49,.09); border-left: 3px solid var(--accent); border-radius: 0 12px 12px 0; font-size: 13px; }
.notice strong { color: var(--ink); }

.site-footer { padding: 80px 0 28px; color: var(--paper); background: #0f0f0f; }
.footer-top { display: grid; grid-template-columns: 1.2fr .8fr .8fr .8fr; gap: 44px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-brand img { width: 180px; filter: invert(1) grayscale(1) brightness(4); }
.footer-brand p { max-width: 390px; margin-top: 22px; color: #a9a39a; font-size: 14px; }
.footer-col h3 { margin-bottom: 20px; color: #6f6a63; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.footer-col ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.footer-col a { color: #d0c9bf; font-size: 13px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 28px; color: #77716a; font-size: 11px; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 18px; }

.assistant-toggle {
  position: fixed;
  z-index: 1150;
  right: 22px;
  bottom: 22px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 17px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  box-shadow: 0 15px 40px rgba(0,0,0,.22);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.assistant-toggle:hover { background: var(--accent); }
.assistant-toggle svg { width: 20px; }
.assistant-backdrop { position: fixed; z-index: 1180; inset: 0; background: rgba(0,0,0,.38); opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.assistant-panel {
  position: fixed;
  z-index: 1200;
  right: 22px;
  bottom: 22px;
  width: min(calc(100% - 32px), 420px);
  max-height: min(720px, calc(100vh - 44px));
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(.98);
  transition: opacity .25s, transform .25s, visibility .25s;
}
.assistant-open .assistant-panel { opacity: 1; visibility: visible; transform: none; }
.assistant-open .assistant-backdrop { opacity: 1; visibility: visible; }
.assistant-header { display: flex; justify-content: space-between; gap: 18px; padding: 20px; color: var(--paper); background: var(--ink); }
.assistant-header strong { display: block; }
.assistant-header span { display: block; margin-top: 3px; color: #aaa49b; font-size: 11px; }
.assistant-close { width: 34px; height: 34px; display: grid; place-items: center; color: var(--paper); background: transparent; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; cursor: pointer; }
.assistant-messages { display: grid; align-content: start; gap: 12px; padding: 20px; overflow-y: auto; }
.message { max-width: 88%; padding: 12px 14px; border-radius: 14px; font-size: 13px; line-height: 1.5; }
.message.bot { background: var(--paper-2); border-bottom-left-radius: 4px; }
.message.user { justify-self: end; color: var(--paper); background: var(--ink); border-bottom-right-radius: 4px; }
.quick-prompts { display: flex; flex-wrap: wrap; gap: 7px; }
.quick-prompt { padding: 7px 10px; border: 1px solid var(--line-strong); border-radius: 999px; background: transparent; font-size: 11px; font-weight: 750; cursor: pointer; }
.quick-prompt:hover { border-color: var(--accent); color: var(--accent); }
.assistant-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 14px; border-top: 1px solid var(--line); }
.assistant-form input { min-width: 0; min-height: 44px; padding: 10px 13px; border: 1px solid var(--line-strong); border-radius: 999px; }
.assistant-form button { width: 44px; height: 44px; display: grid; place-items: center; color: var(--paper); background: var(--accent); border: 0; border-radius: 50%; cursor: pointer; }
.assistant-form svg { width: 18px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .header-inner { grid-template-columns: 180px 1fr auto; }
  .nav-link, .nav-trigger { padding-inline: 7px; font-size: 12px; }
  .header-actions .button { display: none; }
  .hero-grid { grid-template-columns: 1fr .85fr; gap: 36px; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .utility-bar { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand { width: 158px; }
  .brand img { width: 158px; }
  .main-nav {
    position: fixed;
    z-index: 1100;
    inset: var(--header-height) 0 0;
    display: block;
    padding: 20px;
    overflow-y: auto;
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .25s, visibility .25s, transform .25s;
  }
  .nav-open .main-nav { opacity: 1; visibility: visible; transform: none; }
  .nav-list { display: grid; align-items: stretch; gap: 0; }
  .nav-link, .nav-trigger { width: 100%; min-height: 58px; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
  .dropdown, .dropdown.wide { width: 100%; position: static; display: none; grid-template-columns: 1fr; padding: 8px 0 18px 12px; border: 0; border-radius: 0; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-item.open .dropdown { display: grid; }
  .nav-item:hover .dropdown, .nav-item:focus-within .dropdown { transform: none; }
  .dropdown a { padding: 11px 12px; }
  .header-actions { grid-column: 2; }
  .menu-toggle { display: grid; }
  .hero { min-height: auto; }
  .hero-grid, .page-hero-grid, .split, .contact-layout, .sticky-layout { grid-template-columns: 1fr; }
  .hero-art { width: min(100%, 680px); margin-inline: auto; }
  .hero-meta { right: 5%; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 470px; }
  .cards-3, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-bottom: 1px solid rgba(255,255,255,.2); }
  .process-step:nth-child(2) { border-right: 0; }
  .page-hero-side { padding: 24px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .sticky-aside { position: static; }
  .aside-nav { display: flex; flex-wrap: wrap; gap: 7px; }
  .aside-nav a { padding: 8px 12px; border: 1px solid var(--line-strong); border-radius: 999px; }
  .quote-block { grid-template-columns: 1fr; }
  .quote-mark { margin-bottom: -30px; }
  .cta-panel { grid-template-columns: 1fr; align-items: start; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
  .container, .container.narrow { width: min(calc(100% - 28px), var(--container)); }
  body { font-size: 15px; }
  h1 { font-size: clamp(2.85rem, 15vw, 4.6rem); }
  h2 { font-size: clamp(2.15rem, 11vw, 3.5rem); }
  .section { padding: 74px 0; }
  .section-head { grid-template-columns: 1fr; gap: 22px; }
  .header-inner { min-height: 68px; }
  .main-nav { inset: 68px 0 0; }
  .brand, .brand img { width: 145px; }
  .header-actions { gap: 5px; }
  .lang-toggle { min-width: 50px; height: 40px; padding-inline: 8px; }
  .hero { padding: 56px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { margin-top: 12px; }
  .hero-meta { width: 180px; right: 0; bottom: -12px; }
  .button-row { align-items: stretch; }
  .button-row .button { flex: 1 1 auto; }
  .path-card { min-height: 430px; padding: 28px; border-radius: 25px; }
  .path-card h3 { font-size: 2.8rem; }
  .path-card .path-footer { align-items: start; flex-direction: column; }
  .cards-2, .cards-3, .cards-4, .product-grid { grid-template-columns: 1fr; }
  .service-card, .feature-card, .product-card, .case-card, .package-card, .info-card { padding: 24px; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat { min-height: 150px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 260px; border-right: 0; }
  .process-step::before { margin-bottom: 58px; }
  .quote-block { padding: 32px 24px; border-radius: 25px; }
  .cta-panel { padding: 36px 24px; border-radius: 25px; }
  .page-hero { padding-top: 58px; }
  .finder { padding: 24px 18px; border-radius: 23px; }
  .finder-head { display: grid; }
  .option-grid { grid-template-columns: 1fr; }
  .option-card label { min-height: 90px; }
  .finder-actions { flex-wrap: wrap; }
  .finder-actions .button { flex: 1; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .catalog-tools { align-items: stretch; }
  .search-field { width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .assistant-toggle span { display: none; }
  .assistant-toggle { width: 52px; padding: 0; justify-content: center; }
  .assistant-panel { right: 8px; bottom: 8px; width: calc(100% - 16px); max-height: calc(100vh - 16px); border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .utility-bar, .site-header, .assistant-toggle, .assistant-panel, .assistant-backdrop, .site-footer, .button-row { display: none !important; }
  body { color: #000; background: #fff; }
  .section, .page-hero { padding: 30px 0; }
  .container { width: 100%; }
  .reveal { opacity: 1; transform: none; }
}

/* Explicit icon geometry prevents browser-default 300 × 150 SVG sizing. */
.nav-trigger svg { height: 11px; }
.card-arrow svg { height: 16px; }
.search-field svg { height: 18px; }
.map-pin svg { height: 22px; }
.assistant-toggle svg { height: 20px; }
.assistant-form svg { height: 18px; }

@media (max-width: 900px) {
  .main-nav {
    width: auto;
    height: auto;
    max-width: none;
    justify-self: stretch;
  }
}
@media (max-width: 900px) {
  .main-nav {
    bottom: auto;
    height: calc(100dvh - var(--header-height));
  }
}
@media (max-width: 650px) {
  :root { --header-height: 68px; }
}
/* Stable hamburger / close geometry on small screens. */
.menu-toggle { position: relative; }
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
}
.menu-toggle span { transform: translate(-50%, -50%); }
.menu-toggle::before { transform: translate(-50%, -7px); }
.menu-toggle::after { transform: translate(-50%, 5px); }
.nav-open .menu-toggle::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-open .menu-toggle::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* ========================================================================== 
   breadIT original-logo visual refresh
   The supplied raster logo is used without filters, recolouring or redrawing.
   ========================================================================== */
:root {
  --ink: #231f20;
  --ink-soft: #4f494a;
  --muted: #756e6d;
  --paper: #f8f5ef;
  --paper-2: #efe9e2;
  --paper-3: #e3dbd2;
  --white: #fffdfa;
  --accent: #d66a36;
  --accent-dark: #a84925;
  --green: #718d79;
  --line: rgba(35, 31, 32, .13);
  --line-strong: rgba(35, 31, 32, .30);
  --shadow: 0 28px 76px rgba(35, 31, 32, .10);
  --shadow-small: 0 14px 38px rgba(35, 31, 32, .075);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --header-height: 84px;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 3%, rgba(214, 106, 54, .055), transparent 30rem),
    linear-gradient(180deg, rgba(255, 253, 250, .58), transparent 36rem),
    var(--paper);
  letter-spacing: -.005em;
}

h1, h2, h3, h4 {
  font-weight: 660;
  letter-spacing: -.048em;
}

h1 { line-height: .99; }
h2 { line-height: 1.01; }

.eyebrow,
.section-label,
.kicker,
.package-card .package-name,
.product-card .category,
.case-card .case-type {
  letter-spacing: .145em;
}

.utility-bar {
  color: #dcd5cd;
  background: var(--ink);
  border-bottom-color: rgba(255,255,255,.10);
}

.site-header {
  background: rgba(248, 245, 239, .94);
  border-bottom-color: rgba(35, 31, 32, .12);
  box-shadow: 0 10px 32px rgba(35, 31, 32, .035);
}

.header-inner {
  min-height: var(--header-height);
  grid-template-columns: 226px 1fr auto;
  gap: 28px;
}

.brand {
  width: 205px;
  min-width: 0;
  padding: 5px 0;
}

.brand img {
  width: 205px;
  height: auto;
  max-height: 31px;
  object-fit: contain;
  object-position: left center;
  filter: none !important;
}

.nav-list { gap: 2px; }

.nav-link,
.nav-trigger {
  min-height: 48px;
  padding-inline: 10px;
  color: #4c4647;
  font-size: 12.5px;
  font-weight: 690;
  letter-spacing: -.012em;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-item.active > .nav-link,
.nav-item.active > .nav-trigger {
  color: var(--accent-dark);
}

.dropdown {
  border-color: rgba(35,31,32,.14);
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(35,31,32,.11);
}

.dropdown a { border-radius: 10px; }
.dropdown a:hover { background: #f5f0e9; }

.lang-toggle {
  border-color: rgba(35,31,32,.30);
  font-weight: 720;
}

.button {
  min-height: 49px;
  border-radius: 999px;
  font-weight: 720;
  box-shadow: none;
}

.button:hover { transform: translateY(-1px); }

.hero {
  min-height: calc(100vh - 118px);
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 79% 22%, rgba(214,106,54,.12), transparent 21rem),
    linear-gradient(90deg, rgba(255,253,250,.46), transparent 45%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -9rem;
  top: 5rem;
  width: 29rem;
  height: 29rem;
  opacity: .42;
  pointer-events: none;
  background:
    radial-gradient(circle, transparent 0 25%, rgba(35,31,32,.09) 25.2% 25.6%, transparent 25.8% 40%, rgba(214,106,54,.12) 40.2% 40.6%, transparent 40.8% 55%, rgba(35,31,32,.07) 55.2% 55.6%, transparent 55.8%);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: clamp(44px, 7vw, 104px);
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(3.45rem, 6.9vw, 7rem);
}

.hero .lead {
  max-width: 680px;
  color: #514b4b;
}

.hero-note {
  max-width: 610px;
  color: #6e6767;
}

.hero-art {
  padding: 15px;
  background: rgba(255,253,250,.72);
  border: 1px solid rgba(35,31,32,.13);
  border-radius: 28px;
  box-shadow: 0 30px 74px rgba(35,31,32,.09);
}

.hero-art::before {
  inset: 10% -10% -9% 18%;
  background: rgba(214,106,54,.105);
}

.hero-art img {
  border-radius: 20px;
  filter: saturate(.84) contrast(1.015);
}

.hero-meta {
  right: 8%;
  bottom: -18px;
  padding: 15px 18px;
  background: rgba(255,253,250,.96);
  border-color: rgba(35,31,32,.16);
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(35,31,32,.10);
}

.marquee {
  background: #ece6de;
  border-color: rgba(35,31,32,.12);
}

.path-grid { gap: 18px; }

.path-card {
  border-radius: 25px;
  border-color: rgba(35,31,32,.14);
  box-shadow: none;
}

.path-card:hover { transform: translateY(-3px); }

.path-card.dark-card {
  background:
    radial-gradient(circle at 92% 8%, rgba(214,106,54,.24), transparent 16rem),
    linear-gradient(145deg, #231f20, #171415);
}

.path-card.light-card {
  background:
    radial-gradient(circle at 100% 0, rgba(214,106,54,.10), transparent 15rem),
    var(--white);
}

.path-card .orb {
  background: rgba(214,106,54,.16);
}

.service-card,
.feature-card,
.product-card,
.case-card,
.package-card,
.info-card {
  background: rgba(255,253,250,.84);
  border-color: rgba(35,31,32,.13);
  border-radius: 17px;
  box-shadow: none;
}

.service-card:hover,
.feature-card:hover,
.product-card:hover,
.case-card:hover,
.package-card:hover {
  transform: translateY(-3px);
  border-color: rgba(35,31,32,.28);
  box-shadow: 0 18px 44px rgba(35,31,32,.075);
}

.card-icon {
  border-radius: 11px;
  color: #fffaf4;
  background: var(--ink);
}

.card-icon.accent { background: var(--accent); }

.section.paper-2 { background: #eee8e0; }
.section.white { background: rgba(255,253,250,.93); }
.section.dark { background: #211e1f; }

.process-step { min-height: 315px; }

.quote-block,
.cta-panel {
  background:
    radial-gradient(circle at 94% 12%, rgba(214,106,54,.17), transparent 18rem),
    #211e1f;
  border-radius: 27px;
}

.cta-panel::after {
  color: rgba(214,106,54,.16);
  font-weight: 120;
}

.page-hero {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 93% 20%, rgba(214,106,54,.095), transparent 23rem),
    linear-gradient(180deg, rgba(255,253,250,.58), transparent 80%);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -12rem;
  width: 31rem;
  height: 31rem;
  opacity: .34;
  pointer-events: none;
  background: radial-gradient(circle, transparent 0 36%, rgba(35,31,32,.10) 36.2% 36.6%, transparent 36.8% 51%, rgba(214,106,54,.14) 51.2% 51.6%, transparent 51.8%);
}

.finder {
  border-color: rgba(35,31,32,.15);
  border-radius: 24px;
  background: rgba(255,253,250,.86);
}

.finder-result { background: #211e1f; }
.product-visual { background: #eee8e0; }
.case-card .case-top { background: #eee8e0; }
.case-card.dark-case .case-top,
.package-card.featured { background: #211e1f; }

.site-footer {
  color: #f7f2eb;
  background: #211e1f;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-logo-plate {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 17px 19px 15px;
  background: #fffdfa;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 14px;
  box-shadow: 0 15px 38px rgba(0,0,0,.15);
}

.footer-brand img {
  width: 205px;
  height: auto;
  max-height: 31px;
  object-fit: contain;
  filter: none !important;
}

.footer-brand p { color: #bdb5ad; }
.footer-address {
  max-width: 390px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 16px 0 0;
  color: #bdb5ad;
  font-style: normal;
  font-size: 12px;
  line-height: 1.55;
}

.footer-address svg {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  color: var(--accent);
}

.footer-col h3 { color: #8f8882; }
.footer-col a { color: #d8d0c8; }
.footer-bottom { color: #8f8882; }

.assistant-toggle,
.assistant-header {
  background: #211e1f;
}

@media (max-width: 1120px) {
  .header-inner { grid-template-columns: 196px 1fr auto; gap: 18px; }
  .brand, .brand img { width: 184px; }
  .nav-link, .nav-trigger { padding-inline: 7px; font-size: 12px; }
}

@media (max-width: 900px) {
  :root { --header-height: 74px; }
  .header-inner { min-height: 74px; grid-template-columns: 1fr auto; }
  .brand, .brand img { width: 178px; max-height: 27px; }
  .main-nav { inset: 74px 0 auto; height: calc(100dvh - 74px); background: #f8f5ef; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { width: min(100%, 720px); }
  .footer-logo-plate { padding: 15px 17px 13px; }
}

@media (max-width: 650px) {
  :root { --header-height: 68px; }
  .brand, .brand img { width: 158px; max-height: 24px; }
  .main-nav { inset: 68px 0 auto; height: calc(100dvh - 68px); }
  .hero { padding-top: 62px; }
  .hero::before { right: -17rem; top: 2rem; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.75rem); }
  .hero-art { padding: 9px; border-radius: 22px; }
  .hero-art img { border-radius: 16px; }
  .footer-brand img { width: 180px; max-height: 27px; }
}

/* Hero line-break tuning for the supplied wordmark proportions. */
.hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); }
.hero h1 { font-size: clamp(3.35rem, 6vw, 5.85rem); }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(3.25rem, 10.5vw, 5.6rem); }
}
@media (max-width: 650px) {
  .hero h1 { font-size: clamp(2.95rem, 13.3vw, 4.35rem); }
}

/* ========================================================================== 
   v2: contrast, private contact layout and solution-led positioning
   ========================================================================== */

/* Explicitly reset the light path-card colour when it appears inside a dark section. */
.path-card.light-card,
.section.dark .path-card.light-card {
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0, rgba(214,106,54,.12), transparent 15rem),
    #fffaf4;
  border-color: rgba(35,31,32,.20);
}

.path-card.light-card .path-number,
.path-card.light-card h3,
.path-card.light-card .text-link,
.path-card.light-card .card-arrow,
.path-card.light-card .circuit-lines {
  color: var(--ink);
}

.path-card.light-card p,
.section.dark .path-card.light-card p {
  color: #5f5858;
}

.path-card.light-card .tag {
  color: #4d4647;
  border-color: rgba(35,31,32,.25);
  background: rgba(255,255,255,.48);
}

.path-card.light-card .text-link {
  text-decoration-color: var(--accent);
}

/* Contact page: public text address, with no map or map link. */

/* Solution Components: clearly separate the two professional disciplines. */
.component-groups {
  display: grid;
  gap: clamp(64px, 8vw, 108px);
}

.component-group {
  min-width: 0;
}

.component-group-head {
  display: grid;
  grid-template-columns: minmax(260px, .88fr) minmax(0, 1.12fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: end;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(35,31,32,.20);
}

.component-group-head h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4.25vw, 4.25rem);
}

.component-group-head .lead {
  max-width: 690px;
  margin: 0;
  color: #5d5656;
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
}

.component-group-kicker {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.component-group-power {
  position: relative;
  padding: clamp(30px, 4.5vw, 56px);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(214,106,54,.11), transparent 21rem),
    #e6ded4;
  border: 1px solid rgba(35,31,32,.14);
  border-radius: 28px;
}

.component-group-power::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(30px, 4.5vw, 56px);
  width: 78px;
  height: 3px;
  background: var(--accent);
}

.component-group-power .component-group-head {
  border-bottom-color: rgba(35,31,32,.23);
}

.component-group-power .product-card {
  background: rgba(255,253,250,.94);
}

@media (max-width: 900px) {
  .component-group-head {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }
}

@media (max-width: 650px) {
  .component-groups {
    gap: 58px;
  }

  .component-group-head {
    margin-bottom: 22px;
    padding-bottom: 18px;
  }

  .component-group-power {
    padding: 26px 18px;
    border-radius: 22px;
  }

  .component-group-power::before {
    left: 18px;
  }
}

.contact-hero {
  padding-top: clamp(34px, 5vw, 72px);
  padding-bottom: clamp(56px, 8vw, 105px);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(330px, .88fr) minmax(0, 1.32fr);
  overflow: hidden;
  background: rgba(255,253,250,.94);
  border: 1px solid rgba(35,31,32,.15);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(35,31,32,.10);
}

.contact-intro-panel {
  min-height: 780px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(38px, 5vw, 68px);
  color: #fffaf4;
  background:
    radial-gradient(circle at 20% 88%, rgba(214,106,54,.28), transparent 18rem),
    linear-gradient(150deg, #292526 0%, #1b1819 68%, #151314 100%);
}

.contact-intro-panel::before,
.contact-intro-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.contact-intro-panel::before {
  inset: auto -18% -16% -20%;
  height: 46%;
  opacity: .30;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to top, #000 20%, transparent 100%);
}

.contact-intro-panel::after {
  width: 520px;
  height: 520px;
  left: -220px;
  bottom: -260px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
  box-shadow: 180px -10px 0 -1px transparent, 180px -10px 0 0 rgba(255,255,255,.10);
}

.contact-intro-panel .section-label {
  color: #d8d0c8;
}

.contact-intro-panel h1 {
  max-width: 620px;
  margin: 30px 0 28px;
  color: #fffaf4;
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  line-height: .96;
}

.contact-intro-panel .lead {
  max-width: 580px;
  color: #d0c8c0;
  font-size: 1.12rem;
}

.contact-scope-list {
  display: grid;
  gap: 22px;
  margin-top: 46px;
}

.contact-scope-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
}

.contact-scope-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fffaf4;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 12px;
  background: rgba(255,255,255,.055);
}

.contact-scope-icon.accent {
  color: #fff8f2;
  border-color: rgba(214,106,54,.48);
  background: rgba(214,106,54,.20);
}

.contact-scope-icon svg {
  width: 21px;
  height: 21px;
}

.contact-scope-item strong {
  display: block;
  margin-bottom: 5px;
  color: #fffaf4;
  font-size: 1.03rem;
}

.contact-scope-item p {
  margin: 0;
  color: #aaa19a;
  font-size: .86rem;
}

.contact-direct {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 46px;
}

.contact-direct > a,
.contact-direct > .contact-address {
  min-width: 0;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 13px;
  color: #fffaf4;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  background: rgba(255,255,255,.05);
}

.contact-direct > a:hover {
  border-color: rgba(214,106,54,.75);
  background: rgba(214,106,54,.09);
}

.contact-direct > .contact-address {
  grid-column: 1 / -1;
  align-items: start;
  margin: 0;
  font-style: normal;
}

.contact-direct svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.contact-direct small,
.contact-direct strong {
  display: block;
  overflow-wrap: anywhere;
}

.contact-direct small {
  margin-bottom: 2px;
  color: #958d87;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-direct strong {
  color: #fffaf4;
  font-size: .79rem;
}

.contact-address strong {
  line-height: 1.55;
}

.contact-brand-note {
  margin-top: 28px;
  color: #8f8781;
  font-size: 11px;
  line-height: 1.6;
}

.contact-form.finder {
  min-width: 0;
  min-height: 780px;
  margin: 0;
  padding: clamp(38px, 5vw, 68px);
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 94% 0, rgba(214,106,54,.07), transparent 18rem),
    rgba(255,253,250,.98);
}

.contact-form .finder-head h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.7rem);
}

.contact-form .field input,
.contact-form .field textarea,
.contact-form .field select {
  background: #fffdfa;
  border-color: rgba(35,31,32,.27);
}

.contact-form .field textarea {
  min-height: 190px;
}

.contact-form .notice {
  margin-top: 20px;
}

.contact-form .finder-actions {
  align-items: center;
}

@media (max-width: 980px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-intro-panel,
  .contact-form.finder {
    min-height: auto;
  }

  .contact-intro-panel h1 {
    font-size: clamp(3.1rem, 10vw, 5rem);
  }
}

@media (max-width: 650px) {
  .contact-hero {
    padding-top: 18px;
  }

  .contact-page-grid {
    width: 100%;
    margin-left: 0;
    border-radius: 22px;
  }

  .contact-intro-panel,
  .contact-form.finder {
    padding: 30px 23px;
  }

  .contact-intro-panel h1 {
    margin-top: 22px;
    font-size: 3.35rem;
  }

  .contact-direct {
    grid-template-columns: 1fr;
  }

  .contact-form .finder-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form .finder-actions .button {
    width: 100%;
  }
}
