:root {
    --midnight: #01204d;
    --midnight-2: #071b36;
    --blue-deep: #0150d0;
    --blue: #0071f8;
    --blue-electric: #0084fd;
    --cyan: #009bfe;
    --white: #ffffff;
    --surface: #f4f7fb;
    --surface-2: #eef4fb;
    --line: #dce7f4;
    --line-strong: #cad9ea;
    --text: #071b36;
    --muted: #617087;
    --muted-2: #8190a5;
    --success: #0c9b79;
    --danger: #d44c55;
    --shadow-sm: 0 8px 24px rgba(1, 32, 77, .08);
    --shadow-md: 0 18px 60px rgba(1, 32, 77, .12);
    --shadow-lg: 0 36px 90px rgba(1, 32, 77, .18);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1180px;
    --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Inter, Manrope, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg.icon { width: 1.15em; height: 1.15em; flex: 0 0 auto; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 830px); }
.section-pad { padding: 108px 0; }
.soft-section { background: linear-gradient(180deg, #f8fbff 0%, #f1f6fc 100%); }
.centered { text-align: center; }
.skip-link { position: fixed; top: 10px; left: 10px; transform: translateY(-150%); background: var(--midnight); color: white; padding: 10px 15px; border-radius: 8px; z-index: 10000; }
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-h);
    transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled { background: rgba(255, 255, 255, .94); box-shadow: 0 8px 35px rgba(1, 32, 77, .08); backdrop-filter: blur(16px); }
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; width: 92px; height: 72px; align-items: center; justify-content: center; flex: 0 0 auto; }
.brand img { width: auto; height: 66px; }
.desktop-nav { display: flex; align-items: center; gap: 27px; margin-left: auto; }
.desktop-nav a { color: #3a4b62; font-size: 14px; font-weight: 650; position: relative; padding: 28px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 18px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--cyan)); transition: .25s ease; border-radius: 9px; }
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--blue); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { left: 0; right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.language-switch { display: flex; align-items: center; font-size: 12px; font-weight: 800; gap: 4px; color: #93a0b2; }
.language-switch a.is-active { color: var(--blue); }
.login-menu { position: relative; }
.login-dropdown { position: absolute; right: 0; top: calc(100% + 10px); width: 224px; padding: 8px; background: white; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: .2s ease; }
.login-menu.is-open .login-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.login-dropdown a { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 11px; color: var(--text); font-size: 14px; font-weight: 650; }
.login-dropdown a:hover { background: var(--surface); color: var(--blue); }
.chevron { width: 7px; height: 7px; border-right: 1.7px solid currentColor; border-bottom: 1.7px solid currentColor; transform: rotate(45deg) translateY(-2px); margin-left: 2px; }
.mobile-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--surface); color: var(--midnight); align-items: center; justify-content: center; }
.mobile-toggle .close-icon { display: none; }
.mobile-toggle.is-open .menu-icon { display: none; }
.mobile-toggle.is-open .close-icon { display: block; }
.mobile-panel { display: none; position: fixed; top: var(--header-h); inset-inline: 0; bottom: 0; background: rgba(255,255,255,.98); backdrop-filter: blur(16px); overflow: auto; }
.mobile-panel-inner { display: flex; flex-direction: column; padding: 22px 20px 40px; gap: 4px; }
.mobile-panel-inner > a:not(.btn), .mobile-access-links a { padding: 14px 4px; font-weight: 700; border-bottom: 1px solid var(--line); }
.mobile-access-links { margin: 8px 0 18px; display: grid; gap: 4px; }
.mobile-access-links a { font-size: 14px; color: var(--blue); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 12px 20px; border: 1px solid transparent; border-radius: 12px; font-weight: 750; font-size: 14px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; position: relative; overflow: hidden; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--blue-deep), var(--blue-electric) 62%, var(--cyan)); box-shadow: 0 12px 28px rgba(0, 113, 248, .24); }
.btn-primary::before { content: ""; position: absolute; top: -60%; left: -70%; width: 45%; height: 220%; background: rgba(255,255,255,.28); transform: rotate(22deg); transition: left .55s ease; }
.btn-primary:hover::before { left: 130%; }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(0, 113, 248, .32); }
.btn-secondary { background: white; color: var(--midnight); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }
.btn-ghost { background: transparent; color: var(--midnight); border-color: transparent; }
.btn-ghost:hover { background: var(--surface); }
.btn-white { background: white; color: var(--blue-deep); box-shadow: 0 14px 36px rgba(0,0,0,.16); }
.btn-outline-white { border-color: rgba(255,255,255,.44); color: white; background: rgba(255,255,255,.06); }
.btn-outline-white:hover { background: rgba(255,255,255,.14); }
.btn-small { min-height: 40px; padding: 9px 14px; font-size: 13px; }
.btn-large { min-height: 54px; padding: 14px 24px; font-size: 15px; border-radius: 14px; }
.btn-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 800; font-size: 14px; }
.text-link:hover { gap: 12px; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 850; margin-bottom: 15px; }
.eyebrow::before { content: ""; width: 23px; height: 2px; background: linear-gradient(90deg, var(--blue), var(--cyan)); border-radius: 4px; }
.eyebrow.light { color: #aee3ff; }
.eyebrow.light::before { background: #aee3ff; }
h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 { line-height: 1.15; letter-spacing: -.035em; }
h1 { font-size: clamp(42px, 5vw, 68px); font-weight: 760; }
h2 { font-size: clamp(34px, 4vw, 48px); font-weight: 740; }
h3 { font-size: 20px; font-weight: 740; }
p { color: var(--muted); }
.section-heading { margin-bottom: 46px; max-width: 760px; }
.section-heading.centered { margin-inline: auto; }
.section-heading p { font-size: 18px; max-width: 690px; margin: 0 auto; }
.section-intro h2 { margin-bottom: 20px; }
.section-intro p { font-size: 18px; }

.hero { min-height: 820px; padding-top: calc(var(--header-h) + 95px); position: relative; overflow: hidden; background: radial-gradient(circle at 70% 30%, #eef7ff 0, transparent 35%), linear-gradient(180deg,#fff 0%,#f8fbff 100%); }
.hero::before { content: none; display: none; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 60px; position: relative; z-index: 2; }
.hero-copy h1 { max-width: 720px; margin-bottom: 24px; color: var(--midnight-2); }
.hero-copy h1 span { background: linear-gradient(100deg, var(--blue-deep), var(--blue-electric), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { font-size: 19px; max-width: 650px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.hero-trust { margin-top: 25px; display: flex; align-items: flex-start; gap: 9px; color: #617087; font-size: 13px; max-width: 610px; }
.hero-trust .icon { color: var(--success); margin-top: 3px; }
.hero-visual { position: relative; min-height: 530px; display: flex; align-items: center; justify-content: center; }
.symbol-watermark { position: absolute; width: 500px; opacity: .055; filter: blur(.2px); transform: rotate(-7deg); right: -120px; top: 0; }
.dashboard-shell { width: 610px; max-width: 100%; background: white; border: 1px solid #dfeafa; border-radius: 24px; box-shadow: 0 35px 90px rgba(1,32,77,.2); overflow: hidden; transform: perspective(1200px) rotateY(-5deg) rotateX(2deg); }
.dashboard-topbar { height: 58px; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); padding: 0 16px; }
.dash-brand { display:flex; align-items:center; gap:7px; font-size:11px; font-weight:850; color:var(--midnight); }
.dash-brand img { width:23px; }
.dash-search { width: 150px; height: 24px; border-radius: 8px; background: var(--surface); margin-left:auto; }
.dash-user { display:flex; align-items:center; gap:6px; }
.dash-user span { width:26px; height:26px; border-radius:50%; background:linear-gradient(135deg,var(--blue),var(--cyan)); }
.dash-user i { width:35px; height:5px; border-radius:5px; background:#d8e2ee; }
.dashboard-body { min-height: 355px; display:flex; background:#f6f9fd; }
.dash-sidebar { width:52px; background:var(--midnight); padding:20px 13px; display:flex; flex-direction:column; gap:17px; }
.dash-sidebar span { width:25px; height:6px; border-radius:6px; background:rgba(255,255,255,.2); }
.dash-sidebar span.is-active { height:25px; background:linear-gradient(135deg,var(--blue),var(--cyan)); border-radius:8px; }
.dash-content { flex:1; padding:22px; }
.dash-heading { display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.dash-heading div { display:flex; flex-direction:column; }
.dash-heading small { font-size:8px; color:#91a1b6; }
.dash-heading strong { font-size:15px; }
.dash-heading button { border:1px solid var(--line); background:white; border-radius:7px; font-size:9px; padding:5px 9px; }
.dash-cards { display:grid; grid-template-columns:repeat(4,1fr); gap:9px; }
.dash-cards > div { background:white; border:1px solid #e6eef8; border-radius:12px; padding:12px; min-height:83px; display:flex; flex-direction:column; }
.dash-cards b { font-size:17px; color:var(--midnight); }
.dash-cards span { font-size:8px; color:#7f8da0; margin:2px 0 auto; }
.dash-cards i { font-style:normal; font-size:7px; color:var(--blue); }
.dash-main-row { display:grid; grid-template-columns:1.55fr .8fr; gap:10px; margin-top:10px; }
.dash-chart-card,.dash-activity-card { background:white; border:1px solid #e6eef8; border-radius:12px; padding:13px; min-height:142px; }
.mini-card-head { display:flex; align-items:center; justify-content:space-between; font-size:8px; }
.mini-card-head span { color:#94a0b1; }
.chart-bars { height:92px; display:flex; align-items:flex-end; gap:8px; padding-top:10px; border-bottom:1px solid #eaf0f7; }
.chart-bars span { flex:1; height:var(--h); border-radius:4px 4px 0 0; background:linear-gradient(to top,var(--blue-deep),var(--cyan)); opacity:.85; }
.dash-activity-card ul { list-style:none; padding:10px 0 0; margin:0; display:grid; gap:10px; }
.dash-activity-card li { display:flex; align-items:center; gap:7px; }
.dash-activity-card li i { width:18px; height:18px; border-radius:7px; background:#e4f1ff; }
.dash-activity-card li span { flex:1; height:5px; background:#e8eef6; border-radius:5px; }
.floating-metric { position:absolute; display:flex; align-items:center; gap:10px; padding:12px 15px; background:rgba(255,255,255,.94); border:1px solid rgba(222,234,247,.9); border-radius:15px; box-shadow:var(--shadow-md); backdrop-filter:blur(12px); }
.floating-metric > span { width:37px; height:37px; border-radius:11px; display:grid; place-items:center; background:#eaf4ff; color:var(--blue); }
.floating-metric div { display:flex; flex-direction:column; }
.floating-metric b { font-size:14px; }
.floating-metric small { color:#77869a; font-size:9px; }
.metric-one { top:65px; right:-10px; }
.metric-two { bottom:40px; left:-5px; }
.hero-glow { position:absolute; border-radius:50%; filter:blur(35px); opacity:.22; }
.hero-glow-one { width:300px; height:300px; background:#64c8ff; top:70px; right:5%; }
.hero-glow-two { width:220px; height:220px; background:#1e6dff; bottom:0; left:-80px; opacity:.1; }

.module-strip { background: var(--midnight); color:white; padding:25px 0; }
.module-strip .container { display:flex; align-items:center; gap:38px; }
.module-strip p { color:white; font-size:13px; font-weight:800; margin:0; white-space:nowrap; }
.module-list { display:flex; align-items:center; justify-content:space-between; gap:25px; flex:1; }
.module-list span { display:flex; align-items:center; gap:7px; color:#bdcae0; font-size:12px; font-weight:650; }
.module-list .icon { color:#54c6ff; }
.two-col { display:grid; grid-template-columns:.8fr 1.2fr; gap:75px; align-items:center; }
.align-start { align-items:start; }
.comparison-card { display:grid; grid-template-columns:1fr 48px 1fr; align-items:stretch; background:white; border:1px solid var(--line); border-radius:var(--radius-lg); box-shadow:var(--shadow-md); padding:22px; }
.comparison-side { padding:20px; }
.comparison-side > span { display:inline-block; margin-bottom:14px; font-size:12px; font-weight:850; text-transform:uppercase; letter-spacing:.1em; }
.comparison-side.before > span { color:#9b6870; }
.comparison-side.after > span { color:var(--blue); }
.comparison-side ul { list-style:none; padding:0; margin:0; display:grid; gap:14px; }
.comparison-side li { position:relative; padding-left:22px; color:#526178; font-size:14px; }
.comparison-side li::before { content:""; width:8px; height:8px; border-radius:50%; position:absolute; left:0; top:.55em; background:#c5cfdb; }
.comparison-side.after li::before { background:var(--blue); box-shadow:0 0 0 4px #eaf4ff; }
.comparison-divider { display:flex; align-items:center; justify-content:center; position:relative; }
.comparison-divider::before { content:""; position:absolute; width:1px; height:100%; background:var(--line); }
.comparison-divider img { width:34px; z-index:1; background:white; border-radius:50%; padding:3px; }
.features-section { background:linear-gradient(180deg,#f7faff 0%,#fff 100%); }
.feature-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.feature-card { background:white; border:1px solid var(--line); border-radius:20px; padding:27px 24px; min-height:270px; transition:.28s ease; }
.feature-card:hover { transform:translateY(-7px); border-color:#b8d9ff; box-shadow:var(--shadow-md); }
.feature-icon { width:52px; height:52px; border-radius:15px; display:grid; place-items:center; background:linear-gradient(145deg,#e8f4ff,#f7fbff); color:var(--blue); margin-bottom:26px; }
.feature-icon .icon { width:24px; height:24px; }
.feature-card h3 { font-size:18px; margin-bottom:12px; }
.feature-card p { font-size:14px; margin:0; }
.centered-action { text-align:center; margin-top:36px; }

.portal-showcase { position:relative; overflow:hidden; background:linear-gradient(135deg,#011a40 0%,#013886 50%,#006df0 100%); color:white; }
.portal-showcase::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 15% 20%,rgba(0,177,255,.28),transparent 27%),radial-gradient(circle at 85% 75%,rgba(0,211,255,.2),transparent 28%); }
.portal-grid { display:grid; grid-template-columns:1.08fr .92fr; gap:80px; align-items:center; position:relative; z-index:2; }
.portal-copy h2,.portal-copy p { color:white; }
.portal-copy p { color:#c8daf4; font-size:17px; }
.check-list { list-style:none; margin:24px 0 30px; padding:0; display:grid; gap:13px; }
.check-list li { display:flex; align-items:center; gap:10px; color:#45556c; font-weight:650; font-size:14px; }
.check-list .icon { color:var(--success); }
.light-list li { color:#dceaff; }
.light-list .icon { color:#75d5ff; }
.portal-mockup { position:relative; min-height:520px; display:flex; align-items:center; }
.device { background:white; border:7px solid #0c2243; box-shadow:0 35px 70px rgba(0,0,0,.32); }
.device-desktop { width:560px; border-radius:20px; overflow:hidden; transform:rotate(-2deg); }
.device-top { height:30px; background:#f4f6f9; display:flex; gap:5px; align-items:center; padding-left:12px; }
.device-top span { width:6px; height:6px; border-radius:50%; background:#b8c3d0; }
.portal-ui { height:330px; display:flex; background:#f5f8fc; }
.portal-ui aside { width:63px; padding:15px 13px; background:var(--midnight); display:flex; flex-direction:column; align-items:center; gap:18px; }
.portal-ui aside img { width:28px; }
.portal-ui aside span { width:25px; height:6px; border-radius:5px; background:rgba(255,255,255,.21); }
.portal-content { flex:1; padding:22px; }
.portal-welcome { height:80px; border-radius:15px; background:linear-gradient(135deg,var(--blue-deep),var(--cyan)); color:white; padding:17px; display:flex; flex-direction:column; }
.portal-welcome small { font-size:8px; opacity:.8; }
.portal-welcome b { font-size:15px; margin-top:4px; }
.portal-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:9px; margin-top:10px; }
.portal-stats span { background:white; border:1px solid #e2ebf5; border-radius:10px; padding:12px; display:flex; flex-direction:column; }
.portal-stats b { color:var(--midnight); font-size:15px; }
.portal-stats small { color:#8996a8; font-size:7px; }
.portal-panel { background:white; border-radius:10px; margin-top:10px; padding:13px; display:grid; gap:8px; }
.portal-panel div { height:7px; border-radius:6px; background:#e7edf5; }
.portal-panel div:nth-child(1){width:90%}.portal-panel div:nth-child(2){width:70%}.portal-panel div:nth-child(3){width:82%}
.device-phone { position:absolute; right:-10px; bottom:7px; width:135px; height:270px; border-radius:24px; display:flex; flex-direction:column; align-items:center; padding:38px 16px 15px; color:var(--midnight); }
.phone-notch { position:absolute; top:7px; width:48px; height:10px; border-radius:0 0 8px 8px; background:#0c2243; }
.device-phone > img { width:35px; margin-bottom:20px; }
.device-phone b { font-size:28px; color:var(--blue); }
.device-phone small { font-size:8px; color:#8b98aa; margin-bottom:25px; }
.device-phone > span { width:100%; height:8px; background:#e8eef6; border-radius:8px; margin:7px 0; }
.device-phone > span:nth-last-child(2){width:76%}.device-phone > span:nth-last-child(1){width:88%}

.journey-section { overflow:hidden; }
.journey-line { display:grid; grid-template-columns:repeat(8,1fr); position:relative; margin-top:55px; }
.journey-line::before { content:""; position:absolute; left:6%; right:6%; top:22px; height:2px; background:linear-gradient(90deg,var(--blue-deep),var(--cyan)); opacity:.28; }
.journey-step { text-align:center; position:relative; padding:0 7px; }
.journey-step span { width:45px; height:45px; border-radius:14px; display:grid; place-items:center; margin:0 auto 16px; background:white; border:1px solid #cfe3fa; color:var(--blue); font-size:12px; font-weight:850; box-shadow:var(--shadow-sm); position:relative; z-index:1; }
.journey-step p { font-size:12px; line-height:1.4; color:#526178; margin:0; }
.audience-section { background:#f7faff; }
.audience-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.audience-card { background:white; border:1px solid var(--line); border-radius:22px; padding:28px; transition:.25s ease; }
.audience-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.audience-card > span { width:47px; height:47px; border-radius:14px; display:grid; place-items:center; color:var(--blue); background:#eaf4ff; margin-bottom:23px; }
.audience-card h3 { margin-bottom:11px; }
.audience-card p { font-size:14px; min-height:68px; }
.audience-card a { display:inline-flex; align-items:center; gap:8px; color:var(--blue); font-size:13px; font-weight:800; }
.customisation-grid { display:grid; grid-template-columns:1fr .9fr; gap:80px; align-items:center; }
.customisation-copy > p { font-size:17px; }
.custom-tags { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin-top:25px; }
.custom-tags span { display:flex; gap:7px; align-items:center; color:#45556c; font-size:13px; font-weight:650; }
.custom-tags .icon { color:var(--blue); }
.brand-config-card { border:1px solid var(--line); border-radius:26px; padding:24px; box-shadow:var(--shadow-md); background:linear-gradient(180deg,#fff,#f7faff); }
.config-logo { height:120px; border-radius:18px; background:white; border:1px solid #e8eef7; display:flex; align-items:center; justify-content:center; overflow:hidden; margin-bottom:10px; }
.config-logo img { width:180px; }
.config-row { min-height:62px; border-bottom:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; gap:15px; }
.config-row:last-child { border-bottom:0; }
.config-row > span { color:#657489; font-size:13px; }
.config-row b { font-size:12px; color:var(--midnight); }
.swatches { display:flex; gap:7px; }
.swatches i { width:24px; height:24px; border-radius:8px; background:var(--midnight); }
.swatches i:nth-child(2){background:var(--blue)}.swatches i:nth-child(3){background:var(--cyan)}
.toggle { width:39px; height:22px; border-radius:20px; background:#ccd6e1; position:relative; }
.toggle::after { content:""; position:absolute; width:16px; height:16px; left:3px; top:3px; border-radius:50%; background:white; box-shadow:0 2px 5px rgba(0,0,0,.15); }
.toggle.is-on { background:var(--blue); }
.toggle.is-on::after { left:20px; }
.security-section { background:linear-gradient(120deg,#001734,#012962 64%,#014aa9); color:white; position:relative; overflow:hidden; }
.security-symbol { position:absolute; width:450px; right:-70px; bottom:-150px; opacity:.045; }
.security-grid { display:grid; grid-template-columns:1fr 1fr; gap:90px; align-items:center; position:relative; z-index:1; }
.security-copy h2,.security-copy p { color:white; }
.security-copy p { color:#bfd2ed; font-size:17px; }
.security-points { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.security-points > div { padding:20px; border:1px solid rgba(255,255,255,.14); border-radius:18px; background:rgba(255,255,255,.06); display:flex; gap:12px; backdrop-filter:blur(8px); }
.security-points > div > .icon { color:#66d3ff; width:23px; height:23px; }
.security-points span { display:flex; flex-direction:column; }
.security-points b { font-size:14px; }
.security-points small { color:#b8cbe5; font-size:11px; margin-top:4px; }
.implementation-steps { display:grid; grid-template-columns:repeat(6,1fr); gap:14px; }
.implementation-step { padding:25px 18px; border:1px solid var(--line); border-radius:18px; text-align:center; background:white; }
.implementation-step span { width:37px; height:37px; border-radius:11px; display:grid; place-items:center; background:#e9f4ff; color:var(--blue); font-weight:850; font-size:12px; margin:0 auto 15px; }
.implementation-step p { font-size:12px; font-weight:700; color:#4f5e72; margin:0; }
.final-cta { position:relative; overflow:hidden; padding:100px 0; background:linear-gradient(125deg,#001a3d,#014dc2 55%,#008de9); color:white; }
.final-cta-orb { position:absolute; border-radius:50%; background:rgba(73,205,255,.18); filter:blur(4px); }
.final-cta-orb.one { width:280px; height:280px; top:-110px; left:-40px; }
.final-cta-orb.two { width:360px; height:360px; bottom:-230px; right:0; }
.final-cta-inner { text-align:center; max-width:820px; position:relative; z-index:1; }
.final-cta-inner > img { width:95px; margin:0 auto 20px; opacity:.85; }
.final-cta-inner h2,.final-cta-inner p { color:white; }
.final-cta-inner p { color:#cee0f8; font-size:18px; max-width:720px; margin:0 auto 30px; }
.final-cta-inner > div { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }
.small-cta { padding:85px 0; }
.small-cta .final-cta-inner > img { display:none; }

.site-footer { background:#00132f; color:white; padding:80px 0 24px; position:relative; overflow:hidden; }
.footer-orbit { position:absolute; width:460px; height:460px; border:1px solid rgba(91,193,255,.08); border-radius:50%; right:-210px; top:-110px; box-shadow:0 0 0 70px rgba(91,193,255,.025),0 0 0 140px rgba(91,193,255,.018); }
.footer-grid { display:grid; grid-template-columns:1.5fr .75fr .9fr 1fr; gap:55px; position:relative; z-index:1; }
.footer-brand img { width:auto; max-width:100%; height:145px; max-height:145px; object-fit:contain; margin-bottom:18px; }
.footer-brand p { color:#9fb3cf; max-width:330px; font-size:14px; }
.footer-badge { display:inline-block; border:1px solid rgba(255,255,255,.13); background:rgba(255,255,255,.05); padding:8px 12px; border-radius:10px; color:#b8cbe5; font-size:11px; font-weight:750; }
.footer-grid h3 { font-size:13px; letter-spacing:.08em; text-transform:uppercase; color:#f2f7ff; margin-bottom:20px; }
.footer-grid > div:not(.footer-brand) { display:flex; flex-direction:column; gap:11px; }
.footer-grid a,.footer-grid span { color:#95a9c5; font-size:13px; }
.footer-grid a:hover { color:#69d0ff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.09); margin-top:55px; padding-top:22px; display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:20px; }
.footer-bottom p { color:#7790b1; margin:0; font-size:11px; }
.footer-bottom p:last-child { text-align:right; }
.footer-bottom > div { display:flex; gap:18px; }
.footer-bottom a { color:#879bb8; font-size:11px; }
.cookie-banner { position:fixed; z-index:1500; left:24px; right:24px; bottom:22px; max-width:760px; margin:auto; background:white; border:1px solid var(--line); border-radius:18px; box-shadow:var(--shadow-lg); padding:17px 18px; display:flex; align-items:center; justify-content:space-between; gap:20px; }
.cookie-banner[hidden] { display:none; }
.cookie-banner strong { font-size:14px; }
.cookie-banner p { margin:2px 0 0; font-size:12px; }
.cookie-actions { display:flex; gap:8px; flex-shrink:0; }
.whatsapp-float { position:fixed; right:22px; bottom:22px; z-index:900; width:50px; height:50px; border-radius:16px; display:grid; place-items:center; background:linear-gradient(135deg,#00a865,#06cb7c); color:white; box-shadow:0 12px 28px rgba(0,168,101,.3); font-size:11px; font-weight:900; }

.inner-hero { min-height:650px; padding:calc(var(--header-h) + 90px) 0 90px; background:radial-gradient(circle at 75% 25%,#dceeff 0,transparent 31%),linear-gradient(180deg,#fff,#f4f8fd); overflow:hidden; }
.inner-hero-grid { display:grid; grid-template-columns:1fr .8fr; gap:80px; align-items:center; }
.inner-hero h1 { max-width:720px; }
.inner-hero p { font-size:19px; max-width:700px; }
.inner-visual { display:flex; justify-content:center; }
.inner-visual img { width:460px; border-radius:36px; box-shadow:var(--shadow-lg); }
.compact-hero { min-height:470px; padding-bottom:75px; display:flex; align-items:center; }
.compact-hero .container { max-width:900px; }
.compact-hero h1 { font-size:clamp(40px,5vw,62px); }
.compact-hero p { max-width:780px; margin:0 auto; }
.sticky-intro { position:sticky; top:130px; }
.content-stack { display:grid; gap:16px; }
.content-card { position:relative; padding:28px 30px 28px 83px; border:1px solid var(--line); border-radius:20px; background:white; }
.content-card > span { position:absolute; left:25px; top:28px; width:38px; height:38px; border-radius:12px; display:grid; place-items:center; background:#e9f4ff; color:var(--blue); font-size:11px; font-weight:850; }
.content-card h3 { margin-bottom:8px; }
.content-card p { margin:0; font-size:14px; }
.platform-map { min-height:580px; max-width:880px; margin:20px auto 0; position:relative; }
.platform-map::before { content:""; position:absolute; width:410px; height:410px; border:1px dashed #9bc8f7; border-radius:50%; left:50%; top:50%; transform:translate(-50%,-50%); }
.platform-map::after { content:""; position:absolute; width:260px; height:260px; border:1px solid #d7e9fa; border-radius:50%; left:50%; top:50%; transform:translate(-50%,-50%); }
.map-center { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:175px; height:175px; border-radius:50%; background:white; box-shadow:var(--shadow-md); z-index:2; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; border:1px solid #dbeafa; }
.map-center img { width:75px; }
.map-center b { font-size:12px; }
.map-node { position:absolute; width:130px; height:86px; border-radius:18px; background:white; border:1px solid var(--line); box-shadow:var(--shadow-sm); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; color:var(--blue); z-index:3; }
.map-node span { color:var(--text); font-size:12px; font-weight:750; }
.node-1{left:calc(50% - 65px);top:0}.node-2{right:55px;top:105px}.node-3{right:25px;bottom:105px}.node-4{left:calc(50% - 65px);bottom:0}.node-5{left:25px;bottom:105px}.node-6{left:55px;top:105px}
.benefit-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.benefit-card { padding:29px; border:1px solid var(--line); border-radius:20px; }
.benefit-card > .icon { color:var(--blue); width:27px; height:27px; margin-bottom:20px; }
.benefit-card p { margin:0; font-size:14px; }
.implementation-band { background:linear-gradient(130deg,#00193b,#0054c8); color:white; }
.implementation-band-grid { display:grid; grid-template-columns:1.15fr .85fr; gap:80px; align-items:center; }
.implementation-band h2,.implementation-band p { color:white; }
.implementation-band p { color:#c1d3ec; }
.implementation-band-list { display:grid; gap:13px; }
.implementation-band-list span { display:flex; align-items:center; gap:10px; padding:15px 18px; border:1px solid rgba(255,255,255,.12); border-radius:14px; background:rgba(255,255,255,.05); font-size:14px; }
.implementation-band-list .icon { color:#70d4ff; }

.feature-catalogue { background:#f8fbff; }
.catalogue-layout { display:grid; grid-template-columns:245px 1fr; gap:65px; align-items:start; }
.catalogue-nav { position:sticky; top:112px; padding:17px; border:1px solid var(--line); border-radius:18px; background:white; display:flex; flex-direction:column; gap:4px; }
.catalogue-nav > a:not(.btn) { padding:11px 12px; border-radius:10px; font-size:13px; font-weight:700; color:#55657b; }
.catalogue-nav > a:not(.btn):hover { background:#eef6ff; color:var(--blue); }
.catalogue-nav .btn { margin-top:10px; }
.catalogue-content { display:grid; gap:75px; }
.catalogue-group { scroll-margin-top:120px; }
.catalogue-number { color:var(--blue); font-size:12px; font-weight:850; letter-spacing:.13em; }
.catalogue-group h2 { font-size:36px; margin:7px 0 25px; }
.catalogue-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.catalogue-grid article { background:white; border:1px solid var(--line); border-radius:18px; padding:24px; }
.catalogue-grid article > div { width:44px; height:44px; display:grid; place-items:center; border-radius:13px; background:#eaf4ff; color:var(--blue); margin-bottom:19px; }
.catalogue-grid h3 { font-size:17px; margin-bottom:9px; }
.catalogue-grid p { margin:0; font-size:13px; }

.portal-page-hero { min-height:760px; padding:calc(var(--header-h) + 85px) 0 90px; color:white; background:radial-gradient(circle at 70% 20%,rgba(42,190,255,.28),transparent 28%),linear-gradient(125deg,#001531,#003e91 58%,#007ef5); overflow:hidden; }
.portal-page-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:65px; align-items:center; }
.portal-page-hero h1,.portal-page-hero p { color:white; }
.portal-page-hero p { color:#cae0f8; font-size:18px; }
.member-portal-screen { transform:perspective(1200px) rotateY(-5deg); }
.portal-browser { background:white; border-radius:22px; border:7px solid #092043; overflow:hidden; box-shadow:0 35px 90px rgba(0,0,0,.35); }
.browser-bar { height:37px; background:#edf1f6; display:flex; align-items:center; gap:6px; padding:0 12px; }
.browser-bar i { width:7px; height:7px; border-radius:50%; background:#aeb9c7; }
.browser-bar span { margin:auto; width:190px; height:18px; border-radius:7px; background:white; color:#91a0b2; font-size:7px; display:grid; place-items:center; }
.browser-body { min-height:390px; display:flex; background:#f5f8fc; }
.browser-body aside { width:72px; background:var(--midnight); padding:18px; display:flex; flex-direction:column; align-items:center; gap:19px; }
.browser-body aside img { width:34px; }
.browser-body aside span { width:28px; height:7px; border-radius:7px; background:rgba(255,255,255,.18); }
.browser-content { flex:1; padding:24px; color:var(--text); }
.browser-title { display:flex; justify-content:space-between; align-items:center; }
.browser-title > div:first-child { display:flex; flex-direction:column; }
.browser-title small { color:#8b9aad; font-size:8px; }
.browser-title b { font-size:16px; }
.avatar { width:35px; height:35px; border-radius:50%; background:linear-gradient(135deg,var(--blue),var(--cyan)); }
.member-hero-card { margin-top:18px; height:92px; border-radius:15px; background:linear-gradient(135deg,var(--blue-deep),var(--cyan)); color:white; padding:17px; position:relative; display:flex; flex-direction:column; }
.member-hero-card span { font-size:8px; opacity:.8; }
.member-hero-card b { font-size:16px; margin-top:4px; }
.member-hero-card i { position:absolute; right:20px; top:24px; font-style:normal; font-size:28px; font-weight:850; }
.member-stat-row { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:11px; }
.member-stat-row span { padding:14px; background:white; border:1px solid #e3ebf5; border-radius:11px; display:flex; flex-direction:column; }
.member-stat-row b { font-size:15px; }
.member-stat-row small { font-size:7px; color:#8996a8; }
.member-table { background:white; border:1px solid #e3ebf5; border-radius:12px; padding:15px; margin-top:11px; display:grid; gap:9px; }
.member-table span { height:7px; background:#e8eef5; border-radius:7px; }
.member-table span:nth-child(2){width:83%}.member-table span:nth-child(3){width:92%}.member-table span:nth-child(4){width:70%}
.portal-feature-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.portal-feature-card { padding:25px; border:1px solid var(--line); border-radius:19px; background:white; }
.portal-feature-card > span { width:45px; height:45px; border-radius:13px; display:grid; place-items:center; background:#e9f4ff; color:var(--blue); margin-bottom:20px; }
.portal-feature-card h3 { font-size:17px; margin-bottom:8px; }
.portal-feature-card p { font-size:13px; margin:0; }
.split-benefits { display:grid; grid-template-columns:1fr 1fr; gap:90px; }

.segment-list { display:grid; gap:22px; }
.segment-block { display:grid; grid-template-columns:70px 1.25fr .9fr; gap:30px; align-items:center; padding:35px; border:1px solid var(--line); border-radius:24px; background:white; scroll-margin-top:110px; }
.segment-number { width:54px; height:54px; border-radius:16px; display:grid; place-items:center; color:var(--blue); background:#e9f4ff; font-size:13px; font-weight:850; }
.segment-icon { color:var(--blue); display:inline-flex; margin-bottom:12px; }
.segment-main h2 { font-size:30px; margin-bottom:11px; }
.segment-main p { font-size:14px; }
.segment-features { display:grid; gap:10px; padding-left:25px; border-left:1px solid var(--line); }
.segment-features span { display:flex; align-items:center; gap:8px; font-size:13px; color:#536278; }
.segment-features .icon { color:var(--success); }
.institution-profile-card { border:1px solid var(--line); border-radius:22px; padding:27px; display:flex; align-items:center; gap:22px; box-shadow:var(--shadow-md); background:white; }
.institution-profile-card img { width:100px; }
.institution-profile-card div { display:flex; flex-direction:column; }
.institution-profile-card small { color:#8695a8; font-size:11px; }
.institution-profile-card b { font-size:20px; margin:4px 0; }
.institution-profile-card span { color:#68778b; font-size:12px; }

.form-page-hero { min-height:100vh; padding:calc(var(--header-h) + 70px) 0 90px; background:radial-gradient(circle at 16% 30%,rgba(0,157,255,.24),transparent 28%),linear-gradient(125deg,#001632,#00377e 54%,#0069d9); }
.form-page-grid { display:grid; grid-template-columns:.78fr 1.22fr; gap:65px; align-items:start; }
.form-intro { position:sticky; top:135px; padding-top:35px; }
.form-intro h1,.form-intro p { color:white; }
.form-intro p { color:#c6daf2; font-size:17px; }
.demo-benefits { display:grid; gap:12px; margin:30px 0; }
.demo-benefits span { color:#e2edfb; display:flex; align-items:center; gap:10px; font-size:14px; }
.demo-benefits .icon { color:#6cd5ff; }
.demo-contact { padding:18px; border:1px solid rgba(255,255,255,.14); background:rgba(255,255,255,.06); border-radius:15px; display:flex; flex-direction:column; align-items:flex-start; }
.demo-contact small { color:#a9bfd9; }
.demo-contact a { color:white; font-weight:800; display:flex; align-items:center; gap:8px; }
.form-card { background:white; border:1px solid rgba(255,255,255,.2); border-radius:26px; padding:34px; box-shadow:0 40px 90px rgba(0,0,0,.28); }
.form-card h2 { font-size:30px; }
.form-card-head { display:flex; align-items:center; gap:13px; margin-bottom:25px; }
.form-card-head img { width:45px; }
.form-card-head div { display:flex; flex-direction:column; }
.form-card-head span { font-weight:850; font-size:18px; }
.form-card-head small { color:#78879b; font-size:11px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:17px; }
.form-grid label { display:flex; flex-direction:column; gap:7px; }
.form-grid label > span { font-size:12px; font-weight:750; color:#435269; }
.form-grid .full { grid-column:1/-1; }
input,select,textarea { width:100%; border:1px solid #cfdbE9; border-radius:11px; background:#fbfdff; padding:12px 13px; color:var(--text); outline:none; transition:.2s ease; }
input:focus,select:focus,textarea:focus { border-color:var(--blue); box-shadow:0 0 0 4px rgba(0,113,248,.1); background:white; }
textarea { resize:vertical; min-height:120px; }
label.checkbox { flex-direction:row; align-items:flex-start; gap:10px; }
label.checkbox input { width:18px; height:18px; margin-top:2px; }
label.checkbox span { font-weight:500; color:#66758a; line-height:1.5; }
.honeypot { position:absolute!important; left:-10000px!important; opacity:0!important; }
.form-alert { padding:12px 14px; border-radius:11px; font-size:13px; margin-bottom:17px; }
.form-alert.error { color:#9c2630; background:#fff0f1; border:1px solid #ffd0d4; }
.form-error { color:var(--danger); font-size:11px; margin-top:2px; }
.is-invalid { border-color:var(--danger)!important; }
.contact-section { background:#fff; }
.contact-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:55px; align-items:start; }
.contact-details { display:grid; gap:13px; }
.contact-details > article { display:flex; align-items:center; gap:15px; padding:19px; background:white; border:1px solid var(--line); border-radius:16px; }
.contact-details > article > .icon { width:24px; height:24px; color:var(--blue); }
.contact-details article div { display:flex; flex-direction:column; }
.contact-details small { color:#8795a8; font-size:10px; text-transform:uppercase; letter-spacing:.08em; }
.contact-details a,.contact-details span { font-weight:700; font-size:13px; }
.contact-direct { padding:26px; background:var(--midnight); border-radius:19px; margin-top:10px; }
.contact-direct h2,.contact-direct p { color:white; }
.contact-direct h2 { font-size:25px; }
.contact-direct p { color:#b8cbe3; font-size:13px; }

.legal-hero { padding:calc(var(--header-h) + 80px) 0 70px; background:linear-gradient(180deg,#fff,#f3f8fd); }
.legal-hero h1 { font-size:48px; }
.legal-hero p { font-size:17px; }
.legal-content { padding:75px 0 110px; }
.legal-grid { display:grid; grid-template-columns:220px 1fr; gap:65px; align-items:start; }
.legal-grid aside { position:sticky; top:120px; display:flex; flex-direction:column; gap:7px; padding:16px; border:1px solid var(--line); border-radius:16px; }
.legal-grid aside a { padding:8px 10px; font-size:12px; color:#5b6a7f; border-radius:8px; }
.legal-grid aside a:hover { background:#eef6ff; color:var(--blue); }
.legal-content article h2,.legal-article h2 { font-size:27px; margin-top:36px; scroll-margin-top:120px; }
.legal-content article h2:first-child,.legal-article h2:first-child { margin-top:0; }
.legal-content article p,.legal-article p { font-size:15px; }
.legal-content a { color:var(--blue); }
.success-page,.not-found { min-height:760px; padding:calc(var(--header-h) + 80px) 20px 100px; display:grid; place-items:center; background:linear-gradient(180deg,#fff,#f2f7fd); }
.success-card,.not-found-card { max-width:730px; text-align:center; padding:55px; border:1px solid var(--line); border-radius:28px; background:white; box-shadow:var(--shadow-md); }
.success-icon { width:72px; height:72px; border-radius:22px; display:grid; place-items:center; background:#e6f8f2; color:var(--success); margin:0 auto 22px; }
.success-icon .icon { width:34px; height:34px; }
.success-card h1,.not-found-card h1 { font-size:42px; }
.success-card > div:last-child { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; margin-top:27px; }
.not-found-card img { width:115px; margin:0 auto 15px; }
.not-found-card > span { color:var(--blue); font-size:13px; font-weight:900; letter-spacing:.2em; }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .65s ease,transform .65s ease; transition-delay:var(--delay,0ms); }
.reveal.reveal-delay { --delay:120ms; }
.reveal.is-visible { opacity:1; transform:translateY(0); }

@media (max-width: 1100px) {
    :root { --container: 960px; }
    .desktop-nav { gap:17px; }
    .desktop-nav a { font-size:12px; }
    .header-demo { display:none; }
    .hero-grid { grid-template-columns:1fr 1fr; gap:30px; }
    .feature-grid,.portal-feature-grid { grid-template-columns:repeat(2,1fr); }
    .implementation-steps { grid-template-columns:repeat(3,1fr); }
    .footer-grid { grid-template-columns:1.4fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column:2/4; display:grid; grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 920px) {
    :root { --header-h: 74px; }
    .desktop-nav,.login-menu { display:none; }
    .mobile-toggle { display:flex; }
    .mobile-panel.is-open { display:block; }
    .brand { width:78px; height:62px; }
    .brand img { width:auto; height:56px; }
    .hero { min-height:auto; padding-top:calc(var(--header-h) + 70px); }
    .hero-grid,.inner-hero-grid,.portal-grid,.portal-page-grid,.form-page-grid,.contact-grid,.customisation-grid,.security-grid,.implementation-band-grid,.two-col { grid-template-columns:1fr; }
    .hero-copy { text-align:center; }
    .hero-copy h1,.hero-lead { margin-inline:auto; }
    .hero-actions { justify-content:center; }
    .hero-trust { justify-content:center; margin-inline:auto; }
    .hero-visual { min-height:500px; }
    .module-strip .container { flex-direction:column; align-items:flex-start; gap:15px; }
    .module-list { flex-wrap:wrap; justify-content:flex-start; }
    .two-col { gap:40px; }
    .comparison-card { max-width:720px; margin:auto; }
    .portal-grid { gap:45px; }
    .portal-copy { text-align:center; }
    .portal-copy .check-list { max-width:420px; margin-inline:auto; text-align:left; }
    .portal-mockup { justify-content:center; }
    .journey-line { grid-template-columns:repeat(4,1fr); row-gap:30px; }
    .journey-line::before { display:none; }
    .audience-grid,.benefit-grid { grid-template-columns:repeat(2,1fr); }
    .security-grid { gap:45px; }
    .footer-grid { grid-template-columns:repeat(2,1fr); }
    .footer-grid > div:last-child { grid-column:auto; display:flex; }
    .footer-bottom { grid-template-columns:1fr; text-align:center; }
    .footer-bottom p:last-child { text-align:center; }
    .footer-bottom > div { justify-content:center; flex-wrap:wrap; }
    .sticky-intro,.catalogue-nav,.form-intro { position:static; }
    .catalogue-layout { grid-template-columns:1fr; gap:35px; }
    .catalogue-nav { flex-direction:row; overflow:auto; align-items:center; }
    .catalogue-nav > a:not(.btn) { white-space:nowrap; }
    .catalogue-nav .btn { margin:0 0 0 auto; white-space:nowrap; }
    .portal-feature-grid { grid-template-columns:repeat(2,1fr); }
    .segment-block { grid-template-columns:60px 1fr; }
    .segment-features { grid-column:2; border-left:0; padding-left:0; grid-template-columns:repeat(2,1fr); }
    .form-page-hero { min-height:auto; }
    .form-intro { text-align:center; }
    .demo-benefits,.demo-contact { max-width:580px; margin-inline:auto; text-align:left; }
}

@media (max-width: 680px) {
    .container { width:min(calc(100% - 28px),var(--container)); }
    .section-pad { padding:78px 0; }
    .language-switch { display:none; }
    h1 { font-size:41px; }
    h2 { font-size:33px; }
    .hero { padding-bottom:75px; }
    .hero-lead { font-size:17px; }
    .hero-actions .btn { width:100%; }
    .hero-visual { min-height:350px; margin-top:15px; }
    .dashboard-shell { transform:none; border-radius:18px; }
    .dashboard-topbar { height:44px; }
    .dashboard-body { min-height:260px; }
    .dash-sidebar { width:39px; padding:14px 8px; }
    .dash-sidebar span { width:21px; }
    .dash-content { padding:13px; }
    .dash-cards { grid-template-columns:repeat(2,1fr); }
    .dash-cards > div:nth-child(n+3) { display:none; }
    .dash-main-row { grid-template-columns:1fr; }
    .dash-activity-card { display:none; }
    .metric-one { top:10px; right:-5px; }
    .metric-two { bottom:10px; left:-4px; }
    .floating-metric { padding:9px 10px; }
    .floating-metric > span { width:30px; height:30px; }
    .module-list { display:grid; grid-template-columns:repeat(2,1fr); width:100%; }
    .comparison-card { grid-template-columns:1fr; }
    .comparison-divider { height:40px; }
    .comparison-divider::before { width:100%; height:1px; }
    .feature-grid,.audience-grid,.benefit-grid,.portal-feature-grid,.catalogue-grid { grid-template-columns:1fr; }
    .feature-card { min-height:auto; }
    .portal-mockup { min-height:370px; }
    .device-desktop { width:100%; }
    .portal-ui { height:255px; }
    .portal-ui aside { width:45px; padding:12px 8px; }
    .portal-content { padding:12px; }
    .portal-welcome { height:65px; }
    .device-phone { width:100px; height:205px; right:-5px; padding-top:28px; }
    .device-phone > img { width:28px; margin-bottom:12px; }
    .device-phone b { font-size:20px; }
    .device-phone small { margin-bottom:12px; }
    .journey-line { grid-template-columns:repeat(2,1fr); }
    .custom-tags,.security-points,.split-benefits { grid-template-columns:1fr; }
    .implementation-steps { grid-template-columns:repeat(2,1fr); }
    .final-cta { padding:80px 0; }
    .footer-grid { grid-template-columns:1fr; gap:35px; }
    .footer-brand img { width:auto; height:125px; max-height:125px; }
    .footer-bottom > div { gap:10px; }
    .cookie-banner { left:12px; right:12px; bottom:12px; flex-direction:column; align-items:flex-start; }
    .cookie-actions { width:100%; }
    .cookie-actions .btn { flex:1; }
    .whatsapp-float { right:14px; bottom:14px; }
    .inner-hero { min-height:auto; padding-top:calc(var(--header-h) + 65px); }
    .inner-hero-grid { gap:35px; }
    .inner-visual img { width:340px; }
    .platform-map { min-height:650px; }
    .platform-map::before,.platform-map::after { display:none; }
    .map-center { top:50%; }
    .map-node { width:105px; height:74px; }
    .node-1{left:calc(50% - 52px);top:0}.node-2{right:0;top:105px}.node-3{right:0;bottom:105px}.node-4{left:calc(50% - 52px);bottom:0}.node-5{left:0;bottom:105px}.node-6{left:0;top:105px}
    .catalogue-nav .btn { display:none; }
    .catalogue-group h2 { font-size:31px; }
    .portal-page-hero { min-height:auto; }
    .member-portal-screen { transform:none; }
    .browser-body aside { width:48px; padding:12px 9px; }
    .browser-content { padding:13px; }
    .member-hero-card { height:74px; }
    .member-hero-card i { font-size:20px; }
    .segment-block { grid-template-columns:1fr; padding:25px; }
    .segment-number { width:44px; height:44px; }
    .segment-features { grid-column:auto; grid-template-columns:1fr; border-top:1px solid var(--line); padding-top:18px; }
    .form-card { padding:23px 18px; border-radius:21px; }
    .form-grid { grid-template-columns:1fr; }
    .form-grid .full { grid-column:auto; }
    .contact-grid { gap:30px; }
    .legal-grid { grid-template-columns:1fr; }
    .legal-grid aside { position:static; }
    .success-card,.not-found-card { padding:35px 20px; }
    .success-card h1,.not-found-card h1 { font-size:34px; }
}

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

/* =========================================================
   EventHub Manager Website v1.1.0 — navigation and motion
   ========================================================= */

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 28px;
    background:
        radial-gradient(circle at 50% 43%, rgba(0, 155, 254, .13), transparent 28%),
        linear-gradient(145deg, #ffffff 0%, #f2f7fd 58%, #eaf4ff 100%);
    opacity: 1;
    visibility: visible;
    transition: opacity .58s ease, visibility .58s ease;
}
.site-loader::before {
    content: none;
    display: none;
}
.site-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-stage { position: relative; width: 152px; height: 152px; display: grid; place-items: center; }
.loader-stage picture { position: relative; z-index: 3; display: block; }
.loader-stage img { width: 96px; height: 96px; object-fit: contain; filter: drop-shadow(0 18px 28px rgba(0, 102, 245, .22)); animation: loader-symbol-float 1.75s ease-in-out infinite; }
.loader-ring { position: absolute; inset: 10px; border-radius: 50%; border: 1px solid rgba(0, 113, 248, .18); }
.loader-ring::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; border-top: 2px solid var(--blue); border-right: 2px solid transparent; animation: loader-ring-spin 1.35s linear infinite; }
.loader-ring-two { inset: 0; opacity: .52; transform: rotate(180deg); }
.loader-ring-two::before { border-top-color: var(--cyan); animation-duration: 2.1s; animation-direction: reverse; }
.loader-copy { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; line-height: 1.25; }
.loader-copy strong { color: var(--midnight); font-size: 18px; letter-spacing: -.025em; }
.loader-copy span { margin-top: 7px; color: var(--muted); font-size: 11px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
@keyframes loader-symbol-float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-7px) scale(1.025); } }
@keyframes loader-ring-spin { to { transform: rotate(360deg); } }

.brand { position: relative; transition: transform .25s ease; }
.brand:hover { transform: translateY(-2px) scale(1.015); }
.brand-logo { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; transition: opacity .28s ease, transform .28s ease; }
.brand-logo-white { opacity: 0; transform: translateY(3px); }
.brand-logo-primary { opacity: 1; transform: translateY(0); }

.desktop-nav { gap: 22px; }
.desktop-nav .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color .22s ease, transform .22s ease;
}
.desktop-nav .nav-link .icon { width: 15px; height: 15px; opacity: .72; transition: opacity .22s ease, transform .22s ease, filter .22s ease; }
.desktop-nav .nav-link:hover { transform: translateY(-2px); }
.desktop-nav .nav-link:hover .icon,
.desktop-nav .nav-link.is-active .icon { opacity: 1; transform: scale(1.12); filter: drop-shadow(0 4px 8px rgba(0, 113, 248, .2)); }

.language-toggle {
    position: relative;
    width: 78px;
    height: 36px;
    padding: 3px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(244, 247, 251, .96);
    box-shadow: inset 0 1px 2px rgba(1, 32, 77, .04);
    isolation: isolate;
}
.language-toggle-thumb {
    position: absolute;
    z-index: -1;
    left: 3px;
    top: 3px;
    width: 34px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-electric));
    box-shadow: 0 6px 15px rgba(0, 113, 248, .25);
    transition: transform .3s cubic-bezier(.2,.8,.2,1), background .3s ease;
}
.language-toggle.is-en .language-toggle-thumb { transform: translateX(37px); }
.language-toggle a {
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #718096;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .04em;
    transition: color .25s ease, transform .25s ease;
}
.language-toggle a:hover { transform: scale(1.06); color: var(--blue); }
.language-toggle a.is-active { color: white; }
.header-contact .icon { width: 15px; height: 15px; }

.mobile-panel-inner > a:not(.btn) {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 11px;
    transition: background .22s ease, color .22s ease, padding-left .22s ease;
}
.mobile-panel-inner > a:not(.btn) .icon { color: var(--blue); }
.mobile-panel-inner > a:not(.btn):hover,
.mobile-panel-inner > a:not(.btn).is-active { padding-left: 12px; background: #eef6ff; color: var(--blue); }
.mobile-language-row { margin: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.mobile-language-row > span { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.portal-page .site-header:not(.is-scrolled) {
    background: linear-gradient(180deg, rgba(0, 19, 47, .52), rgba(0, 19, 47, .06));
    border-bottom: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
}
.portal-page .site-header:not(.is-scrolled) .brand-logo-primary { opacity: 0; transform: translateY(-3px); }
.portal-page .site-header:not(.is-scrolled) .brand-logo-white { opacity: 1; transform: translateY(0); }
.portal-page .site-header:not(.is-scrolled) .desktop-nav a { color: rgba(255,255,255,.79); }
.portal-page .site-header:not(.is-scrolled) .desktop-nav a:hover,
.portal-page .site-header:not(.is-scrolled) .desktop-nav a.is-active { color: white; }
.portal-page .site-header:not(.is-scrolled) .desktop-nav a::after { background: linear-gradient(90deg, #68d8ff, white); }
.portal-page .site-header:not(.is-scrolled) .language-toggle { border-color: rgba(255,255,255,.20); background: rgba(0,25,62,.32); }
.portal-page .site-header:not(.is-scrolled) .language-toggle a { color: rgba(255,255,255,.68); }
.portal-page .site-header:not(.is-scrolled) .language-toggle a.is-active { color: white; }
.portal-page .site-header:not(.is-scrolled) .header-contact { color: var(--midnight); background: white; box-shadow: 0 12px 28px rgba(0,0,0,.17); }
.portal-page .site-header:not(.is-scrolled) .header-contact::before { display: none; }
.portal-page .site-header:not(.is-scrolled) .mobile-toggle { color: white; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); }
.portal-page.menu-open .site-header { background: white; box-shadow: 0 8px 35px rgba(1,32,77,.08); }
.portal-page.menu-open .site-header .brand-logo-primary { opacity: 1; transform: none; }
.portal-page.menu-open .site-header .brand-logo-white { opacity: 0; }
.portal-page.menu-open .site-header .mobile-toggle { color: var(--midnight); background: var(--surface); border-color: transparent; }

.footer-grid h3 { display: flex; align-items: center; gap: 9px; }
.footer-grid h3 .icon { width: 16px; height: 16px; color: #57c8ff; }
.footer-badge { display: inline-flex; align-items: center; gap: 8px; }
.footer-badge .icon { width: 15px; height: 15px; color: #5ed0ff; }
.footer-badge span { color: #b8cbe5; font-size: 11px; font-weight: 750; }
.footer-link {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    transition: color .22s ease, transform .22s ease;
}
.footer-link .icon { width: 14px; height: 14px; margin-top: 3px; color: #4dbcf4; opacity: .82; transition: transform .22s ease, color .22s ease; }
a.footer-link:hover { transform: translateX(5px); }
a.footer-link:hover .icon { color: #8de2ff; transform: scale(1.12); }
.footer-address { cursor: default; }

.whatsapp-float {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: visible;
    transition: transform .24s ease, box-shadow .24s ease;
}
.whatsapp-float > .icon { position: relative; z-index: 2; width: 29px; height: 29px; }
.whatsapp-float:hover { transform: translateY(-5px) scale(1.04); box-shadow: 0 18px 38px rgba(0,168,101,.42); }
.whatsapp-pulse {
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: rgba(6,203,124,.35);
    animation: whatsapp-pulse 2s ease-out infinite;
}
.whatsapp-label {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translate(8px,-50%);
    padding: 7px 10px;
    border-radius: 9px;
    color: white;
    background: #063f2c;
    box-shadow: var(--shadow-sm);
    font-size: 11px;
    font-weight: 800;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.whatsapp-float:hover .whatsapp-label { opacity: 1; visibility: visible; transform: translate(0,-50%); }
@keyframes whatsapp-pulse { 0% { transform: scale(.92); opacity: .72; } 70%,100% { transform: scale(1.65); opacity: 0; } }

.feature-card,
.portal-feature-card,
.catalogue-grid article,
.content-card,
.audience-card,
.benefit-card,
.segment-block,
.contact-details article,
.form-card,
.institution-profile-card {
    transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, border-color .28s ease;
}
.portal-feature-card:hover,
.catalogue-grid article:hover,
.content-card:hover,
.audience-card:hover,
.benefit-card:hover,
.segment-block:hover,
.contact-details article:hover,
.institution-profile-card:hover {
    transform: translateY(-7px);
    border-color: #b8d9ff;
    box-shadow: 0 22px 56px rgba(1,32,77,.13);
}
.portal-feature-card:hover > span,
.catalogue-grid article:hover > div,
.content-card:hover > span,
.audience-card:hover > span,
.benefit-card:hover > span,
.segment-block:hover .segment-number {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 10px 24px rgba(0,113,248,.16);
}
.portal-feature-card > span,
.catalogue-grid article > div,
.content-card > span,
.audience-card > span,
.benefit-card > span,
.segment-number { transition: transform .28s ease, box-shadow .28s ease; }

@media (max-width: 1180px) {
    .desktop-nav { gap: 15px; }
    .desktop-nav .nav-link { gap: 5px; font-size: 11px; }
    .header-contact span { display: none; }
    .header-contact { width: 42px; padding-inline: 0; }
}

@media (max-width: 920px) {
    .header-actions > .language-toggle { display: flex; }
    .header-contact { display: none; }
    .mobile-panel { box-shadow: 0 28px 60px rgba(1,32,77,.12); }
    .portal-page .mobile-panel { background: rgba(255,255,255,.985); }
}

@media (max-width: 680px) {
    .header-actions > .language-toggle { display: none; }
    .loader-stage { width: 132px; height: 132px; }
    .loader-stage img { width: 82px; height: 82px; }
    .whatsapp-float { width: 54px; height: 54px; }
    .whatsapp-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .loader-stage img,
    .loader-ring::before,
    .whatsapp-pulse { animation: none !important; }
}

/* Small consistency corrections */
.language-toggle-thumb { z-index: 0; }
.language-toggle a { position: relative; z-index: 1; }
.footer-grid h3 span { color: #f2f7ff; font-size: 13px; }
@media (max-width: 1100px) {
    .footer-grid > div:last-child { display: flex; grid-column: 2 / 4; }
}
@media (max-width: 920px) {
    .footer-grid > div:last-child { grid-column: auto; }
}

/* =========================================================
   EventHub Manager Website v1.2.1 — interactive refinements
   ========================================================= */

/* The logo itself is now the only Home navigation control. */
.desktop-nav { margin-left: auto; }

/* Keep the complete vertical logo visible inside the customisation card. */
.config-logo { padding: 14px 20px; }
.config-logo img {
    width: auto;
    height: auto;
    max-width: 132px;
    max-height: 88px;
    object-fit: contain;
}

/* Integrated journey: flowing connector and tactile numbered steps. */
.journey-line::before {
    background: linear-gradient(90deg, var(--blue-deep), var(--cyan), var(--blue-deep));
    background-size: 220% 100%;
    animation: journey-flow 5.5s linear infinite;
}
.journey-step span {
    cursor: pointer;
    isolation: isolate;
    transition: color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease, background .25s ease;
}
.journey-step span::after {
    content: "";
    position: absolute;
    inset: -7px;
    z-index: -1;
    border: 1px solid rgba(0, 132, 253, .24);
    border-radius: 18px;
    opacity: 0;
    transform: scale(.76);
}
.journey-step:hover span,
.journey-step span:focus-visible {
    color: white;
    border-color: transparent;
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-electric), var(--cyan));
    box-shadow: 0 15px 32px rgba(0, 113, 248, .28);
    animation: journey-number-pop .62s cubic-bezier(.2,.85,.25,1);
    outline: none;
}
.journey-step:hover span::after,
.journey-step span:focus-visible::after { animation: journey-number-ring .72s ease-out; }
.journey-step:hover p,
.journey-step:focus-within p { color: var(--blue-deep); transform: translateY(2px); }
.journey-step p { transition: color .25s ease, transform .25s ease; }
@keyframes journey-flow { to { background-position: -220% 0; } }
@keyframes journey-number-pop {
    0% { transform: translateY(0) scale(1); }
    45% { transform: translateY(-8px) scale(1.13) rotate(-4deg); }
    72% { transform: translateY(-3px) scale(1.05) rotate(2deg); }
    100% { transform: translateY(-5px) scale(1.08); }
}
@keyframes journey-number-ring {
    0% { opacity: .75; transform: scale(.75); }
    100% { opacity: 0; transform: scale(1.42); }
}

/* Platform map: pulsing rings and clockwise orbiting modules. */
.platform-map {
    --orbit-radius: 245px;
    min-height: 620px;
    max-width: 760px;
    isolation: isolate;
}
.platform-map::before,
.platform-map::after {
    transform-origin: center;
    will-change: transform, opacity;
}
.platform-map::before { animation: map-ring-breathe 3.6s ease-in-out infinite; }
.platform-map::after { animation: map-ring-breathe 3.6s ease-in-out -1.8s infinite; }
.map-pulse-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    border: 1px solid rgba(0, 132, 253, .24);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: map-wave 3.2s ease-out infinite;
}
.map-pulse-ring-one { width: 260px; height: 260px; }
.map-pulse-ring-two { width: 410px; height: 410px; animation-delay: 1.6s; }
.map-center {
    appearance: none;
    font: inherit;
    padding: 0;
    cursor: pointer;
    overflow: visible;
    animation: map-center-breathe 2.8s ease-in-out infinite;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.map-center:hover,
.map-center:focus-visible {
    border-color: #9fd0ff;
    box-shadow: 0 24px 70px rgba(0, 113, 248, .2);
    outline: none;
}
.map-center-glow {
    position: absolute;
    inset: -10px;
    z-index: -1;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(0, 155, 254, .24), rgba(0, 113, 248, 0) 68%);
    opacity: .7;
    transform: scale(.94);
    animation: map-center-glow 2.8s ease-in-out infinite;
}
.map-center small {
    color: var(--muted-2);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .03em;
}
.platform-map.is-pulsing .map-center { animation: map-center-burst .95s cubic-bezier(.2,.85,.2,1) both; }
.platform-map.is-pulsing .map-center-glow { animation: map-center-glow-burst .95s ease-out both; }
.platform-map.is-pulsing .map-pulse-ring { animation-duration: .95s; border-color: rgba(0, 155, 254, .52); }
.map-node-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 0;
    height: 0;
    animation: module-orbit 24s linear infinite;
    animation-delay: var(--orbit-delay);
    will-change: transform;
}
.map-node-orbit .map-node {
    position: absolute;
    left: var(--orbit-radius);
    top: 0;
    transform: translate(-50%, -50%);
    animation: module-counter-orbit 24s linear infinite;
    animation-delay: var(--orbit-delay);
    will-change: transform;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.map-node-orbit .map-node:hover {
    border-color: #9fd0ff;
    background: linear-gradient(180deg, #fff, #f2f8ff);
    box-shadow: 0 18px 42px rgba(1, 32, 77, .16);
}
.map-node-orbit .map-node .icon { transition: transform .25s ease, filter .25s ease; }
.map-node-orbit .map-node:hover .icon { transform: scale(1.15); filter: drop-shadow(0 6px 10px rgba(0,113,248,.24)); }
.map-node-orbit:hover,
.map-node-orbit:hover .map-node { animation-play-state: paused; }
@keyframes module-orbit { to { transform: rotate(360deg); } }
@keyframes module-counter-orbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}
@keyframes map-ring-breathe {
    0%,100% { opacity: .65; transform: translate(-50%,-50%) scale(.97); }
    50% { opacity: 1; transform: translate(-50%,-50%) scale(1.035); }
}
@keyframes map-wave {
    0% { opacity: .5; transform: translate(-50%,-50%) scale(.84); }
    75%,100% { opacity: 0; transform: translate(-50%,-50%) scale(1.16); }
}
@keyframes map-center-breathe {
    0%,100% { transform: translate(-50%,-50%); box-shadow: 0 18px 60px rgba(1,32,77,.12), 0 0 0 0 rgba(0,132,253,.08); }
    50% { transform: translate(-50%,-50%); box-shadow: 0 24px 72px rgba(0,113,248,.18), 0 0 0 10px rgba(0,132,253,.055); }
}
@keyframes map-center-glow {
    0%,100% { opacity: .42; transform: scale(.92); }
    50% { opacity: .9; transform: scale(1.08); }
}
@keyframes map-center-burst {
    0% { transform: translate(-50%,-50%) scale(1); }
    40% { transform: translate(-50%,-50%) scale(1.18); box-shadow: 0 0 0 18px rgba(0,132,253,.11), 0 28px 80px rgba(0,113,248,.28); }
    72% { transform: translate(-50%,-50%) scale(1.06); }
    100% { transform: translate(-50%,-50%) scale(1); }
}
@keyframes map-center-glow-burst {
    0% { opacity: .65; transform: scale(.9); }
    55% { opacity: 1; transform: scale(1.55); }
    100% { opacity: 0; transform: scale(1.8); }
}

/* Independent implementation cards. */
.implementation-band-list span {
    position: relative;
    overflow: hidden;
    transition: transform .28s cubic-bezier(.2,.8,.2,1), border-color .28s ease, background .28s ease, box-shadow .28s ease;
}
.implementation-band-list span::after {
    content: "";
    position: absolute;
    inset: -60% auto -60% -45%;
    width: 28%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    transform: rotate(16deg);
    transition: left .6s ease;
}
.implementation-band-list span:hover {
    transform: translateX(9px) scale(1.015);
    border-color: rgba(105, 216, 255, .46);
    background: rgba(255,255,255,.105);
    box-shadow: 0 16px 34px rgba(0,0,0,.14);
}
.implementation-band-list span:hover::after { left: 125%; }
.implementation-band-list span .icon { transition: transform .28s ease, filter .28s ease; }
.implementation-band-list span:hover .icon { transform: scale(1.18) rotate(-8deg); filter: drop-shadow(0 6px 10px rgba(91,211,255,.28)); }
.implementation-step {
    transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, border-color .28s ease;
}
.implementation-step:hover { transform: translateY(-7px); border-color: #afd6ff; box-shadow: 0 20px 46px rgba(1,32,77,.12); }
.implementation-step span { transition: transform .28s ease, background .28s ease, color .28s ease; }
.implementation-step:hover span { transform: scale(1.1) rotate(-4deg); color: white; background: linear-gradient(135deg,var(--blue-deep),var(--cyan)); }

@media (max-width: 920px) {
    .platform-map { --orbit-radius: 215px; min-height: 570px; max-width: 650px; }
    .map-node-orbit .map-node { width: 118px; height: 80px; }
}

@media (max-width: 680px) {
    .platform-map {
        --orbit-radius: 126px;
        min-height: 400px;
        max-width: 360px;
    }
    .platform-map::before,
    .platform-map::after { display: block; }
    .platform-map::before { width: 252px; height: 252px; }
    .platform-map::after { width: 174px; height: 174px; }
    .map-pulse-ring-one { width: 174px; height: 174px; }
    .map-pulse-ring-two { width: 252px; height: 252px; }
    .map-center { width: 126px; height: 126px; }
    .map-center img { width: 52px; }
    .map-center b { font-size: 10px; }
    .map-center small { display: none; }
    .map-node-orbit .map-node { width: 88px; height: 62px; border-radius: 14px; gap: 4px; }
    .map-node-orbit .map-node span { font-size: 9px; }
    .map-node-orbit .map-node .icon { width: 16px; height: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    .journey-line::before,
    .map-center,
    .map-center-glow,
    .map-pulse-ring,
    .platform-map::before,
    .platform-map::after,
    .map-node-orbit,
    .map-node-orbit .map-node { animation: none !important; }
}

/* =========================================================
   EventHub Manager Website v1.2.7 — protection and anti-spam
   ========================================================= */

/* Protect visual content while preserving normal interaction in form fields. */
html.content-protected body {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}
html.content-protected input,
html.content-protected textarea,
html.content-protected select,
html.content-protected [contenteditable="true"],
html.content-protected .allow-select {
    -webkit-user-select: text;
    user-select: text;
    -webkit-touch-callout: default;
}
html.content-protected img {
    -webkit-user-drag: none;
    user-drag: none;
}

.content-protection-toast {
    position: fixed;
    top: auto;
    right: auto;
    bottom: 28px;
    left: 50%;
    z-index: 5200;
    max-width: min(360px, calc(100vw - 32px));
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 16px;
    border: 1px solid rgba(111, 204, 255, .22);
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, rgba(1, 32, 77, .97), rgba(0, 79, 188, .97));
    box-shadow: 0 20px 48px rgba(0, 20, 58, .28);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 12px) scale(.96);
    transition: opacity .24s ease, visibility .24s ease, transform .32s cubic-bezier(.2,.8,.2,1);
}
.content-protection-toast::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.13) 48%, transparent 75%);
    transform: translateX(-120%);
}
.content-protection-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
}
.content-protection-toast.is-visible::after { animation: protection-toast-shine .85s ease .12s both; }
.content-protection-toast .icon {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    color: #6fd5ff;
    filter: drop-shadow(0 5px 12px rgba(0, 178, 255, .32));
}
.content-protection-toast span { position: relative; z-index: 1; font-size: 12px; font-weight: 800; letter-spacing: .01em; }
@keyframes protection-toast-shine { to { transform: translateX(120%); } }

/* Contact form protection status and asynchronous sending loader. */
.form-feedback[hidden] { display: none !important; }
.form-feedback.is-visible { animation: form-feedback-in .3s ease both; }
@keyframes form-feedback-in {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}
.form-security-note {
    margin: 14px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #718096;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}
.form-security-note .icon { width: 15px; height: 15px; color: var(--blue); }
.contact-submit:disabled {
    cursor: wait;
    opacity: .72;
    transform: none;
    box-shadow: none;
}
.contact-submit:disabled::before { display: none; }

body.mail-is-sending { overflow: hidden; }
.mail-submit-loader[hidden] { display: none !important; }
.mail-submit-loader {
    position: fixed;
    inset: 0;
    z-index: 5100;
    display: grid;
    place-items: center;
    padding: 22px;
    background: rgba(0, 16, 42, .60);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .24s ease, visibility .24s ease;
}
.mail-submit-loader.is-active { opacity: 1; visibility: visible; }
.mail-loader-card {
    width: min(410px, 100%);
    padding: 34px 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 5%, rgba(0, 153, 255, .11), transparent 37%),
        rgba(255,255,255,.97);
    box-shadow: 0 38px 100px rgba(0, 17, 54, .35);
    text-align: center;
    transform: translateY(14px) scale(.965);
    transition: transform .32s cubic-bezier(.2,.8,.2,1);
}
.mail-submit-loader.is-active .mail-loader-card { transform: translateY(0) scale(1); }
.mail-loader-stage {
    position: relative;
    width: 138px;
    height: 138px;
    margin-bottom: 15px;
    display: grid;
    place-items: center;
}
.mail-loader-stage::after {
    content: "";
    position: absolute;
    width: 72px;
    height: 22px;
    left: 50%;
    bottom: 11px;
    border-radius: 50%;
    background: rgba(0, 67, 156, .13);
    filter: blur(9px);
    transform: translateX(-50%);
    animation: mail-loader-shadow 1.6s ease-in-out infinite;
}
.mail-loader-stage picture { position: relative; z-index: 3; display: block; }
.mail-loader-stage img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 95, 220, .26));
    animation: mail-loader-symbol 1.6s ease-in-out infinite;
}
.mail-loader-ring {
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 1px solid rgba(0, 113, 248, .16);
}
.mail-loader-ring::before,
.mail-loader-ring::after {
    content: "";
    position: absolute;
    border-radius: inherit;
}
.mail-loader-ring::before {
    inset: -1px;
    border-top: 2px solid var(--blue);
    border-right: 2px solid transparent;
    animation: mail-loader-spin 1.2s linear infinite;
}
.mail-loader-ring::after {
    width: 8px;
    height: 8px;
    top: 8px;
    right: 19px;
    background: var(--cyan);
    box-shadow: 0 0 0 6px rgba(0, 155, 254, .10), 0 0 20px rgba(0, 155, 254, .52);
}
.mail-loader-ring-two { inset: 0; opacity: .58; transform: rotate(180deg); }
.mail-loader-ring-two::before { border-top-color: var(--cyan); animation-duration: 1.9s; animation-direction: reverse; }
.mail-loader-ring-two::after { top: auto; right: auto; bottom: 10px; left: 25px; width: 6px; height: 6px; background: var(--blue-deep); }
.mail-loader-card strong { color: var(--midnight); font-size: 20px; letter-spacing: -.025em; }
.mail-loader-card > span { max-width: 310px; margin-top: 8px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.mail-loader-dots { height: 20px; margin-top: 17px; display: flex; align-items: center; gap: 7px; }
.mail-loader-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    animation: mail-loader-dot 1.2s ease-in-out infinite;
}
.mail-loader-dots i:nth-child(2) { animation-delay: .14s; background: var(--blue-electric); }
.mail-loader-dots i:nth-child(3) { animation-delay: .28s; background: var(--cyan); }
@keyframes mail-loader-spin { to { transform: rotate(360deg); } }
@keyframes mail-loader-symbol {
    0%,100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-7px) scale(1.035); }
}
@keyframes mail-loader-shadow {
    0%,100% { opacity: .55; transform: translateX(-50%) scale(.92); }
    50% { opacity: .28; transform: translateX(-50%) scale(.72); }
}
@keyframes mail-loader-dot {
    0%,60%,100% { transform: translateY(0); opacity: .42; }
    30% { transform: translateY(-6px); opacity: 1; }
}

@media (max-width: 680px) {
    .content-protection-toast {
        right: auto;
        bottom: 88px;
        left: 50%;
        width: calc(100vw - 32px);
        justify-content: center;
        max-width: 420px;
        transform: translate(-50%, 12px) scale(.97);
    }
    .content-protection-toast.is-visible { transform: translate(-50%, 0) scale(1); }
    .mail-loader-card { padding: 28px 21px 25px; border-radius: 23px; }
    .mail-loader-stage { width: 122px; height: 122px; }
    .mail-loader-stage img { width: 72px; height: 72px; }
    .mail-loader-card strong { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    .content-protection-toast.is-visible::after,
    .mail-loader-stage img,
    .mail-loader-stage::after,
    .mail-loader-ring::before,
    .mail-loader-dots i {
        animation: none !important;
    }
}

/* v1.2.10 — remove all decorative background grids while preserving layouts. */
.hero::before,
.site-loader::before {
    content: none !important;
    display: none !important;
    background: none !important;
    background-image: none !important;
}
