:root {
  --navy: #183153;
  --navy-2: #24446f;
  --blue: #2864ff;
  --blue-bright: #32a8ff;
  --gold: #ffad33;
  --gold-light: #ffd166;
  --ink: #183153;
  --muted: #52647d;
  --line: #d8e6f5;
  --paper: #f5faff;
  --white: #fff;
  --shadow: 0 24px 70px rgba(50, 96, 170, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.8;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -80px; left: 16px; z-index: 1000; padding: 10px 18px; background: var(--gold-light); color: var(--navy); transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.site-header.scrolled { background: rgba(6,17,38,.88); box-shadow: 0 12px 40px rgba(0,0,0,.16); backdrop-filter: blur(18px); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.brand-mark { width: 42px; height: 42px; color: var(--gold-light); }
.brand-mark svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 16px; letter-spacing: .04em; line-height: 1.4; }
.brand small { color: rgba(255,255,255,.62); font-size: 10px; letter-spacing: .08em; }
.global-nav { display: flex; align-items: center; gap: 34px; }
.global-nav a { position: relative; color: rgba(255,255,255,.78); font-size: 13px; font-weight: 600; letter-spacing: .05em; transition: color .2s; }
.global-nav a:not(.nav-cta)::after { position: absolute; bottom: -10px; left: 0; width: 0; height: 2px; content: ""; background: var(--gold); transition: width .25s; }
.global-nav a:hover { color: white; }
.global-nav a:hover::after { width: 100%; }
.global-nav .nav-cta { padding: 12px 24px; border: 1px solid rgba(255,216,143,.55); border-radius: 8px; color: var(--navy); background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 10px 28px rgba(228,178,94,.18); }
.menu-button { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px auto; background: white; transition: transform .25s, opacity .25s; }

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 74% 43%, rgba(8,89,218,.32), transparent 29%),
    radial-gradient(circle at 25% 15%, rgba(26,83,180,.14), transparent 30%),
    linear-gradient(118deg, #07162f 0%, #061126 48%, #03122d 100%);
}
.hero-grid { position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(rgba(71,139,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(71,139,255,.16) 1px, transparent 1px); background-size: 74px 74px; transform: perspective(700px) rotateX(60deg) scale(1.5) translateY(36%); transform-origin: bottom; mask-image: linear-gradient(transparent 12%, #000 90%); }
.hero::after { position: absolute; right: -20%; bottom: 70px; width: 95%; height: 270px; content: ""; border: 1px solid rgba(49,129,255,.22); border-radius: 50%; transform: rotate(-6deg); box-shadow: 0 0 90px rgba(15,104,255,.15); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-orb-one { right: 4%; top: 20%; width: 420px; height: 420px; border: 1px solid rgba(61,140,255,.18); box-shadow: inset 0 0 90px rgba(20,88,190,.12); }
.hero-orb-two { right: 14%; top: 28%; width: 230px; height: 230px; border: 1px dashed rgba(228,178,94,.18); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 50px; min-height: 760px; padding-top: 110px; padding-bottom: 90px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; color: var(--gold-light); font-size: 12px; font-weight: 700; letter-spacing: .16em; }
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
.eyebrow.dark { color: #a57329; }
.hero h1 { margin: 0; font-size: clamp(42px, 4vw, 54px); line-height: 1.3; letter-spacing: -.04em; font-weight: 800; }
.hero h1 .headline-line { display: block; white-space: nowrap; }
.hero h1 .headline-line + .headline-line { margin-top: .08em; }
.hero h1 .headline-accent { color: var(--gold-light); background: linear-gradient(90deg, #ffdf9d, #d89b3f); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-lead { max-width: 610px; margin: 28px 0 0; color: rgba(255,255,255,.72); font-size: 16px; line-height: 2; }
.hero-actions { display: flex; gap: 14px; margin-top: 36px; }
.button { display: inline-flex; min-height: 56px; align-items: center; justify-content: center; gap: 24px; padding: 0 27px; border-radius: 9px; font-size: 14px; font-weight: 700; letter-spacing: .04em; transition: transform .25s, box-shadow .25s, border-color .25s; }
.button:hover { transform: translateY(-3px); }
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-primary { color: #1a2030; background: linear-gradient(135deg, #ffdf9f, #dda348); box-shadow: 0 13px 30px rgba(214,156,63,.22); }
.button-primary:hover { box-shadow: 0 18px 38px rgba(214,156,63,.32); }
.button-ghost { border: 1px solid rgba(255,255,255,.35); color: white; background: rgba(255,255,255,.03); }
.button-ghost:hover { border-color: var(--gold-light); }
.hero-proof { display: flex; gap: 0; margin-top: 45px; }
.hero-proof > div { min-width: 118px; padding: 0 22px; border-left: 1px solid rgba(255,255,255,.16); }
.hero-proof > div:first-child { padding-left: 0; border-left: 0; }
.hero-proof strong, .hero-proof small { display: block; }
.hero-proof strong { font-size: 20px; letter-spacing: .03em; line-height: 1.4; }
.hero-proof strong span { color: var(--gold-light); }
.hero-proof small { margin-top: 4px; color: rgba(255,255,255,.5); font-size: 10px; }

.hero-visual { position: relative; height: 500px; }
.visual-glow { position: absolute; inset: 18% 5%; border-radius: 50%; background: rgba(0,91,255,.24); filter: blur(60px); }
.dashboard { position: absolute; top: 50%; left: 50%; width: 620px; padding: 26px; border: 1px solid rgba(93,164,255,.3); border-radius: 20px; background: linear-gradient(135deg, rgba(8,32,70,.94), rgba(5,20,49,.88)); box-shadow: 0 40px 100px rgba(0,0,0,.4), inset 0 1px rgba(255,255,255,.08); transform: translate(-50%,-50%) perspective(1000px) rotateY(-8deg) rotateX(2deg); backdrop-filter: blur(16px); }
.dashboard::before { position: absolute; inset: 0; z-index: -1; border-radius: inherit; content: ""; background: linear-gradient(120deg, rgba(54,133,255,.12), transparent 40%); }
.dashboard-head, .flow-title { display: flex; justify-content: space-between; align-items: center; }
.dashboard-head { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.82); font-size: 13px; }
.dashboard-head > span { color: #55d7b1; font-size: 10px; }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: #55d7b1; box-shadow: 0 0 12px #55d7b1; }
.dashboard-kpis { display: grid; grid-template-columns: .85fr 1.15fr; gap: 14px; margin-top: 18px; }
.kpi-card { min-height: 154px; padding: 18px; border: 1px solid rgba(91,157,255,.17); border-radius: 12px; background: rgba(22,61,116,.27); }
.kpi-card small, .kpi-card span { display: block; color: rgba(255,255,255,.48); font-size: 10px; }
.kpi-card strong { display: block; margin-top: 8px; color: #74ddff; font-size: 26px; }
.kpi-card span { margin-top: 10px; }
.meter { height: 6px; margin-top: 21px; overflow: hidden; border-radius: 10px; background: rgba(255,255,255,.08); }
.meter i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #1c73ed, #53d9d1); box-shadow: 0 0 10px #2eb5e6; }
.spark { width: 100%; height: 46px; margin-top: 4px; overflow: visible; }
.spark path:not(.spark-fill) { fill: none; stroke: #55d7b1; stroke-width: 2; vector-effect: non-scaling-stroke; }
.spark-fill { fill: url(#none); opacity: .12; }
.flow-title { margin-top: 23px; color: rgba(255,255,255,.63); font-size: 10px; }
.flow-title span:last-child { color: #66afff; }
.module-flow { display: flex; align-items: center; margin-top: 14px; }
.module-flow div { flex: 1; text-align: center; }
.module-flow i { display: grid; width: 42px; height: 42px; margin: auto; place-items: center; border: 1px solid rgba(75,149,255,.36); border-radius: 10px; color: #7ab7ff; font-size: 12px; font-style: normal; background: rgba(20,74,144,.25); }
.module-flow span { display: block; margin-top: 8px; color: rgba(255,255,255,.52); font-size: 9px; }
.module-flow b { width: 23px; height: 1px; margin-bottom: 25px; background: linear-gradient(90deg, rgba(59,134,246,.2), rgba(89,174,255,.8)); }
.float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.14); border-radius: 11px; background: rgba(10,28,61,.86); box-shadow: 0 18px 50px rgba(0,0,0,.35); backdrop-filter: blur(12px); animation: float 5s ease-in-out infinite; }
.float-card-top { top: 11px; right: -10px; }
.float-card-bottom { bottom: 4px; left: -15px; animation-delay: -2s; }
.float-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 8px; color: var(--gold-light); background: rgba(228,178,94,.12); }
.float-card small, .float-card strong { display: block; }
.float-card small { color: rgba(255,255,255,.46); font-size: 8px; }
.float-card strong { font-size: 11px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.trust-strip { position: absolute; z-index: 4; right: 0; bottom: 0; left: 0; transform: translateY(50%); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); padding: 27px 20px; border: 1px solid rgba(8,32,70,.08); border-radius: 15px; background: white; box-shadow: var(--shadow); color: var(--ink); }
.trust-grid > div { display: flex; align-items: center; justify-content: center; gap: 13px; padding: 0 18px; border-right: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid svg { width: 32px; height: 32px; flex: 0 0 auto; fill: none; stroke: #153f91; stroke-width: 1.5; }
.trust-grid strong, .trust-grid small { display: block; }
.trust-grid strong { font-size: 13px; }
.trust-grid small { color: var(--muted); font-size: 9px; }

.section { padding: 130px 0; }
.section-heading { max-width: 760px; margin: 0 auto 55px; text-align: center; }
.section-heading .eyebrow { justify-content: center; }
.section-heading h2 { margin: 0; font-size: clamp(30px, 3.2vw, 44px); line-height: 1.5; letter-spacing: -.035em; }
.section-heading h2 em { color: #b07a2d; font-style: normal; }
.section-heading > p:last-child { max-width: 670px; margin: 20px auto 0; color: var(--muted); font-size: 14px; }
.technology { position: relative; padding: 150px 0 100px; overflow: hidden; background: linear-gradient(145deg, #fff, #f2f9ff 52%, #fff5f8); }
.technology::before { position: absolute; top: 70px; right: -90px; width: 310px; height: 310px; content: ""; border-radius: 50%; background: radial-gradient(circle, rgba(123,92,255,.13), transparent 68%); }
.technology-heading { display: grid; grid-template-columns: .75fr 1.25fr; column-gap: 80px; align-items: end; margin-bottom: 44px; }
.technology-heading .eyebrow { grid-column: 1 / -1; }
.technology-heading h2 { margin: 0; font-size: clamp(30px, 3.2vw, 44px); line-height: 1.5; letter-spacing: -.035em; }
.technology-heading h2 em { color: #5268e8; font-style: normal; }
.technology-heading > p:last-child { margin: 0 0 7px; color: var(--muted); font-size: 16px; }
.technology-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.technology-card { display: flex; align-items: center; gap: 18px; min-height: 128px; padding: 25px 24px; border: 1px solid #d8e6f5; border-radius: 17px; background: rgba(255,255,255,.9); box-shadow: 0 14px 35px rgba(49,94,156,.08); transition: transform .25s, box-shadow .25s, border-color .25s; }
.technology-card:hover { border-color: #b9cbef; box-shadow: 0 20px 42px rgba(57,102,170,.15); transform: translateY(-5px); }
.technology-card > img, .technology-icon { width: 58px; height: 58px; flex: 0 0 auto; object-fit: contain; }
.technology-card:nth-child(6) > img { width: 74px; }
.technology-card small, .technology-card strong, .technology-card span { display: block; }
.technology-card small { color: #7788a0; font-size: 12px; }
.technology-card strong { margin-top: 2px; color: #203b60; font-size: 17px; line-height: 1.45; }
.technology-card span { margin-top: 5px; color: #60728b; font-size: 12px; }
.microsoft-icon { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 4px; padding: 4px; }
.microsoft-icon i:nth-child(1) { background: #f35325; }
.microsoft-icon i:nth-child(2) { background: #81bc06; }
.microsoft-icon i:nth-child(3) { background: #05a6f0; }
.microsoft-icon i:nth-child(4) { background: #ffba08; }
.technology-note { margin: 18px 4px 0; color: #8290a4; font-size: 12px; text-align: right; }

.services { padding-top: 120px; background: linear-gradient(#fff, #f7f9fd); }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.service-card { position: relative; min-height: 370px; overflow: hidden; padding: 34px 27px 28px; border: 1px solid var(--line); border-radius: 14px; background: white; transition: transform .3s, box-shadow .3s, border-color .3s; }
.service-card::after { position: absolute; right: 0; bottom: 0; left: 0; height: 3px; content: ""; background: linear-gradient(90deg, var(--blue), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.service-card:hover { border-color: #cbd8ed; box-shadow: 0 22px 55px rgba(9,41,93,.1); transform: translateY(-7px); }
.service-card:hover::after { transform: scaleX(1); }
.card-number { position: absolute; top: 18px; right: 22px; color: #edf1f7; font-size: 42px; font-weight: 900; line-height: 1; }
.service-icon { display: grid; width: 62px; height: 62px; margin-bottom: 30px; place-items: center; border-radius: 14px; color: #174fae; background: #eef4ff; }
.service-icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.service-card h3 { margin: 0; font-size: 17px; }
.service-card p { margin: 15px 0; color: var(--muted); font-size: 12px; line-height: 1.9; }
.service-card ul { display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 20px 0 0; list-style: none; }
.service-card li { padding: 4px 9px; border-radius: 100px; color: #34517f; background: #f1f4f9; font-size: 9px; }
.related-support { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 55px; margin-top: 28px; padding: 32px 38px; border: 1px solid #dbe3ef; border-radius: 14px; background: linear-gradient(110deg, #fff, #f0f5fd); }
.related-support .eyebrow { margin-bottom: 8px; }
.related-support h3 { margin: 0; font-size: 17px; }
.related-support ul { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.related-support li { padding: 8px 13px; border: 1px solid #d7e1ef; border-radius: 100px; color: #34517c; background: white; font-size: 10px; }

.value { position: relative; overflow: hidden; color: white; background: var(--navy); }
.value::before { position: absolute; top: -250px; left: 50%; width: 750px; height: 750px; content: ""; border: 1px solid rgba(52,128,255,.15); border-radius: 50%; transform: translateX(-50%); box-shadow: 0 0 120px rgba(13,76,181,.18); }
.value-lines { position: absolute; inset: 0; opacity: .18; background: linear-gradient(145deg, transparent 44%, rgba(35,107,230,.5) 44.1%, transparent 44.3%), linear-gradient(165deg, transparent 63%, rgba(228,178,94,.35) 63.1%, transparent 63.3%); }
.section-heading.light h2 em { color: var(--gold-light); }
.value-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.value-grid article { min-height: 265px; padding: 38px 30px; border-right: 1px solid rgba(255,255,255,.13); }
.value-grid article:last-child { border-right: 0; }
.value-grid article > span { color: var(--gold); font-size: 12px; }
.value-grid h3 { margin: 35px 0 14px; font-size: 17px; }
.value-grid p { margin: 0; color: rgba(255,255,255,.55); font-size: 12px; }

.process { background: #f6f8fc; }
.process-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; padding: 0; margin: 0; list-style: none; background: #dce3ee; border: 1px solid #dce3ee; border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; }
.process-list li { position: relative; display: flex; gap: 22px; min-height: 220px; padding: 38px 32px; background: white; }
.process-list li:not(:last-child)::after { position: absolute; z-index: 2; top: 50%; right: -15px; width: 28px; height: 28px; content: "›"; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: #345b99; background: white; transform: translateY(-50%); }
.process-list li > span { color: #c18a39; font-size: 13px; font-weight: 700; }
.process-list small { color: #9ba5b6; font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.process-list h3 { margin: 9px 0 12px; font-size: 17px; }
.process-list p { margin: 0; color: var(--muted); font-size: 12px; }

.profile { background: white; }
.profile-panel { display: grid; grid-template-columns: .68fr 1.32fr; min-height: 500px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #f9fbfe; box-shadow: var(--shadow); }
.profile-visual { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; color: white; background: radial-gradient(circle at 50% 45%, #174b9a, #071a3a 68%); }
.profile-visual::before { position: absolute; width: 460px; height: 460px; content: ""; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.profile-visual::after { position: absolute; width: 300px; height: 300px; content: ""; border: 1px dashed rgba(228,178,94,.25); border-radius: 50%; animation: rotate 30s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
.profile-monogram { position: relative; z-index: 2; font-size: 88px; font-weight: 800; letter-spacing: -.08em; line-height: 1; }
.profile-monogram span { color: var(--gold-light); font-size: 36px; }
.profile-visual p { position: relative; z-index: 2; margin: 18px 0 0; color: rgba(255,255,255,.62); font-size: 13px; letter-spacing: .15em; }
.profile-ring { position: absolute; z-index: 1; bottom: -170px; width: 520px; height: 250px; border: 1px solid rgba(58,139,255,.4); border-radius: 50%; box-shadow: 0 0 70px rgba(38,114,255,.25); }
.profile-content { padding: 60px 65px; }
.profile-content h2 { margin: 0; font-size: clamp(28px, 3vw, 38px); line-height: 1.55; letter-spacing: -.03em; }
.profile-content h2 em { color: #ad782b; font-style: normal; }
.profile-lead { margin: 22px 0; color: var(--muted); font-size: 13px; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.profile-tags span { padding: 6px 12px; border: 1px solid #d8e0ec; border-radius: 100px; color: #34517c; background: white; font-size: 10px; }
.credentials { margin-top: 28px; padding: 22px; border: 1px solid #d8e3f3; border-radius: 15px; background: white; box-shadow: 0 12px 30px rgba(49,87,143,.07); }
.credentials-title { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.credentials-title small, .credentials-title strong { display: block; }
.credentials-title small { color: #7a899d; font-size: 11px; }
.credentials-title strong { color: var(--ink); font-size: 16px; }
.credential-medal { display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; border-radius: 12px; color: #5268e8; background: linear-gradient(135deg, #eaf1ff, #f2edff); }
.credential-medal svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.credential-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; padding: 0; margin: 0; list-style: none; }
.credential-list li { padding: 10px 12px; border: 1px solid #e1e8f3; border-radius: 10px; background: #f8faff; }
.credential-list li:last-child { grid-column: 1 / -1; }
.credential-list strong, .credential-list span, .credential-list .credential-type { display: block; }
.credential-list .credential-type { margin-bottom: 3px; color: #8896aa; font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.credential-list strong { color: #4057c1; font-size: 13px; }
.credential-list span { margin-top: 2px; color: #718198; font-size: 11px; }
.profile-note { display: flex; gap: 16px; margin-top: 28px; padding: 20px; border-left: 3px solid var(--gold); background: white; }
.profile-note svg { width: 27px; height: 27px; flex: 0 0 auto; fill: none; stroke: #1e4e99; stroke-width: 1.4; }
.profile-note p { margin: 0; color: var(--muted); font-size: 11px; }
.profile-note strong { color: var(--ink); }

.faq { background: #f6f8fc; }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 125px; }
.faq-intro h2 { margin: 0; font-size: clamp(30px, 3.3vw, 44px); line-height: 1.5; letter-spacing: -.035em; }
.faq-intro h2 em { color: #ad782b; font-style: normal; }
.faq-intro > p:last-of-type { margin: 20px 0; color: var(--muted); font-size: 13px; }
.faq-intro > a { color: #174fae; font-size: 12px; font-weight: 700; }
.faq-list { border-top: 1px solid #cfd8e6; }
.faq-list details { border-bottom: 1px solid #cfd8e6; }
.faq-list summary { position: relative; padding: 25px 46px 25px 0; cursor: pointer; list-style: none; font-size: 14px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 50%; right: 8px; content: "＋"; color: #a57329; font-size: 20px; font-weight: 400; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -4px 45px 24px 0; color: var(--muted); font-size: 12px; }

.contact { padding: 0 0 100px; background: white; }
.contact-panel { position: relative; display: grid; grid-template-columns: 1.3fr .7fr; align-items: center; gap: 50px; overflow: hidden; padding: 58px 64px; border-radius: 20px; color: white; background: linear-gradient(120deg, #09214a, #061126 70%); box-shadow: 0 25px 60px rgba(6,17,38,.2); }
.contact-panel::after { position: absolute; right: -90px; bottom: -180px; width: 430px; height: 430px; content: ""; border: 1px solid rgba(57,133,255,.3); border-radius: 50%; box-shadow: inset 0 0 90px rgba(19,94,215,.18); }
.contact-panel > * { position: relative; z-index: 1; }
.contact-panel h2 { margin: 0; font-size: clamp(28px, 3vw, 40px); line-height: 1.5; }
.contact-panel p:not(.eyebrow) { margin: 16px 0 0; color: rgba(255,255,255,.61); font-size: 13px; }
.contact-actions { text-align: center; }
.contact-actions .button { width: 100%; }
.contact-actions small { display: block; margin-top: 12px; color: rgba(255,255,255,.42); font-size: 9px; }
.contact-mail { display: inline-block; margin-top: 14px; color: rgba(255,255,255,.78); font-size: 11px; letter-spacing: .04em; border-bottom: 1px solid rgba(255,255,255,.25); }
.contact-mail:hover { color: var(--gold-light); border-color: var(--gold-light); }
.contact-free { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; padding: 7px 13px; border: 1px solid rgba(255,217,143,.35); border-radius: 100px; color: var(--gold-light); font-size: 10px; font-weight: 700; }
.contact-free::before { content: "✓"; }

.site-footer { padding: 50px 0 22px; color: white; background: #030b1b; }
.footer-main { display: flex; align-items: center; justify-content: space-between; padding-bottom: 35px; }
.footer-main nav { display: flex; gap: 28px; }
.footer-main nav a { color: rgba(255,255,255,.55); font-size: 11px; }
.footer-main nav a:hover { color: white; }
.company-info { display: flex; flex-direction: column; gap: 5px; padding-left: 28px; border-left: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.48); font-size: 9px; font-style: normal; line-height: 1.65; }
.company-info strong { color: rgba(255,255,255,.8); font-size: 10px; }
.company-info a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); font-size: 10px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Bright, energetic visual system and improved reading size */
body { font-size: 17px; background: #fbfdff; }
.site-header { border-color: rgba(36,100,255,.12); background: rgba(255,255,255,.78); backdrop-filter: blur(16px); }
.site-header.scrolled { background: rgba(255,255,255,.94); box-shadow: 0 10px 35px rgba(43,92,160,.13); }
.brand { color: var(--ink); }
.brand-mark { color: #5268e8; }
.brand small { color: #71829a; font-size: 12px; }
.brand strong { font-size: 18px; }
.global-nav a { color: #314766; font-size: 15px; }
.global-nav a:hover { color: #275df5; }
.global-nav .nav-cta { border: 0; color: white; background: linear-gradient(135deg, #ff7a59, #ff4f91); box-shadow: 0 10px 28px rgba(255,79,145,.25); }

.hero {
  overflow: visible;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 19%, rgba(255,193,77,.3), transparent 23%),
    radial-gradient(circle at 68% 57%, rgba(121,103,255,.18), transparent 29%),
    radial-gradient(circle at 12% 35%, rgba(55,184,255,.2), transparent 25%),
    linear-gradient(128deg, #f8fcff 0%, #eaf6ff 46%, #fff5f0 100%);
}
.hero-grid { opacity: .34; background-image: linear-gradient(rgba(56,144,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(56,144,255,.14) 1px, transparent 1px); }
.hero::after { border-color: rgba(82,104,232,.25); box-shadow: 0 0 90px rgba(50,168,255,.18); }
.hero-orb-one { border-color: rgba(82,104,232,.24); box-shadow: inset 0 0 90px rgba(50,168,255,.13); }
.hero-orb-two { border-color: rgba(255,122,89,.34); }
.eyebrow { color: #4760df; font-size: 14px; }
.eyebrow.dark { color: #5268e8; }
.hero h1 .headline-accent { background: linear-gradient(90deg, #2864ff, #7b5cff 56%, #ff5b83); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.technology-heading h2,
.section-heading h2,
.profile-content h2,
.faq-intro h2,
.contact-panel h2 {
  line-break: strict;
  word-break: auto-phrase;
  text-wrap: balance;
}
.hero-lead { color: #52647d; font-size: 18px; }
.button { font-size: 16px; }
.button-primary { color: white; background: linear-gradient(135deg, #ff8a4c, #ff4f91); box-shadow: 0 13px 30px rgba(255,79,145,.25); }
.button-primary:hover { box-shadow: 0 18px 38px rgba(255,79,145,.35); }
.button-ghost { border-color: rgba(40,100,255,.35); color: #2756b8; background: rgba(255,255,255,.68); }
.button-ghost:hover { border-color: #7b5cff; }
.hero-proof > div { border-color: rgba(40,100,255,.18); }
.hero-proof strong { font-size: 22px; }
.hero-proof small { color: #657991; font-size: 12px; }
.hero-proof strong span { color: #ff5b83; }

.visual-glow { background: rgba(62,132,255,.2); }
.dashboard { border-color: rgba(91,128,230,.28); background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(235,246,255,.92)); box-shadow: 0 40px 100px rgba(54,99,170,.22), inset 0 1px rgba(255,255,255,.8); }
.dashboard::before { background: linear-gradient(120deg, rgba(69,128,255,.12), transparent 40%); }
.dashboard-head { border-color: rgba(62,98,151,.12); color: #2f4b71; font-size: 15px; }
.dashboard-head > span { color: #00a68b; font-size: 12px; }
.status-dot { background: #15c9a5; box-shadow: 0 0 12px #15c9a5; }
.kpi-card { border-color: rgba(76,119,219,.18); background: rgba(255,255,255,.8); box-shadow: 0 10px 30px rgba(72,117,184,.08); }
.kpi-card small, .kpi-card span { color: #687b94; font-size: 12px; }
.kpi-card strong { color: #2864ff; }
.meter { background: #e4edf8; }
.meter i { background: linear-gradient(90deg, #7b5cff, #20c8dc); }
.flow-title { color: #61748d; font-size: 12px; }
.flow-title span:last-child { color: #2864ff; }
.module-flow i { border-color: rgba(40,100,255,.28); color: #425be1; background: #edf4ff; font-size: 14px; }
.module-flow span { color: #61748d; font-size: 12px; }
.float-card { border-color: rgba(57,108,199,.16); background: rgba(255,255,255,.94); box-shadow: 0 18px 50px rgba(45,86,153,.18); }
.float-icon { color: #ff6b62; background: #fff0e9; }
.float-card small { color: #71829a; font-size: 12px; }
.float-card strong { color: var(--ink); font-size: 13px; }

.trust-grid { border-color: #d9e7f5; box-shadow: 0 20px 60px rgba(42,89,158,.16); }
.trust-grid svg { stroke: #5268e8; }
.trust-grid strong { font-size: 15px; }
.trust-grid small { font-size: 12px; }
.services { background: linear-gradient(#fff, #eef9ff); }
.section-heading > p:last-child { font-size: 16px; }
.service-card { border-color: #d9e7f5; box-shadow: 0 10px 28px rgba(64,112,177,.06); }
.service-card:nth-child(1) .service-icon { color: #2864ff; background: #eaf2ff; }
.service-card:nth-child(2) .service-icon { color: #7b5cff; background: #f0edff; }
.service-card:nth-child(3) .service-icon { color: #f05a7e; background: #fff0f4; }
.service-card:nth-child(4) .service-icon { color: #00a88f; background: #e7fbf7; }
.service-card h3 { font-size: 20px; }
.service-card p { color: #52647d; font-size: 15px; }
.service-card li, .related-support li { font-size: 12px; }
.card-number { color: #e5edf8; }
.related-support { border-color: #d5e6f5; background: linear-gradient(110deg, #fff, #edf7ff, #fff3f7); }
.related-support h3 { font-size: 19px; }

.value { background: linear-gradient(135deg, #5368ed 0%, #387eea 48%, #13b8c8 100%); }
.value::before { border-color: rgba(255,255,255,.2); box-shadow: 0 0 120px rgba(255,255,255,.1); }
.value-lines { opacity: .3; }
.section-heading.light h2 em { color: #ffe08a; }
.value-grid h3 { font-size: 20px; }
.value-grid p { color: rgba(255,255,255,.8); font-size: 15px; }
.value-grid article > span { color: #ffe08a; font-size: 14px; }

.process { background: linear-gradient(180deg, #f7fbff, #eef4ff); }
.process-list small { font-size: 12px; }
.process-list h3 { font-size: 20px; }
.process-list p { font-size: 15px; }
.profile-panel { border-color: #d6e5f3; background: linear-gradient(120deg, #fff, #f5f1ff); }
.profile-visual { background: radial-gradient(circle at 50% 40%, #5f8df7, #655be5 58%, #3e47ac 100%); }
.profile-lead { font-size: 16px; }
.profile-tags span { border-color: #d8dcf7; color: #4358bd; background: #f7f6ff; font-size: 13px; }
.credentials-title small { font-size: 12px; }
.credentials-title strong { font-size: 18px; }
.credential-list .credential-type { font-size: 11px; }
.credential-list strong { font-size: 15px; }
.credential-list span { font-size: 13px; }
.profile-note { border-left-color: #ff765d; }
.profile-note p { font-size: 14px; }

.faq { background: linear-gradient(135deg, #fff8f3, #f3f7ff 55%, #edfbff); }
.faq-intro > p:last-of-type { font-size: 16px; }
.faq-intro > a { color: #5268e8; font-size: 14px; }
.faq-list summary { font-size: 17px; }
.faq-list details p { font-size: 15px; }
.faq-list summary::after { color: #ff685f; }

.contact-panel { background: linear-gradient(125deg, #5268e8, #7b5cff 50%, #13b8c8); box-shadow: 0 25px 60px rgba(82,104,232,.25); }
.contact-panel::after { border-color: rgba(255,255,255,.26); box-shadow: inset 0 0 90px rgba(255,255,255,.1); }
.contact-panel p:not(.eyebrow) { color: rgba(255,255,255,.82); font-size: 16px; }
.contact-panel .eyebrow { color: #ffe08a; }
.contact-mail { font-size: 14px; }
.contact-actions small { color: rgba(255,255,255,.68); font-size: 12px; }
.contact-free { border-color: rgba(255,224,138,.55); color: #fff1a6; font-size: 13px; }

.site-footer { background: linear-gradient(125deg, #1c3157, #243f70); }
.site-footer .brand { color: white; }
.site-footer .brand-mark { color: #ffd166; }
.site-footer .brand small { color: rgba(255,255,255,.65); }
.footer-main nav a { color: rgba(255,255,255,.75); font-size: 13px; }
.company-info { color: rgba(255,255,255,.68); font-size: 12px; }
.company-info strong { color: white; font-size: 13px; }
.footer-bottom { color: rgba(255,255,255,.65); font-size: 12px; }

/* DynaSolu brand system — inspired by the original orange ring logo */
:root {
  --navy: #342d28;
  --navy-2: #5a4637;
  --blue: #ef8b24;
  --blue-bright: #ffb44f;
  --gold: #f39a32;
  --gold-light: #ffd49b;
  --ink: #342d28;
  --muted: #6f6258;
  --line: #eadbc9;
  --paper: #fff8ef;
  --shadow: 0 24px 70px rgba(166, 98, 31, .14);
}

body { background: #fffcf8; }
.site-header { border-color: rgba(239,139,36,.18); background: rgba(255,252,248,.86); }
.site-header.scrolled { background: rgba(255,252,248,.96); box-shadow: 0 10px 35px rgba(134,78,28,.12); }
.brand { gap: 11px; }
.brand-mark { width: 48px; height: 48px; color: #f39a32; }
.brand-mark svg { overflow: visible; fill: none; stroke: currentColor; stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }
.brand-mark .logo-d { fill: currentColor; stroke: none; opacity: .62; }
.brand-wordmark {
  color: #ed8b28;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 27px !important;
  font-weight: 700;
  letter-spacing: -.055em !important;
  line-height: 1.05 !important;
}
.brand-copy small { margin-top: 4px; color: #806b59; font-size: 10px; letter-spacing: .03em; }
.global-nav a { color: #574a40; }
.global-nav a:hover { color: #e47e1c; }
.global-nav a:not(.nav-cta)::after { background: #f39a32; }
.global-nav .nav-cta { background: linear-gradient(135deg, #ffb14b, #ef8623); box-shadow: 0 10px 28px rgba(227,123,25,.24); }

.hero {
  background:
    radial-gradient(circle at 83% 20%, rgba(255,190,91,.34), transparent 24%),
    radial-gradient(circle at 70% 61%, rgba(246,143,53,.13), transparent 30%),
    radial-gradient(circle at 10% 38%, rgba(255,221,174,.42), transparent 27%),
    linear-gradient(128deg, #fffdfa 0%, #fff4e5 48%, #fffaf4 100%);
}
.hero-grid { opacity: .28; background-image: linear-gradient(rgba(230,138,44,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(230,138,44,.12) 1px, transparent 1px); }
.hero::after, .hero-orb-one { border-color: rgba(239,139,36,.23); box-shadow: 0 0 90px rgba(239,139,36,.12); }
.hero-orb-two { border-color: rgba(213,111,31,.32); }
.eyebrow, .eyebrow.dark { color: #d8771a; }
.hero h1 .headline-accent { max-width: 100%; padding-right: .18em; font-size: .88em; letter-spacing: -.05em; background: linear-gradient(90deg, #e97d18, #ffad43 56%, #d86b27); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.button-primary { background: linear-gradient(135deg, #ffb249, #ef7f25); box-shadow: 0 13px 30px rgba(225,119,27,.24); }
.button-primary:hover { box-shadow: 0 18px 38px rgba(225,119,27,.34); }
.button-ghost { border-color: rgba(226,128,30,.4); color: #ad5c18; background: rgba(255,255,255,.72); }
.button-ghost:hover { border-color: #ef8b24; }
.hero-proof > div { border-color: rgba(218,123,29,.2); }
.hero-proof strong span { color: #eb7e24; }

.dashboard { border-color: rgba(224,134,48,.27); background: linear-gradient(145deg, rgba(255,255,255,.97), rgba(255,247,236,.94)); box-shadow: 0 40px 100px rgba(145,87,34,.18), inset 0 1px rgba(255,255,255,.9); }
.dashboard::before { background: linear-gradient(120deg, rgba(255,174,72,.15), transparent 42%); }
.status-dot { background: #31b89c; box-shadow: 0 0 12px #31b89c; }
.kpi-card { border-color: rgba(225,138,48,.2); background: rgba(255,255,255,.84); box-shadow: 0 10px 30px rgba(147,88,34,.07); }
.kpi-card strong { color: #e98220; }
.meter i { background: linear-gradient(90deg, #f3932d, #ffbd53); box-shadow: 0 0 10px rgba(239,139,36,.35); }
.flow-title span:last-child { color: #df7c1d; }
.module-flow i { border-color: rgba(226,130,31,.3); color: #c86b18; background: #fff4e5; }
.float-card { border-color: rgba(215,126,35,.18); box-shadow: 0 18px 50px rgba(129,75,27,.16); }
.float-icon { color: #e27b20; background: #fff0dc; }

.trust-grid { border-color: #ecdac4; box-shadow: 0 20px 60px rgba(145,86,31,.14); }
.trust-grid svg { stroke: #e88928; }
.technology { background: linear-gradient(145deg, #fff, #fff7eb 52%, #fffaf5); }
.technology::before { background: radial-gradient(circle, rgba(255,174,72,.15), transparent 68%); }
.technology-heading { display: block; max-width: 900px; margin: 0 auto 52px; text-align: center; }
.technology-heading .eyebrow { justify-content: center; margin-bottom: 16px; }
.technology-heading h2 { max-width: 760px; margin: 0 auto; line-height: 1.42; text-wrap: balance; }
.technology-heading > p:last-child { max-width: 760px; margin: 20px auto 0; line-height: 1.9; }
.technology-heading h2 em, .section-heading h2 em, .profile-content h2 em { color: #cf731f; }
.technology-card { border-color: #ebdcc9; box-shadow: 0 14px 35px rgba(145,88,35,.07); }
.technology-card:hover { border-color: #e6bd8c; box-shadow: 0 20px 42px rgba(145,88,35,.13); }

.services { background: linear-gradient(#fff, #fff5e8); }
.service-card { border-color: #eadbc9; box-shadow: 0 10px 28px rgba(143,85,31,.06); }
.service-card::after { background: linear-gradient(90deg, #ed8725, #ffc25d); }
.service-card:nth-child(1) .service-icon { color: #dc761c; background: #fff1dd; }
.service-card:nth-child(2) .service-icon { color: #be7a19; background: #fff6d9; }
.service-card:nth-child(3) .service-icon { color: #d5683a; background: #fff0e9; }
.service-card:nth-child(4) .service-icon { color: #618f68; background: #edf7ed; }
.related-support { border-color: #ead8c0; background: linear-gradient(110deg, #fff, #fff5e5, #fffaf5); }

.value { background: linear-gradient(135deg, #a95022 0%, #df7826 48%, #f2a23d 100%); }
.value::before { border-color: rgba(255,226,181,.25); box-shadow: 0 0 120px rgba(255,211,148,.12); }
.value .section-heading .eyebrow { color: #fff1d6; }
.value .section-heading h2 { color: #fff; text-shadow: 0 2px 18px rgba(105,45,13,.16); }
.value-grid article > span, .section-heading.light h2 em { color: #ffe1ae; }
.process { background: linear-gradient(180deg, #fffaf3, #f9efe2); }
.process-list { border-color: #ead9c4; background: #ead9c4; }
.process-list li > span { color: #d7771d; }
.process-list li:not(:last-child)::after { color: #c96b18; }

.profile-panel { border-color: #ead7bf; background: linear-gradient(120deg, #fff, #fff6e9); }
.profile-visual { background: radial-gradient(circle at 50% 38%, #ffc15d, #ef8d2c 55%, #b75a24 100%); }
.profile-visual::after { border-color: rgba(255,247,226,.4); }
.profile-tags span { border-color: #eed5b7; color: #a45c1d; background: #fff8ee; }
.credentials { border-color: #ebd7bd; box-shadow: 0 12px 30px rgba(132,77,28,.07); }
.credential-medal { color: #e58525; background: linear-gradient(135deg, #fff1dc, #fff8ea); }
.credential-list li { border-color: #edddc9; background: #fffaf4; }
.credential-list strong { color: #bb671c; }
.profile-note { border-left-color: #ef8b2c; }
.profile-note svg { stroke: #d8771a; }

.faq { background: linear-gradient(135deg, #fff8ef, #fffdf8 55%, #fff2e2); }
.faq-intro > a { color: #c86a18; }
.faq-list summary::after { color: #e27c21; }
.contact-panel { background: linear-gradient(125deg, #a94f24, #df7625 52%, #f3a43e); box-shadow: 0 25px 60px rgba(163,78,30,.25); }
.contact-panel .eyebrow { color: #ffe2af; }
.contact-free { border-color: rgba(255,228,181,.6); color: #fff0d0; }
.site-footer { background: linear-gradient(125deg, #38251b, #5a3824); }
.site-footer .brand-mark, .site-footer .brand-wordmark { color: #ffb34e; }
.site-footer .brand small { color: rgba(255,244,227,.68); }
.footer-main nav a, .company-info, .footer-bottom { color: rgba(255,244,227,.68); }

@media (max-width: 1050px) {
  .global-nav { gap: 20px; }
  .hero-layout { grid-template-columns: 1fr; gap: 25px; padding-bottom: 175px; }
  .hero-copy { padding-top: 45px; }
  .hero-visual { height: 430px; }
  .dashboard { width: min(620px, 90vw); }
  .hero { min-height: 1250px; }
  .technology-grid { grid-template-columns: repeat(2,1fr); }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .value-grid { grid-template-columns: repeat(2,1fr); }
  .value-grid article:nth-child(2) { border-right: 0; }
  .value-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
}

@media (max-width: 760px) {
  .container { width: calc(100% - 32px); max-width: 1180px; }
  .site-header,
  .site-header.scrolled { background: rgba(255,252,248,.97); backdrop-filter: none; }
  .nav-wrap { min-height: 72px; gap: 10px; }
  .brand { min-width: 0; gap: 8px; }
  .brand > span:last-child { min-width: 0; }
  .brand strong { font-size: clamp(13px, 3.7vw, 15px); white-space: nowrap; }
  .brand small { font-size: 12px; }
  .brand-mark { width: 36px; height: 36px; }
  .menu-button { position: relative; z-index: 3; display: block; flex: 0 0 44px; border: 1px solid #f0d4b1; border-radius: 11px; background: rgba(255,255,255,.9); }
  .menu-button::before { content: "☰"; color: #df7b20; font-size: 24px; line-height: 1; }
  .menu-button span:not(.sr-only) { display: none; }
  .menu-button[aria-expanded="true"] { border-color: transparent; background: transparent; }
  .menu-button[aria-expanded="true"]::before { content: "×"; color: white; font-size: 31px; font-weight: 300; }
  .global-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 28px; visibility: hidden; opacity: 0; background: linear-gradient(145deg, #a94f24, #df7625 55%, #f3a43e); transition: opacity .25s, visibility .25s; }
  .global-nav.open { visibility: visible; opacity: 1; }
  .global-nav a { color: white; font-size: 18px; }
  .global-nav .nav-cta { margin-top: 8px; padding: 13px 40px; }
  .hero { min-height: 0; overflow: hidden; }
  .hero-layout { min-height: auto; gap: 45px; padding-top: 120px; padding-bottom: 55px; }
  .hero-copy, .hero-visual { min-width: 0; }
  .hero h1 { font-size: clamp(28px, 8.6vw, 42px); }
  .hero h1 .headline-line { white-space: normal; text-wrap: balance; }
  .hero h1 .headline-accent { font-size: .86em; overflow-wrap: anywhere; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-proof > div { min-width: 0; padding: 0 10px; }
  .hero-proof strong { font-size: 17px; overflow-wrap: anywhere; }
  .hero-proof small { font-size: 11px; line-height: 1.6; }
  .hero-visual { height: auto; margin-top: 0; padding: 26px 0 42px; }
  .dashboard { position: relative; top: auto; left: auto; width: 100%; padding: 18px; transform: none; }
  .dashboard-kpis { gap: 10px; }
  .kpi-card { min-height: 140px; padding: 14px; }
  .module-flow b { width: 14px; }
  .float-card-top { top: 0; right: 0; }
  .float-card-bottom { bottom: 4px; left: 0; }
  .trust-strip { position: relative; right: auto; bottom: auto; left: auto; transform: none; }
  .trust-grid { grid-template-columns: 1fr; padding: 10px 18px; }
  .trust-grid > div { justify-content: flex-start; min-width: 0; padding: 16px 8px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .trust-grid span { min-width: 0; }
  .trust-grid strong, .trust-grid small { overflow-wrap: anywhere; }
  .trust-grid svg { width: 27px; height: 27px; }
  .section { padding: 95px 0; }
  .technology { padding-top: 95px; }
  .technology-heading { grid-template-columns: 1fr; gap: 18px; }
  .technology-heading > *, .technology-card > div { min-width: 0; }
  .technology-heading h2 br,
  .section-heading h2 br,
  .profile-content h2 br,
  .faq-intro h2 br,
  .contact-panel h2 br { display: initial; }
  .technology-heading h2,
  .section-heading h2,
  .profile-content h2,
  .faq-intro h2,
  .contact-panel h2 {
    word-break: normal;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }
  .technology-grid { grid-template-columns: 1fr; }
  .technology-card { min-height: 112px; }
  .technology-card strong, .technology-card span { overflow-wrap: anywhere; }
  .technology-note { text-align: left; }
  .services { padding-top: 95px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2 { font-size: 28px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .related-support { grid-template-columns: 1fr; gap: 22px; padding: 26px 22px; }
  .related-support > * { min-width: 0; }
  .related-support li { max-width: 100%; overflow-wrap: anywhere; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .value-grid article:last-child { border-bottom: 0; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 0; }
  .process-list li:not(:last-child)::after { top: auto; right: 50%; bottom: -15px; transform: translateX(50%) rotate(90deg); }
  .profile-panel { grid-template-columns: 1fr; }
  .profile-visual { min-height: 330px; }
  .profile-content { padding: 40px 26px; }
  .profile-content { min-width: 0; }
  .credentials { padding: 18px; }
  .credentials-title { align-items: flex-start; }
  .credentials-title > div { min-width: 0; }
  .credentials-title strong,
  .credential-list strong,
  .credential-list span { overflow-wrap: anywhere; }
  .credential-list { grid-template-columns: 1fr; }
  .credential-list li:last-child { grid-column: auto; }
  .faq-layout { grid-template-columns: 1fr; gap: 35px; }
  .faq-intro { position: static; }
  .faq-intro, .faq-list { min-width: 0; }
  .faq-list summary { padding-right: 38px; overflow-wrap: anywhere; }
  .contact { padding-bottom: 60px; }
  .contact-panel { grid-template-columns: 1fr; gap: 34px; padding: 42px 26px; }
  .contact-panel > * { position: relative; z-index: 1; min-width: 0; }
  .contact-mail { max-width: 100%; overflow-wrap: anywhere; }
  .footer-main { flex-direction: column; align-items: flex-start; gap: 30px; }
  .footer-main nav { display: grid; grid-template-columns: repeat(2,1fr); width: 100%; gap: 14px; }
  .company-info { width: 100%; padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.1); border-left: 0; }
}

@media (max-width: 420px) {
  .brand small { display: none; }
  .hero-layout { padding-top: 105px; }
  .eyebrow { gap: 9px; font-size: 12px; letter-spacing: .1em; }
  .eyebrow span { width: 24px; }
  .hero h1 { font-size: clamp(28px, 9.3vw, 37px); }
  .hero h1 .headline-accent { font-size: .8em; }
  .hero-proof { margin-top: 36px; }
  .hero-proof > div { padding: 0 7px; }
  .hero-proof strong { font-size: 15px; }
  .dashboard-head { font-size: 13px; }
  .dashboard-head > span { font-size: 10px; }
  .kpi-card strong { font-size: 22px; }
  .flow-title span:last-child { display: none; }
  .float-card { padding: 10px 12px; }
  .float-card small { font-size: 10px; }
  .float-card strong { font-size: 12px; }
  .section-heading h2 { font-size: 26px; }
  .technology-card { gap: 14px; padding: 22px 18px; }
  .technology-card > img, .technology-icon { width: 50px; height: 50px; }
  .service-card { padding: 30px 22px 26px; }
  .profile-content { padding: 36px 20px; }
  .credentials { padding: 16px; }
  .credential-medal { width: 40px; height: 40px; }
  .credentials-title strong { font-size: 16px; }
  .contact-panel { padding: 38px 22px; }
  .footer-main nav { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

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