/* Celestium Soft — production UI system
   Brand: Celestial Blue #0A1F44 · Metallic Gold #FFD700 · Silver #A8A8A8 */
:root {
  --navy-950: #030815;
  --navy-900: #071226;
  --navy-850: #0a1830;
  --navy-800: #0a1f44;
  --navy-700: #123468;
  --navy-600: #1c4d8f;
  --gold-500: #ffd700;
  --gold-400: #ffe16d;
  --gold-300: #ffeb98;
  --silver-500: #a8a8a8;
  --silver-300: #c9ced9;
  --white: #fff;
  --ink: #101728;
  --paper: #f7f8fc;
  --paper-blue: #eef3ff;
  --text: #edf2ff;
  --muted: #aab4c8;
  --line: rgba(180, 198, 244, .18);
  --line-light: rgba(10, 31, 68, .13);
  --danger: #ff6b75;
  --success: #55d69e;
  --warning: #ffcc66;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow: 0 24px 80px rgba(1, 7, 20, .25);
  --shadow-light: 0 25px 70px rgba(10, 31, 68, .12);
  --container: 1220px;
  --header-h: 82px;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--navy-950); }
body { margin: 0; min-width: 320px; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.65; }
img, svg { max-width: 100%; }
img { display: block; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
::selection { background: var(--gold-500); color: var(--navy-950); }

.site-body { background: var(--navy-950); color: var(--text); overflow-x: hidden; }
.site-body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: -2;
  background:
    radial-gradient(circle at 78% -15%, rgba(255, 215, 0, .11), transparent 30%),
    radial-gradient(circle at 10% 12%, rgba(25, 87, 167, .27), transparent 34%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950) 55%);
}
.site-body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: -1; opacity: .28;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container--narrow { width: min(calc(100% - 40px), 850px); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.section--deep { background: linear-gradient(180deg, rgba(7,18,38,.86), rgba(3,8,21,.96)); }
.section--light { color: var(--ink); background: linear-gradient(145deg, #fff 0%, var(--paper-blue) 100%); }
.section--process { border-block: 1px solid var(--line); background: rgba(10,31,68,.25); }
.section--cta { padding-top: 70px; background: var(--paper); color: var(--ink); }

h1, h2, h3, h4 { margin: 0 0 .6em; font-family: Sora, Inter, ui-sans-serif, system-ui, sans-serif; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 550; }
h2 { font-size: clamp(2.2rem, 4.6vw, 4.5rem); font-weight: 560; }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); font-weight: 620; }
p { margin: 0 0 1.1rem; }
.muted { color: var(--muted); }
.lead-small { font-size: 1.14rem; color: var(--silver-300); }
.section--light .lead-small { color: #53627a; }
.nowrap { white-space: nowrap; }

.eyebrow, .admin-eyebrow { margin-bottom: 1rem; color: var(--gold-400); font-size: .78rem; font-weight: 760; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { display: inline-block; width: 26px; height: 1px; margin-right: .65rem; vertical-align: middle; background: currentColor; }
.section-heading { max-width: 780px; margin-bottom: 55px; }
.section-heading > p:last-child { max-width: 650px; color: var(--muted); font-size: 1.08rem; }
.section-heading--dark > p:last-child { color: #53627a; }
.section-actions { display: flex; justify-content: flex-end; margin-top: 32px; }
.text-link, .back-link { display: inline-flex; align-items: center; gap: .55rem; color: var(--gold-400); font-weight: 700; text-decoration: none; }
.text-link:hover, .back-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.icon { width: 23px; height: 23px; flex: 0 0 auto; }
.icon--sm { width: 17px; height: 17px; }

.skip-link { position: fixed; left: 16px; top: -100px; z-index: 9999; padding: 12px 18px; border-radius: 8px; background: var(--gold-500); color: var(--navy-950); font-weight: 800; transition: top .2s; }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 3px; }

/* Navigation */
.site-header { position: fixed; inset: 0 0 auto; height: var(--header-h); z-index: 50; border-bottom: 1px solid transparent; transition: background .25s, border-color .25s, backdrop-filter .25s; }
.site-header.is-scrolled { background: rgba(3, 8, 21, .86); border-color: var(--line); backdrop-filter: blur(18px); }
.site-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: .75rem; color: var(--white); font-family: Sora, Inter, sans-serif; font-size: 1.25rem; font-weight: 650; text-decoration: none; letter-spacing: -.02em; }
.brand img { width: 43px; height: 43px; object-fit: cover; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a:not(.button) { position: relative; color: #dce4f6; font-size: .94rem; font-weight: 600; text-decoration: none; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--gold-500); transition: right .2s; }
.main-nav > a:hover::after, .main-nav > a.is-active::after { right: 0; }
.main-nav > a.is-active { color: var(--white); }
.language-link { padding: 6px 9px; border: 1px solid var(--line); border-radius: 8px; }
.icon-button { display: inline-grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--text); cursor: pointer; }
.nav-toggle { display: none; }

/* Buttons */
.button { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; min-height: 50px; padding: .8rem 1.3rem; border: 1px solid transparent; border-radius: var(--radius-sm); font-weight: 740; line-height: 1.15; text-decoration: none; cursor: pointer; transition: transform .18s, box-shadow .18s, background .18s, border-color .18s, color .18s; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: var(--navy-950); box-shadow: 0 12px 35px rgba(255,215,0,.18); }
.button--primary:hover { box-shadow: 0 15px 45px rgba(255,215,0,.29); }
.button--secondary { border-color: rgba(180,198,244,.38); background: rgba(180,198,244,.06); color: var(--white); }
.section--light .button--secondary, .admin-body .button--secondary { color: var(--navy-800); border-color: rgba(10,31,68,.28); }
.button--ghost { border-color: var(--line); background: transparent; color: inherit; }
.button--danger { background: rgba(255,107,117,.12); border-color: rgba(255,107,117,.35); color: #ffabb1; }
.button--sm { min-height: 40px; padding: .6rem .95rem; font-size: .88rem; }
.button--full { width: 100%; }

/* Hero */
.hero { min-height: min(920px, 100svh); position: relative; display: grid; place-items: center; padding: calc(var(--header-h) + 70px) 0 90px; overflow: hidden; }
.hero::before { content: ""; position: absolute; width: min(900px, 80vw); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(27,75,142,.55), rgba(10,31,68,.15) 43%, transparent 70%); filter: blur(10px); animation: hero-pulse 8s ease-in-out infinite alternate; }
.hero__content { position: relative; z-index: 2; max-width: 1050px; text-align: center; }
.hero h1 { text-wrap: balance; background: linear-gradient(180deg, #ffffff 0%, #d5e2f7 50%, #9cb7e6 100%); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 0 40px rgba(255, 255, 255, 0.15); }
.hero__lead { max-width: 740px; margin: 0 auto 34px; color: #bcc6da; font-size: clamp(1.08rem, 2vw, 1.34rem); }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.trust-line { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 30px; margin-top: 48px; color: #aeb9cc; font-size: .88rem; }
.trust-line span { display: inline-flex; align-items: center; gap: .45rem; transition: transform 0.25s ease, color 0.25s ease; }
.trust-line span:hover { transform: translateY(-2px); color: var(--white); }
.trust-line .icon { color: var(--gold-400); filter: drop-shadow(0 0 6px rgba(255, 225, 109, 0.4)); }
.hero-orbit { position: absolute; z-index: 1; width: min(780px, 78vw); aspect-ratio: 1; pointer-events: none; transition: transform 0.15s cubic-bezier(0.1, 0.5, 0.1, 1); }
.orbit { position: absolute; inset: 0; border: 1px solid rgba(180,198,244,.18); border-radius: 50%; animation: orbit-spin 55s linear infinite; box-shadow: inset 0 0 20px rgba(255,215,0,.03); }
.orbit--2 { inset: 12%; border-color: rgba(255,215,0,.22); animation-duration: 42s; animation-direction: reverse; box-shadow: 0 0 25px rgba(255,215,0,.08); }
.orbit--3 { inset: 25%; border-style: dashed; border-color: rgba(180,198,244,.28); animation-duration: 35s; }
.orbit-node { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 25px rgba(255,215,0,.95), 0 0 10px #ffffff; }
.orbit-node--1 { left: 11%; top: 28%; animation: float 5s ease-in-out infinite, pulse-node 3s ease-in-out infinite alternate; }
.orbit-node--2 { right: 5%; top: 51%; animation: float 6s ease-in-out infinite reverse, pulse-node 4s ease-in-out infinite 1s alternate; }
.orbit-node--3 { left: 53%; bottom: 7%; animation: float 7s ease-in-out infinite, pulse-node 3.5s ease-in-out infinite 0.5s alternate; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-13px) scale(1.15); } }
@keyframes hero-pulse { 0% { transform: scale(0.95); opacity: 0.7; } 100% { transform: scale(1.08); opacity: 1; } }
@keyframes pulse-node { 0% { box-shadow: 0 0 15px rgba(255,215,0,0.7), 0 0 5px #fff; } 100% { box-shadow: 0 0 35px rgba(255,215,0,1), 0 0 15px #fff, 0 0 45px rgba(255,215,0,0.5); } }

/* Info Banners & Interactive Carousel */
.info-banners { position: relative; padding: 40px 0 70px; background: linear-gradient(180deg, var(--navy-950) 0%, rgba(7,18,38,.92) 100%); border-bottom: 1px solid var(--line); }
.info-banners__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.banner-slider { position: relative; overflow: hidden; border-radius: var(--radius-xl); border: 1px solid rgba(180,198,244,.22); background: linear-gradient(145deg, rgba(14,37,77,.6), rgba(5,13,31,.9)); box-shadow: 0 25px 70px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08); }
.banner-slider__track { display: flex; transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1); will-change: transform; }
.banner-slide { min-width: 100%; flex: 0 0 100%; padding: clamp(30px, 4vw, 48px); display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; opacity: 0.45; transition: opacity 0.45s ease; box-sizing: border-box; }
.banner-slide.is-active { opacity: 1; }
.banner-slide__content { max-width: 780px; }
.banner-slide__tag { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; border-radius: 30px; font-size: 0.76rem; font-weight: 780; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(255,215,0,.12); color: var(--gold-400); border: 1px solid rgba(255,215,0,.32); margin-bottom: 16px; }
.banner-slide__tag--accent { background: rgba(85,214,158,.12); color: var(--success); border-color: rgba(85,214,158,.32); }
.banner-slide__tag--purple { background: rgba(168,140,255,.12); color: #c4b5fd; border-color: rgba(168,140,255,.32); }
.banner-slide__title { font-size: clamp(1.45rem, 2.6vw, 2.2rem); font-weight: 650; color: var(--white); margin-bottom: 12px; line-height: 1.25; }
.banner-slide__desc { font-size: clamp(0.96rem, 1.4vw, 1.12rem); color: var(--muted); margin-bottom: 24px; line-height: 1.65; }
.banner-slide__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.banner-slide__graphic { position: relative; width: 140px; height: 140px; display: grid; place-items: center; border-radius: var(--radius-lg); background: radial-gradient(circle at 50% 50%, rgba(255,215,0,.18), transparent 70%), rgba(10,31,68,.6); border: 1px solid rgba(255,215,0,.25); color: var(--gold-400); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.banner-slide__graphic .icon { width: 64px; height: 64px; }
.banner-slider__controls { display: flex; align-items: center; justify-content: space-between; padding: 18px 30px; border-top: 1px solid rgba(180,198,244,.12); background: rgba(3,8,21,.55); backdrop-filter: blur(8px); }
.banner-slider__dots { display: flex; align-items: center; gap: 8px; }
.banner-slider__dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,.25); cursor: pointer; padding: 0; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); }
.banner-slider__dot.is-active { width: 30px; border-radius: 10px; background: var(--gold-400); box-shadow: 0 0 14px rgba(255,215,0,.6); }
.banner-slider__nav-btns { display: flex; align-items: center; gap: 10px; }
.banner-slider__btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: rgba(10,31,68,.5); color: var(--text); display: grid; place-items: center; cursor: pointer; transition: all 0.2s ease; }
.banner-slider__btn:hover { background: var(--navy-700); border-color: var(--gold-400); color: var(--gold-400); transform: scale(1.05); }

/* Cards and sections */
.card-grid, .solution-grid, .blog-grid, .team-grid, .sector-grid, .process-grid, .values-grid, .stat-grid { display: grid; gap: 22px; }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.service-card { min-height: 310px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(18,52,104,.28), rgba(7,18,38,.54)); box-shadow: inset 0 1px rgba(255,255,255,.03); transition: border-color .22s, transform .22s, background .22s; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(255,215,0,.42); background: linear-gradient(145deg, rgba(18,52,104,.43), rgba(7,18,38,.7)); }
.service-card p { color: var(--muted); }
.icon-badge { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 40px; border: 1px solid rgba(255,215,0,.28); border-radius: 16px; background: rgba(255,215,0,.07); color: var(--gold-400); }
.icon-badge--lg { width: 72px; height: 72px; margin: 0; border-radius: 22px; }
.icon-badge--lg .icon { width: 33px; height: 33px; }
.card-link { margin-top: auto; display: inline-flex; align-items: center; gap: .4rem; color: var(--gold-400); font-size: .9rem; font-weight: 700; }
.split-intro { display: grid; grid-template-columns: .86fr 1.35fr; align-items: start; gap: 80px; }
.solution-stack { border-top: 1px solid var(--line-light); }
.solution-row { display: grid; grid-template-columns: 58px 1fr auto; gap: 22px; align-items: center; padding: 27px 10px; border-bottom: 1px solid var(--line-light); }
.solution-row__icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; background: var(--navy-800); color: var(--gold-400); }
.solution-row span { color: var(--navy-600); font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.solution-row h3 { margin: .25rem 0 .35rem; }
.solution-row p { margin: 0; color: #59667c; }
.solution-row__metric { min-width: 105px; text-align: right; }
.solution-row__metric strong { display: block; color: var(--navy-800); font-size: 1.55rem; }
.solution-row__metric small { color: #66738a; text-transform: none; letter-spacing: 0; }
.process-grid { grid-template-columns: repeat(4, 1fr); }
.process-card { position: relative; min-height: 265px; padding: 30px; border-top: 1px solid rgba(255,215,0,.38); background: rgba(10,31,68,.16); }
.process-card > span { display: block; margin-bottom: 70px; color: var(--gold-400); font-family: Sora, sans-serif; font-size: 1.1rem; }
.process-card p { color: var(--muted); }
.blog-grid, .blog-grid--archive { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card { display: flex; flex-direction: column; height: 100%; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(14,37,77,.4), rgba(5,13,31,.75)); backdrop-filter: blur(10px); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; box-shadow: 0 12px 35px rgba(0,0,0,.22); }
.post-card:hover { transform: translateY(-6px); border-color: rgba(255,215,0,.45); box-shadow: 0 20px 50px rgba(0,0,0,.38); }
.post-card__visual { height: 155px; min-height: 155px; display: grid; place-items: center; background: radial-gradient(circle at 50% 50%, rgba(255,215,0,.15), transparent 55%), linear-gradient(135deg, #0b2247, #040a17); border-bottom: 1px solid rgba(180,198,244,.12); overflow: hidden; position: relative; }
.post-card__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.post-card:hover .post-card__visual img { transform: scale(1.05); }
.post-card__symbol { width: 56px; height: 56px; color: rgba(255,225,109,.85); filter: drop-shadow(0 0 15px rgba(255,215,0,.3)); transition: transform .35s ease; }
.post-card:hover .post-card__symbol { transform: scale(1.1) rotate(6deg); }
.post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1 1 auto; }
.post-card__body > span { display: inline-block; color: var(--gold-400); font-size: .74rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 10px; }
.post-card h2, .post-card h3 { margin: 0 0 12px; font-family: Sora, Inter, sans-serif; font-size: 1.18rem; font-weight: 650; line-height: 1.35; letter-spacing: -.015em; color: var(--white); }
.post-card h2 a, .post-card h3 a { color: var(--white); text-decoration: none; transition: color .2s ease; }
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--gold-400); text-decoration: none; }
.post-card p { color: var(--muted); font-size: .92rem; line-height: 1.55; margin-bottom: 18px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }
.post-card .post-meta, .post-card__body > small { margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(180,198,244,.12); display: flex; align-items: center; justify-content: space-between; color: var(--silver-300); font-size: .82rem; }
.post-card .post-meta a { color: var(--gold-400); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: gap .2s ease, color .2s ease; }
.post-card .post-meta a:hover { color: var(--gold-300); gap: 8px; text-decoration: none; }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(35px, 6vw, 75px); border-radius: var(--radius-xl); background: var(--navy-800); color: var(--white); box-shadow: var(--shadow-light); overflow: hidden; position: relative; }
.cta-panel::after { content: ""; position: absolute; width: 340px; aspect-ratio: 1; right: -120px; top: -130px; border: 1px solid rgba(255,215,0,.28); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,215,0,.035), 0 0 0 90px rgba(255,215,0,.025); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 780px; margin: 0; font-size: clamp(2rem, 4vw, 4rem); }

/* Inner pages */
.inner-hero { min-height: 690px; display: grid; align-items: center; padding: calc(var(--header-h) + 85px) 0 80px; border-bottom: 1px solid var(--line); overflow: hidden; }
.inner-hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 70px; }
.inner-hero__grid > div:first-child { max-width: 790px; }
.inner-hero h1 { font-size: clamp(3rem, 6vw, 5.7rem); }
.inner-hero p:not(.eyebrow) { max-width: 680px; color: var(--muted); font-size: 1.15rem; }
.inner-hero__center { max-width: 900px; margin-inline: auto; text-align: center; }
.architecture-visual, .solution-orbit, .company-symbol { position: relative; min-height: 420px; display: grid; place-items: center; }
.architecture-visual span, .solution-orbit__ring { position: absolute; width: 82%; aspect-ratio: 1; border: 1px solid rgba(180,198,244,.2); border-radius: 50%; }
.architecture-visual span:nth-child(2), .solution-orbit__ring--2 { width: 58%; border-color: rgba(255,215,0,.24); }
.architecture-visual span:nth-child(3) { width: 34%; border-style: dashed; }
.architecture-visual > div, .company-symbol > div { width: 120px; height: 120px; display: grid; place-items: center; border: 1px solid rgba(255,215,0,.3); border-radius: 32px; background: rgba(10,31,68,.75); box-shadow: 0 0 70px rgba(255,215,0,.13); color: var(--gold-400); }
.architecture-visual__icon { width: 62px; height: 62px; }
.service-list { display: grid; gap: 0; }
.service-detail { display: grid; grid-template-columns: 55px 80px 1fr; gap: 30px; padding: 60px 0; border-bottom: 1px solid var(--line); }
.service-detail__number { color: var(--gold-400); font-family: Sora, sans-serif; font-size: 1rem; }
.service-detail > div:last-child { max-width: 850px; }
.service-detail > div:last-child > p:last-child { color: var(--muted); }
.governance-panel { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; padding: clamp(32px, 5vw, 65px); border: 1px solid var(--line-light); border-radius: var(--radius-xl); background: white; box-shadow: var(--shadow-light); }
.check-list { margin: 0; padding: 0; display: grid; gap: 16px; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: .75rem; color: #3f4a5f; }
.check-list .icon { color: var(--navy-600); }
.solution-grid { grid-template-columns: repeat(2, 1fr); }
.solution-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(10,31,68,.24); }
.solution-card__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 32px; }
.solution-card__top > span { color: var(--gold-400); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.solution-card__content p { color: var(--muted); }
.solution-card .metric { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.metric { display: inline-flex; flex-direction: column; }
.metric strong { font-size: 1.65rem; color: var(--gold-400); }
.metric small { color: var(--muted); }
.sector-grid { grid-template-columns: repeat(4, 1fr); }
.sector-card { padding: 26px; border: 1px solid var(--line-light); border-radius: var(--radius-md); background: #fff; }
.sector-card .icon { color: var(--navy-600); }
.sector-card p { color: #5c6779; }

/* Company */
.mission-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.mission-card { display: flex; flex-direction: column; padding: clamp(30px, 4vw, 50px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(145deg, rgba(14,37,77,.4), rgba(5,13,31,.75)); backdrop-filter: blur(12px); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; box-shadow: 0 15px 45px rgba(0,0,0,.25); }
.mission-card:hover { transform: translateY(-5px); border-color: rgba(255,215,0,.45); box-shadow: 0 25px 60px rgba(0,0,0,.4); }
.mission-card h2 { font-size: clamp(1.5rem, 2.6vw, 2.3rem); font-weight: 620; line-height: 1.22; text-wrap: balance; margin: 12px 0 18px; color: var(--white); }
.mission-card--accent { border-color: rgba(255,215,0,.35); background: linear-gradient(145deg, rgba(255,215,0,.08), rgba(10,31,68,.45)); }
.mission-card p:not(.eyebrow) { color: var(--muted); font-size: clamp(0.98rem, 1.3vw, 1.1rem); line-height: 1.65; margin: 0; }
.values-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: start; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value-card { padding: 26px 30px; border: 1px solid rgba(10,31,68,.12); border-radius: var(--radius-md); background: #ffffff; box-shadow: 0 10px 30px rgba(10,31,68,.05); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; display: flex; flex-direction: column; gap: 10px; }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(10,31,68,.12); border-color: rgba(28,77,143,.3); }
.value-card span { display: inline-block; color: var(--navy-600); font-family: Sora, Inter, sans-serif; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; }
.value-card h3 { margin: 0; font-size: 1.1rem; font-weight: 650; color: var(--navy-950); line-height: 1.35; }
.team-grid { grid-template-columns: repeat(2, 1fr); max-width: 900px; }
.team-card { display: grid; grid-template-columns: 155px 1fr; gap: 28px; align-items: center; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(10,31,68,.24); }
.team-card__portrait { aspect-ratio: 1; display: grid; place-items: center; border-radius: 24px; background: linear-gradient(145deg, var(--navy-700), var(--navy-950)); color: var(--gold-400); font-family: Sora, sans-serif; font-size: 2.4rem; font-weight: 700; }
.team-card p, .team-card small { color: var(--muted); }

/* Blog/article */
.blog-grid--archive { grid-template-columns: repeat(3, 1fr); }
.article-page { background: var(--paper); color: var(--ink); }
.article-hero { padding: calc(var(--header-h) + 100px) 0 80px; background: linear-gradient(145deg, var(--navy-800), var(--navy-950)); color: var(--white); }
.article-meta, .post-meta { display: flex; flex-wrap: wrap; gap: 14px 24px; color: var(--muted); font-size: .9rem; }
.article-excerpt { max-width: 750px; font-size: 1.22rem; color: #c4cee2; }
.article-cover { min-height: 300px; margin: 70px auto 0; display: grid; place-items: center; border-radius: var(--radius-xl); background: radial-gradient(circle, rgba(255,215,0,.2), transparent 25%), linear-gradient(145deg, #123468, #030815); }
.article-cover .icon { width: 130px; height: 130px; color: var(--gold-400); }
.article-content { padding: 80px 0; color: #344056; font-size: 1.08rem; }
.article-content p { margin-bottom: 1.6rem; }
.article-content h2, .article-content h3 { margin-top: 2.3rem; color: var(--ink); }
.article-footer { padding-top: 38px; border-top: 1px solid var(--line-light); }

/* Contact and legal */
.contact-page { padding: calc(var(--header-h) + 75px) 0 110px; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.contact-intro { position: sticky; top: 130px; }
.contact-intro h1 { font-size: clamp(3rem, 6vw, 5.4rem); }
.contact-intro > p:not(.eyebrow) { color: var(--muted); font-size: 1.13rem; }
.contact-details { margin-top: 40px; display: grid; gap: 18px; }
.contact-details a, .contact-details p { display: flex; align-items: center; gap: 12px; margin: 0; color: #c4cede; text-decoration: none; }
.contact-form, .privacy-form-layout, .auth-card { padding: clamp(27px, 5vw, 52px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: rgba(10,31,68,.28); box-shadow: var(--shadow); }
.contact-form label, .admin-form label, .privacy-form-layout label, .auth-card label { display: grid; gap: 8px; color: inherit; font-size: .91rem; font-weight: 680; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-grid--3 { grid-template-columns: repeat(3, 1fr); }
input, textarea, select { width: 100%; border: 1px solid rgba(180,198,244,.24); border-radius: 10px; background: rgba(2,8,20,.48); color: var(--white); padding: 12px 14px; transition: border-color .18s, box-shadow .18s; }
textarea { resize: vertical; min-height: 110px; }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 35px; }
input:focus, textarea:focus, select:focus { border-color: var(--gold-400); box-shadow: 0 0 0 4px rgba(255,215,0,.1); outline: none; }
input::placeholder, textarea::placeholder { color: #7f8ba2; }
.field-error { color: #ffadb3; font-size: .82rem; }
.consent-check, .toggle-field { display: flex !important; grid-column: 1 / -1; align-items: flex-start; gap: 11px !important; }
.consent-check input, .toggle-field input, .cookie-panel input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--gold-500); }
.consent-check a { color: var(--gold-400); }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.legal-page { padding: calc(var(--header-h) + 70px) 0 100px; background: var(--paper); color: var(--ink); }
.legal-header { margin-bottom: 50px; padding-bottom: 32px; border-bottom: 1px solid var(--line-light); }
.legal-header h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
.legal-content { white-space: pre-wrap; color: #354158; font-size: 1.05rem; }
.privacy-form-layout { background: white; color: var(--ink); border-color: var(--line-light); box-shadow: var(--shadow-light); }
.privacy-form-layout input, .privacy-form-layout textarea, .privacy-form-layout select { background: var(--paper); color: var(--ink); border-color: var(--line-light); }

/* Cookie consent */
.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 100; max-width: 1160px; margin-inline: auto; padding: 22px; border: 1px solid rgba(255,215,0,.25); border-radius: 20px; background: rgba(3,8,21,.96); box-shadow: 0 30px 100px rgba(0,0,0,.55); backdrop-filter: blur(18px); }
.cookie-banner[hidden], .cookie-panel[hidden] { display: none !important; }
.cookie-banner__content { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cookie-banner h2 { margin: 0 0 .35rem; font-size: 1.15rem; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: .88rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; flex: 0 0 auto; }
.cookie-panel { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 20px; background: rgba(0,0,0,.72); }
.cookie-panel > form { width: min(100%, 560px); padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--navy-900); box-shadow: var(--shadow); }
.cookie-panel label { display: flex; align-items: flex-start; gap: 12px; margin: 16px 0; }
.cookie-panel label span { display: grid; }
.cookie-panel small { color: var(--muted); }

/* Footer and alerts */
.site-footer { padding-top: 90px; border-top: 1px solid var(--line); background: #020610; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 55px; padding-bottom: 60px; }
.site-footer h2 { margin-bottom: 20px; color: var(--white); font-size: .95rem; letter-spacing: .04em; }
.site-footer a, .footer-cookie-link { display: block; margin: 9px 0; border: 0; padding: 0; background: transparent; color: var(--muted); font-size: .92rem; text-decoration: none; cursor: pointer; }
.site-footer a:hover, .footer-cookie-link:hover { color: var(--gold-400); }
.footer-brand p { max-width: 330px; margin-top: 20px; color: var(--muted); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding: 25px 0; border-top: 1px solid var(--line); color: #7e899d; font-size: .82rem; }
.site-footer__bottom p { margin: 0; }
.site-alert, .alert { position: relative; z-index: 45; padding: 13px 18px; border: 1px solid; border-radius: 10px; }
.site-alert { position: fixed; top: 100px; left: 50%; width: min(calc(100% - 40px), 720px); transform: translateX(-50%); box-shadow: var(--shadow); }
.site-alert--success, .alert--success { background: #0c372b; border-color: rgba(85,214,158,.45); color: #b6f5da; }
.site-alert--error, .alert--error { background: #3e1720; border-color: rgba(255,107,117,.45); color: #ffd0d4; }

/* Dynamic Flash Modal Dialog */
.flash-modal-overlay { position: fixed; inset: 0; z-index: 99999; display: grid; place-items: center; padding: 20px; background: rgba(2, 6, 16, 0.72); backdrop-filter: blur(10px); opacity: 0; visibility: hidden; transition: opacity .3s cubic-bezier(.16,1,.3,1), visibility .3s ease; }
.flash-modal-overlay.is-visible { opacity: 1; visibility: visible; }
.flash-modal { position: relative; width: min(92vw, 460px); padding: 34px 28px 22px; border-radius: var(--radius-xl); background: linear-gradient(145deg, rgba(10, 31, 68, 0.96), rgba(3, 8, 21, 0.98)); border: 1px solid rgba(255, 215, 0, 0.35); box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.12); color: var(--white); text-align: center; display: flex; flex-direction: column; align-items: center; transform: scale(0.85) translateY(24px); transition: transform .35s cubic-bezier(.34,1.56,.64,1); overflow: hidden; }
.flash-modal-overlay.is-visible .flash-modal { transform: scale(1) translateY(0); }
.flash-modal__close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(180, 198, 244, 0.22); background: rgba(255, 255, 255, 0.06); color: var(--silver-300); font-size: 1.4rem; line-height: 1; display: grid; place-items: center; cursor: pointer; transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease; }
.flash-modal__close:hover { background: rgba(255, 215, 0, 0.22); color: var(--gold-400); border-color: var(--gold-400); transform: rotate(90deg); }
.flash-modal__icon { width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 16px; }
.flash-modal--success .flash-modal__icon { background: rgba(85, 214, 158, 0.16); color: var(--success); border: 1px solid rgba(85, 214, 158, 0.4); box-shadow: 0 0 30px rgba(85, 214, 158, 0.3); }
.flash-modal--error .flash-modal__icon { background: rgba(255, 107, 117, 0.16); color: var(--danger); border: 1px solid rgba(255, 107, 117, 0.4); box-shadow: 0 0 30px rgba(255, 107, 117, 0.3); }
.flash-modal__icon .icon { width: 30px; height: 30px; }
.flash-modal__title { margin: 0 0 8px; font-family: Sora, Inter, sans-serif; font-size: 1.35rem; font-weight: 700; color: var(--white); }
.flash-modal__text { margin: 0 0 18px; color: #c0cbdf; font-size: 0.96rem; line-height: 1.55; }
.flash-modal__progress { width: 100%; height: 4px; background: rgba(255, 255, 255, 0.08); border-radius: 2px; overflow: hidden; margin-top: 4px; }
.flash-modal__progress-bar { height: 100%; width: 100%; background: linear-gradient(90deg, var(--gold-400), var(--success)); transform-origin: left center; }
.flash-modal--error .flash-modal__progress-bar { background: linear-gradient(90deg, var(--danger), var(--gold-400)); }

@keyframes flash-modal-shrink {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

.flash-modal-overlay.is-visible .flash-modal__progress-bar {
  animation: flash-modal-shrink 5s linear forwards;
}

/* Auth */
.auth-body { min-height: 100svh; margin: 0; display: grid; place-items: center; padding: 32px 20px; background: radial-gradient(circle at 50% 20%, rgba(27,75,142,.45), rgba(7,18,38,.96) 65%), var(--navy-950); color: var(--text); }
.auth-shell { width: min(100%, 460px); margin: 0 auto; }
.auth-brand { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 28px; }
.auth-logo-badge { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; border-radius: var(--radius-md); background: rgba(255,255,255,.96); border: 1px solid rgba(255,215,0,.35); box-shadow: 0 12px 35px rgba(0,0,0,.4); margin-bottom: 12px; }
.auth-logo-img { max-width: 250px; height: auto; object-fit: contain; display: block; }
.auth-brand__subtitle { margin: 0; color: var(--gold-400); font-size: 0.83rem; font-weight: 650; letter-spacing: 0.06em; }
.auth-card { padding: clamp(28px, 5vw, 42px); border-radius: var(--radius-xl); border: 1px solid rgba(180,198,244,.22); background: linear-gradient(145deg, rgba(10,31,68,.88), rgba(3,8,21,.96)); backdrop-filter: blur(20px); box-shadow: 0 30px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08); display: grid; gap: 18px; }
.auth-card h1 { font-size: clamp(1.75rem, 4vw, 2.2rem); text-align: center; margin: 0 0 4px; color: var(--white); }
.auth-card .eyebrow { text-align: center; margin-bottom: 4px; }
.auth-card__lead { color: var(--muted); text-align: center; font-size: 0.94rem; margin: 0 0 8px; line-height: 1.5; }
.auth-field { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.auth-field span { font-size: 0.88rem; font-weight: 650; color: #dce4f6; }
.auth-field input { width: 100%; padding: 13px 16px; border-radius: var(--radius-sm); border: 1px solid rgba(180,198,244,.28); background: rgba(3,8,21,.75); color: var(--white); font-size: 0.96rem; transition: border-color .2s, box-shadow .2s; }
.auth-field input:focus { outline: none; border-color: var(--gold-400); box-shadow: 0 0 0 3px rgba(255,215,0,.22); }
.auth-card__footer { display: flex; justify-content: center; margin-top: 6px; }

/* Errors */
.error-page { min-height: 80svh; display: grid; place-items: center; text-align: center; padding: 130px 20px 70px; }
.error-page strong { color: var(--gold-400); font-size: clamp(5rem, 15vw, 10rem); line-height: 1; }
.error-page p { max-width: 600px; color: var(--muted); }

/* Admin Layout & Dynamic Collapsible Sidebar */
.admin-body { margin: 0; background: #f4f6fb; color: var(--ink); color-scheme: light; }
.admin-shell { min-height: 100svh; display: grid; grid-template-columns: 270px 1fr; transition: grid-template-columns 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); }
.admin-shell.is-collapsed { grid-template-columns: 74px 1fr; }

.admin-sidebar { position: sticky; top: 0; height: 100svh; display: flex; flex-direction: column; padding: 20px 14px; background: linear-gradient(180deg, #071226 0%, #030815 100%); border-right: 1px solid rgba(180, 198, 244, 0.12); color: var(--text); overflow-y: auto; overflow-x: hidden; transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), padding 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); box-sizing: border-box; }

/* Sidebar Header & Brand */
.sidebar-brand-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; padding: 0 4px; }
.admin-brand { display: flex; align-items: center; gap: 12px; color: white; font-family: Sora, Inter, sans-serif; text-decoration: none; overflow: hidden; white-space: nowrap; }
.brand-text { display: flex; flex-direction: column; transition: opacity 0.2s, max-width 0.3s; }
.brand-text strong { font-size: 1.05rem; font-weight: 700; line-height: 1.2; }
.brand-text small { font-size: 0.72rem; color: var(--gold-400); font-weight: 600; }

.sidebar-toggle-btn { width: 32px; height: 32px; border-radius: 8px; border: 1px solid rgba(180, 198, 244, 0.2); background: rgba(10, 31, 68, 0.5); color: var(--silver-300); display: grid; place-items: center; cursor: pointer; flex: 0 0 auto; transition: all 0.2s ease; }
.sidebar-toggle-btn:hover { background: var(--navy-700); color: var(--gold-400); border-color: var(--gold-400); }
.sidebar-toggle-icon { transition: transform 0.3s ease; }

/* Quick Search */
.sidebar-search-wrap { margin-bottom: 18px; }
.sidebar-search-box { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 10px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(180, 198, 244, 0.15); color: var(--muted); }
.sidebar-search-box input { width: 100%; border: none; background: transparent; color: var(--white); font-size: 0.82rem; outline: none; }
.sidebar-search-box input::placeholder { color: #64748b; }

/* Navigation Links */
.sidebar-nav { display: flex; flex-direction: column; gap: 20px; flex: 1; }
.sidebar-nav-group { display: flex; flex-direction: column; gap: 4px; }
.sidebar-nav-title { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; color: var(--gold-400); padding: 6px 12px; white-space: nowrap; opacity: 0.9; }

.sidebar-link { position: relative; display: flex; align-items: center; gap: 14px; padding: 10px 12px; border-radius: 10px; color: #bdc8da; font-size: 0.88rem; font-weight: 600; text-decoration: none; transition: background 0.18s, color 0.18s, transform 0.18s; white-space: nowrap; }
.sidebar-link .icon { width: 18px; height: 18px; flex: 0 0 auto; color: #94a3b8; transition: color 0.18s; }
.sidebar-link:hover { background: rgba(255, 255, 255, 0.08); color: var(--white); }
.sidebar-link:hover .icon { color: var(--gold-400); }
.sidebar-link.is-active { background: linear-gradient(135deg, rgba(255, 215, 0, 0.18), rgba(18, 52, 104, 0.6)); color: var(--white); border: 1px solid rgba(255, 215, 0, 0.3); }
.sidebar-link.is-active .icon { color: var(--gold-400); }
.sidebar-badge { margin-left: auto; padding: 2px 7px; border-radius: 10px; font-size: 0.68rem; font-weight: 800; background: rgba(85, 214, 158, 0.2); color: var(--success); border: 1px solid rgba(85, 214, 158, 0.3); }

/* Version Card & User Footer */
.sidebar-version-card { margin-top: 15px; padding: 12px; border-radius: 10px; background: rgba(10, 31, 68, 0.4); border: 1px solid rgba(180, 198, 244, 0.12); font-size: 0.78rem; color: var(--muted); display: flex; flex-direction: column; gap: 4px; }
.sidebar-version-card strong { color: var(--white); font-size: 0.82rem; }
.status-indicator { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 10px var(--success); }

.sidebar-user-footer { margin-top: 15px; padding-top: 15px; border-top: 1px solid rgba(180, 198, 244, 0.12); display: flex; align-items: center; gap: 12px; }
.sidebar-user-avatar { position: relative; width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-400), var(--navy-700)); color: var(--navy-950); font-weight: 800; display: grid; place-items: center; font-size: 1rem; flex: 0 0 auto; }
.online-dot { position: absolute; bottom: 0; right: 0; width: 10px; height: 10px; border-radius: 50%; background: #10b981; border: 2px solid #071226; }
.sidebar-user-info { display: flex; flex-direction: column; overflow: hidden; white-space: nowrap; flex: 1; }
.sidebar-user-info strong { color: var(--white); font-size: 0.86rem; line-height: 1.2; }
.sidebar-user-info small { color: var(--muted); font-size: 0.72rem; overflow: hidden; text-overflow: ellipsis; }
.sidebar-public-btn { width: 32px; height: 32px; border-radius: 8px; border: 1px solid rgba(180, 198, 244, 0.2); display: grid; place-items: center; color: var(--gold-400); text-decoration: none; transition: background 0.2s; flex: 0 0 auto; }
.sidebar-public-btn:hover { background: rgba(255, 215, 0, 0.15); }

/* COLLAPSED MODE (Icon Only Dynamic Mode) */
.admin-shell.is-collapsed .sidebar-toggle-icon { transform: rotate(180deg); }
.admin-shell.is-collapsed .brand-text,
.admin-shell.is-collapsed .sidebar-search-wrap,
.admin-shell.is-collapsed .sidebar-nav-title,
.admin-shell.is-collapsed .sidebar-link__label,
.admin-shell.is-collapsed .sidebar-badge,
.admin-shell.is-collapsed .sidebar-version-card,
.admin-shell.is-collapsed .sidebar-user-info { display: none !important; }

.admin-shell.is-collapsed .sidebar-brand-header { justify-content: center; padding: 0; flex-direction: column; gap: 10px; }
.admin-shell.is-collapsed .sidebar-link { justify-content: center; padding: 12px; }
.admin-shell.is-collapsed .sidebar-user-footer { justify-content: center; padding-top: 12px; flex-direction: column; gap: 10px; }

/* Tooltip Popup on Hover when Collapsed */
.admin-shell.is-collapsed .sidebar-link::after { content: attr(data-tooltip); position: absolute; left: 100%; top: 50%; transform: translateY(-50%) translateX(10px); padding: 6px 12px; border-radius: 8px; background: var(--navy-900); color: var(--white); border: 1px solid rgba(255, 215, 0, 0.3); font-size: 0.8rem; font-weight: 650; white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity 0.2s ease, transform 0.2s ease; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); z-index: 1000; }
.admin-shell.is-collapsed .sidebar-link:hover::after { opacity: 1; transform: translateY(-50%) translateX(16px); }

.admin-main { min-width: 0; }
.admin-topbar { min-height: 82px; display: flex; align-items: center; gap: 22px; padding: 16px 32px; border-bottom: 1px solid #dce2eb; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); }
.admin-topbar h1 { margin: 0; font-size: 1.45rem; color: var(--navy-950); }
.admin-eyebrow { margin: 0 0 2px; color: var(--navy-600); font-size: .68rem; }
.admin-user { margin-left: auto; display: flex; align-items: center; gap: 15px; }
.admin-menu-toggle { display: none; color: var(--navy-800); border-color: var(--line-light); }
.admin-content { padding: 30px; }
.admin-content > .alert { margin-bottom: 20px; }
.admin-grid { display: grid; gap: 22px; }
.admin-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.admin-panel { margin-bottom: 24px; padding: 26px; border: 1px solid #dce2ec; border-radius: 18px; background: white; box-shadow: 0 7px 28px rgba(10,31,68,.055); }
.admin-panel__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 25px; margin-bottom: 24px; }
.admin-panel__header h2 { margin: 0 0 6px; font-size: 1.35rem; letter-spacing: -.02em; }
.admin-panel__header p { margin: 0; }
.admin-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.admin-form { display: grid; gap: 20px; }
.admin-form input, .admin-form textarea, .admin-form select, .filter-form input, .filter-form select, .inline-form select { background: #f8f9fc; color: var(--ink); border-color: #d4dbe7; }
.admin-form small { color: #748097; font-weight: 500; }
.admin-form__actions { display: flex; justify-content: flex-end; gap: 12px; padding-top: 20px; border-top: 1px solid #e3e7ee; }
.settings-fieldset { margin: 0; padding: 25px; border: 1px solid #e0e5ed; border-radius: 14px; }
.settings-fieldset legend { padding: 0 10px; color: var(--navy-800); font-weight: 800; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .9rem; }
th, td { padding: 14px 13px; border-bottom: 1px solid #e4e8ef; text-align: left; vertical-align: top; }
th { color: #657188; font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
td small { display: block; margin-top: 4px; color: #7b879c; }
td code, .content-block-row code, .admin-panel code { padding: 3px 6px; border-radius: 5px; background: #eef2f8; color: var(--navy-700); font-size: .78rem; }
td pre { max-width: 450px; max-height: 300px; overflow: auto; white-space: pre-wrap; }
.actions-col { width: 130px; text-align: right; }
.row-actions { display: flex; justify-content: flex-end; gap: 7px; }
.status { display: inline-flex; align-items: center; min-height: 25px; padding: 3px 8px; border-radius: 999px; background: #eef1f6; color: #58657a; font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.status--active { background: #dcf8eb; color: #176645; }
.status--inactive { background: #f2e5e7; color: #8b3f47; }
.stat-grid { grid-template-columns: repeat(4, 1fr); margin-bottom: 24px; }
.stat-card { padding: 24px; border: 1px solid #dce2ec; border-radius: 18px; background: white; }
.stat-card > span { color: #69768c; font-size: .8rem; font-weight: 750; text-transform: uppercase; }
.stat-card strong { display: block; margin: 10px 0 2px; color: var(--navy-800); font-size: 2.2rem; }
.stat-card small { color: #7b879a; }
.activity-list { display: grid; }
.activity-list > div { display: grid; grid-template-columns: 150px 1fr auto; gap: 18px; padding: 14px 0; border-bottom: 1px solid #e6eaf0; }
.activity-list small { color: #768297; }
.detail-list { display: grid; grid-template-columns: 170px 1fr; gap: 12px 25px; }
.detail-list dt { color: #6f7b90; font-weight: 700; }
.detail-list dd { margin: 0; }
.message-body { padding: 22px; border-radius: 12px; background: #f5f7fb; white-space: pre-wrap; }
.filter-form, .inline-form { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-form input, .filter-form select, .inline-form select { width: auto; min-width: 160px; }
.admin-pagination, .pagination { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.admin-pagination a, .pagination a { min-width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #dbe1ea; border-radius: 8px; background: white; color: var(--navy-800); text-decoration: none; }
.admin-pagination a.is-active, .pagination a.is-active { border-color: var(--navy-800); background: var(--navy-800); color: white; }
.empty-state { padding: 40px 20px; border: 1px dashed #cfd7e3; border-radius: 14px; color: #6c788d; text-align: center; }
.admin-cover-preview { max-width: 280px; border-radius: 12px; }
.content-group + .content-group { margin-top: 35px; }
.content-group h3 { padding-bottom: 12px; border-bottom: 1px solid #e3e7ee; font-size: 1.05rem; }
.content-block-list { display: grid; }
.content-block-row { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 18px 0; border-bottom: 1px solid #e7eaf0; }
.content-block-row p { margin: 8px 0 2px; }
.content-block-row small { color: #778397; }
.security-checks { display: grid; gap: 11px; }
.security-check { display: flex; align-items: center; gap: 13px; padding: 13px; border-radius: 10px; background: #f5f7fa; }
.security-check > span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; font-weight: 900; }
.security-check.is-ok > span { background: #dff8ed; color: #17704b; }
.security-check.is-warning > span { background: #fff0d0; color: #9b6400; }
.security-check div { display: grid; }
.security-check small { color: #748096; }
.incident-list { display: grid; gap: 18px; }
.incident-card { padding: 22px; border: 1px solid #dce2eb; border-left-width: 5px; border-radius: 14px; }
.incident-card--low { border-left-color: #56b9f2; }
.incident-card--medium { border-left-color: #f0b74c; }
.incident-card--high { border-left-color: #ef8256; }
.incident-card--critical { border-left-color: #e84f61; }
.incident-card__head { display: flex; justify-content: space-between; gap: 20px; }
.incident-card__head h3 { margin: 8px 0 2px; }
.incident-card__head small { color: #778399; }
.inline-incident-form { margin-top: 20px; padding-top: 20px; border-top: 1px solid #e4e8ef; }
.danger-form { margin-top: 30px; padding-top: 22px; border-top: 1px solid #f0d9dc; }

/* Animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1080px) {
  .card-grid--4, .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid, .blog-grid--archive { grid-template-columns: repeat(2, 1fr); }
  .main-nav { gap: 18px; }
  .split-intro, .values-layout { gap: 45px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 82px 0; }
  .nav-toggle { display: inline-grid; }
  .main-nav { position: fixed; left: 15px; right: 15px; top: 78px; display: none; align-items: stretch; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(3,8,21,.98); box-shadow: var(--shadow); }
  .main-nav.is-open { display: grid; }
  .main-nav > a { padding: 10px 5px; }
  .main-nav > a::after { display: none; }
  .language-link { width: fit-content; }
  .hero { min-height: 820px; }
  .inner-hero__grid, .contact-grid, .governance-panel, .split-intro, .values-layout { grid-template-columns: 1fr; }
  .architecture-visual, .solution-orbit, .company-symbol { min-height: 300px; }
  .contact-intro { position: static; }
  .solution-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 120px 1fr; }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-panel { align-items: flex-start; flex-direction: column; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: fixed; left: 0; top: 0; z-index: 100; width: 270px; transform: translateX(-105%); transition: transform .22s; }
  .admin-sidebar.is-open { transform: translateX(0); }
  .admin-menu-toggle { display: inline-grid; }
  .admin-grid--2 { grid-template-columns: 1fr; }
  .banner-slide { grid-template-columns: 1fr; gap: 20px; }
  .banner-slide__graphic { display: none; }
}

@media (max-width: 620px) {
  .section { padding: 68px 0; }
  h1 { font-size: clamp(2.65rem, 14vw, 4.5rem); }
  h2 { font-size: clamp(2rem, 10vw, 3.2rem); }
  .brand span { font-size: 1.05rem; }
  .hero { min-height: 760px; padding-top: 120px; }
  .hero__actions, .hero__actions .button { width: 100%; }
  .trust-line { align-items: center; flex-direction: column; }
  .card-grid--4, .mission-grid, .process-grid, .blog-grid, .blog-grid--archive, .sector-grid, .values-grid, .team-grid, .stat-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 45px 1fr; }
  .service-detail .icon-badge { grid-column: 2; }
  .solution-row { grid-template-columns: 48px 1fr; }
  .solution-row__metric { grid-column: 2; text-align: left; }
  .team-card { grid-template-columns: 1fr; }
  .team-card__portrait { max-width: 130px; }
  .form-grid, .form-grid--3 { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom, .cookie-banner__content, .admin-panel__header, .admin-user { align-items: flex-start; flex-direction: column; }
  .cookie-actions, .cookie-actions .button { width: 100%; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; }
  .admin-topbar { padding: 15px 18px; }
  .admin-content { padding: 18px; }
  .admin-user { margin-left: 0; gap: 7px; }
  .activity-list > div { grid-template-columns: 1fr; gap: 4px; }
  .detail-list { grid-template-columns: 1fr; gap: 2px; }
  .content-block-row { align-items: flex-start; flex-direction: column; }
  .incident-card__head { flex-direction: column; }
}

@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; }
}

@media print {
  .site-header, .site-footer, .cookie-banner, .cookie-panel, .button, .admin-sidebar, .admin-topbar { display: none !important; }
  body, .article-page, .legal-page { background: white !important; color: black !important; }
  .admin-shell { display: block; }
  .admin-content { padding: 0; }
}
.cookie-panel__header { display:flex; align-items:flex-start; justify-content:space-between; gap:20px; margin-bottom:18px; }
.cookie-panel__header h2 { margin:0; font-size:1.45rem; }
.solution-orbit > div { width: 132px; height: 132px; display:grid; place-items:center; align-content:center; gap:8px; border:1px solid rgba(255,215,0,.32); border-radius:36px; background:rgba(10,31,68,.78); color:var(--gold-400); box-shadow:0 0 70px rgba(255,215,0,.13); }
.solution-orbit > div .icon { width:54px; height:54px; }
.solution-orbit > div small { color:var(--silver-300); font-size:.7rem; }
.solution-orbit > i { position:absolute; width:9px; height:9px; border-radius:50%; background:var(--gold-400); box-shadow:0 0 18px rgba(255,215,0,.75); }
.solution-orbit > i:nth-of-type(1) { left:9%; top:43%; }
.solution-orbit > i:nth-of-type(2) { right:18%; top:17%; }
.solution-orbit > i:nth-of-type(3) { right:8%; bottom:23%; }
.company-symbol img { width:min(100%, 410px); filter:drop-shadow(0 24px 45px rgba(0,0,0,.38)); }
.team-card__portrait .team-card__icon { width:50px; height:50px; opacity:.5; }
.team-card__portrait span { position:absolute; }
.team-card__portrait { position:relative; }
.sector-grid > .section-heading { grid-column:1 / -1; }
.team-card__portrait img { width:100%; height:100%; object-fit:cover; border-radius:inherit; }

/* Executive Dashboard UI */
.dash-container { display: flex; flex-direction: column; gap: 24px; }
.dash-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 8px; }
.dash-title { margin: 0; font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--navy-950); font-weight: 700; }
.admin-body .dash-title { color: var(--navy-950); }
.dash-controls { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.dash-date-picker { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: var(--radius-sm); background: #ffffff; border: 1px solid #dce2eb; color: #4a5568; font-size: 0.88rem; font-weight: 600; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }

/* KPI Cards Row */
.dash-kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dash-kpi-card { padding: 24px; border-radius: var(--radius-lg); background: #ffffff; border: 1px solid #e2e8f0; box-shadow: 0 10px 30px rgba(10,31,68,0.05); display: flex; flex-direction: column; gap: 12px; transition: transform 0.22s ease, box-shadow 0.22s ease; }
.dash-kpi-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(10,31,68,0.1); }
.dash-kpi-card__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dash-kpi-card__icon { width: 38px; height: 38px; border-radius: 10px; background: var(--paper-blue); color: var(--navy-600); display: grid; place-items: center; }
.dash-kpi-card__body { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 4px; }
.dash-kpi-val { font-size: clamp(1.8rem, 2.5vw, 2.3rem); font-weight: 700; color: var(--navy-950); font-family: Sora, Inter, sans-serif; line-height: 1; }
.dash-trend-badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 20px; font-size: 0.78rem; font-weight: 750; line-height: 1; }
.dash-trend-badge--up { background: rgba(85,214,158,0.15); color: #10b981; border: 1px solid rgba(16,185,129,0.3); }
.dash-trend-badge--purple { background: rgba(168,140,255,0.15); color: #8b5cf6; border: 1px solid rgba(139,92,246,0.3); }

/* Dashboard Charts Grid */
.dash-charts-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; }
.dash-chart-card { padding: 28px; border-radius: var(--radius-xl); background: linear-gradient(145deg, #0a1f44, #030815); border: 1px solid rgba(180,198,244,0.2); box-shadow: 0 20px 50px rgba(0,0,0,0.35); color: var(--white); display: flex; flex-direction: column; justify-content: space-between; gap: 20px; }
.dash-chart-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }
.dash-badge-sm { padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; background: rgba(255,255,255,0.1); color: var(--silver-300); border: 1px solid rgba(255,255,255,0.15); }

/* Stacked Bar Visual */
.dash-bar-chart-visual { display: flex; flex-direction: column; gap: 24px; margin-top: 10px; }
.dash-bars-group { display: flex; align-items: flex-end; justify-content: space-around; gap: 20px; height: 190px; padding-bottom: 10px; border-bottom: 1px dashed rgba(255,255,255,0.15); }
.dash-bar-col { display: flex; flex-direction: column; align-items: center; width: 80px; gap: 8px; height: 100%; justify-content: flex-end; }
.dash-bar-val { font-size: 0.8rem; font-weight: 700; color: var(--silver-300); }
.dash-stacked-bar { width: 44px; height: 140px; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column-reverse; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.dash-bar-seg { width: 100%; transition: height 0.5s ease; }
.dash-bar-seg--1 { background: #8b5cf6; }
.dash-bar-seg--2 { background: #3b82f6; }
.dash-bar-seg--3 { background: #06b6d4; }
.dash-bar-seg--4 { background: #10b981; }
.dash-bar-label { font-size: 0.82rem; color: var(--muted); }
.dash-chart-legend { display: flex; flex-wrap: wrap; gap: 14px 20px; font-size: 0.78rem; color: var(--muted); justify-content: center; }
.dash-chart-legend span { display: inline-flex; align-items: center; gap: 6px; }
.dash-leg-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dash-leg-dot--1 { background: #8b5cf6; }
.dash-leg-dot--2 { background: #3b82f6; }
.dash-leg-dot--3 { background: #06b6d4; }
.dash-leg-dot--4 { background: #10b981; }

/* Weekly Bar Chart */
.dash-weekly-chart { height: 190px; display: flex; align-items: flex-end; padding-top: 20px; }
.dash-weekly-bars { display: flex; align-items: flex-end; justify-content: space-between; width: 100%; height: 100%; gap: 8px; border-bottom: 1px dashed rgba(255,255,255,0.15); }
.dash-wcol { display: flex; flex-direction: column; align-items: center; flex: 1; height: 100%; justify-content: flex-end; gap: 8px; position: relative; }
.dash-wbar { width: 24px; border-radius: 8px 8px 4px 4px; background: rgba(255,255,255,0.18); transition: height 0.4s ease; }
.dash-wbar--peak { background: linear-gradient(180deg, #a855f7, #6366f1); box-shadow: 0 0 15px rgba(168,85,247,0.5); }
.dash-wval { position: absolute; top: 0; font-size: 0.72rem; font-weight: 800; color: var(--gold-400); background: rgba(3,8,21,0.8); padding: 2px 6px; border-radius: 6px; border: 1px solid rgba(255,215,0,0.3); }

/* Quick Modules Row */
.dash-modules-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.dash-module-card { display: flex; align-items: center; gap: 16px; padding: 20px 24px; border-radius: var(--radius-lg); background: #ffffff; border: 1px solid #e2e8f0; text-decoration: none; color: var(--navy-950); box-shadow: 0 6px 20px rgba(10,31,68,0.04); transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }
.dash-module-card:hover { transform: translateY(-3px); border-color: var(--navy-600); box-shadow: 0 14px 35px rgba(10,31,68,0.1); }
.dash-module-card__icon { width: 48px; height: 48px; border-radius: 14px; background: var(--paper-blue); color: var(--navy-800); display: grid; place-items: center; flex: 0 0 auto; }
.dash-module-card__content { display: flex; flex-direction: column; gap: 2px; }
.dash-module-card__content span { font-size: 0.85rem; font-weight: 700; color: var(--navy-700); }
.dash-module-card__content strong { font-size: 1.45rem; font-weight: 750; color: var(--navy-950); font-family: Sora, Inter, sans-serif; }

/* Status Pills */
.dash-status-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; }
.dash-status-pill--success { background: rgba(16,185,129,0.12); color: #047857; border: 1px solid rgba(16,185,129,0.25); }
.dash-status-pill--info { background: rgba(59,130,246,0.12); color: #1d4ed8; border: 1px solid rgba(59,130,246,0.25); }

@media (max-width: 1080px) {
  .dash-kpi-row, .dash-modules-row { grid-template-columns: repeat(2, 1fr); }
  .dash-charts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .dash-kpi-row, .dash-modules-row { grid-template-columns: 1fr; }
  .dash-header { flex-direction: column; align-items: flex-start; }
}
