:root {
  --ink: #0d1b34;
  --ink-2: #1f2e48;
  --muted: #68758a;
  --line: #dce4ef;
  --line-strong: #cbd6e4;
  --surface: #f4f7fb;
  --surface-2: #edf3fa;
  --white: #ffffff;
  --blue: #1e63ff;
  --blue-dark: #164ecc;
  --blue-soft: #eaf1ff;
  --green: #1aa977;
  --shadow: 0 22px 70px rgba(21, 45, 85, 0.12);
  --shadow-soft: 0 14px 38px rgba(21, 45, 85, 0.08);
  --radius: 18px;
  --radius-lg: 28px;
  --shell: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.skip-link { position:fixed;z-index:500;left:16px;top:12px;transform:translateY(-150%);padding:10px 14px;border-radius:8px;background:#fff;color:#0b1930;font-size:12px;font-weight:800;box-shadow:0 8px 25px rgba(0,0,0,.2); }
.skip-link:focus { transform:translateY(0); }
.seo-fallback { min-height:100vh;display:grid;place-content:center;text-align:center;padding:40px;background:radial-gradient(circle at 50% 35%,rgba(30,99,255,.1),transparent 35%),#f5f8fc; }
.seo-fallback p { color:#1e63ff;font-size:10px;font-weight:800;letter-spacing:.16em; }
.seo-fallback h1 { max-width:900px;margin:18px auto;font-size:clamp(42px,6vw,76px);line-height:1.05; }
.seo-fallback span { max-width:720px;margin:auto;color:#66758a;font-size:16px; }
body, button, input, select, textarea { font-family: system-ui, -apple-system, 'Segoe UI', Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; max-width:100%; }
button, a, input, select, textarea { touch-action: manipulation; }
:where(a, button, input, select, textarea, summary):focus-visible { outline:3px solid rgba(30,99,255,.28); outline-offset:3px; }

.shell { width: min(calc(100% - 48px), var(--shell)); margin: 0 auto; }
.section { padding: 112px 0; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { font-family: system-ui, -apple-system, 'Segoe UI', Arial, sans-serif; letter-spacing: -0.035em; text-wrap:balance; }
p { color: var(--muted); line-height: 1.72; }
p, h1, h2, h3, h4, a, button, label, td, th { overflow-wrap:anywhere; }
.site-app, main, section, .shell, [class*="-grid"], [class*="-layout"] { min-width:0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 247, 251, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(203, 214, 228, 0.75);
}
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.logo-link { flex: 0 0 auto; }
.brand-lockup { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 2px solid var(--blue);
  background: var(--white);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 0 7px 20px rgba(30, 99, 255, 0.12);
}
.brand-mark-t { font-family: system-ui, -apple-system, 'Segoe UI', Arial, sans-serif; font-weight: 800; font-size: 23px; color: var(--ink); line-height: 1; }
.brand-pulse { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); top: 8px; right: 7px; }
.brand-copy { display: flex; flex-direction: column; gap: 1px; }
.brand-copy strong { font: 800 17px/1 'Manrope'; letter-spacing: 0.12em; }
.brand-copy small { font-size: 8px; letter-spacing: 0.19em; color: var(--muted); font-weight: 700; }
.main-nav { display: flex; align-items: center; gap: 27px; margin-left: auto; }
.main-nav > a { font-size: 14px; font-weight: 600; color: #536178; position: relative; padding: 31px 0; }
.main-nav > a::after { content: ''; position: absolute; bottom: 0; left: 0; right: 100%; height: 2px; background: var(--blue); transition: 0.25s ease; }
.main-nav > a:hover, .main-nav > a.active { color: var(--ink); }
.main-nav > a:hover::after, .main-nav > a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.portal-link { font-size: 13px; font-weight: 600; color: var(--muted); }
.language-link { font-size:13px;font-weight:700;color:var(--blue); }
.mobile-demo-button, .mobile-language-button, .menu-button { display: none; }

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-sm { min-height: 42px; padding: 0 17px; border-radius: 9px; font-size: 13px; }
.button-dark { color: var(--white); background: var(--ink); box-shadow: 0 10px 24px rgba(13, 27, 52, 0.17); }
.button-dark:hover { background: #172943; }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 13px 30px rgba(30, 99, 255, 0.28); }
.button-primary:hover { background: var(--blue-dark); }
.button-ghost { color: var(--ink); background: rgba(255,255,255,0.66); border-color: var(--line-strong); }
.button-outline { color: var(--ink); background: transparent; border-color: var(--line-strong); }
.button-outline:hover, .button-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--white); }
.button-white { color: var(--ink); background: var(--white); box-shadow: 0 16px 32px rgba(0,0,0,0.14); }
.button-white:hover { color: var(--blue); }
.button-ghost-light { color:#fff;border:1px solid rgba(255,255,255,.24);background:rgba(255,255,255,.06); }
.button-ghost-light:hover { background:rgba(255,255,255,.12); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-weight: 700; font-size: 14px; }
.text-link svg { transition: transform 0.2s ease; }
.text-link:hover svg { transform: translateX(4px); }

.blueprint-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(30, 99, 255, 0.048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 99, 255, 0.048) 1px, transparent 1px),
    linear-gradient(rgba(30, 99, 255, 0.021) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 99, 255, 0.021) 1px, transparent 1px);
  background-size: 72px 72px, 72px 72px, 18px 18px, 18px 18px;
  mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 0;
  min-height: 820px;
  background:
    radial-gradient(circle at 78% 32%, rgba(30,99,255,0.11), transparent 31%),
    radial-gradient(circle at 10% 18%, rgba(255,255,255,0.95), transparent 25%),
    var(--surface);
}
.hero-beam { position: absolute; width: 420px; height: 1px; background: linear-gradient(90deg, transparent, rgba(30,99,255,.6), transparent); transform: rotate(-28deg); opacity: .28; }
.beam-one { right: 5%; top: 24%; }
.beam-two { left: -7%; top: 67%; transform: rotate(18deg); }
.hero-layout { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 52px; align-items: center; position: relative; z-index: 1; }
.hero-copy { padding-bottom: 60px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; color: var(--blue); margin-bottom: 26px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(26,169,119,.12); display: inline-block; flex: 0 0 auto; }
.hero h1 { font-size: clamp(52px, 5.8vw, 84px); line-height: .99; margin-bottom: 28px; max-width: 760px; }
.hero h1 em { color: var(--blue); font-style: normal; position: relative; }
.hero h1 em::after { content: ''; position: absolute; left: 3px; right: -3px; bottom: -6px; height: 8px; border-top: 2px solid rgba(30,99,255,.4); border-radius: 50%; transform: rotate(-1deg); }
.hero-copy > p { font-size: 18px; max-width: 625px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.hero-assurance { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; }
.hero-assurance span { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: #657288; }
.hero-assurance svg { color: var(--blue); }
.network-stage {
  position: relative;
  min-height: 570px;
  border: 1px solid rgba(30,99,255,.18);
  border-radius: 32px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 30px 90px rgba(32,70,130,.14), inset 0 0 70px rgba(30,99,255,.035);
  overflow: hidden;
  isolation: isolate;
}
.network-stage::before { content: 'TELFRON / LIVE COMMUNICATION MAP'; position: absolute; left: 24px; top: 20px; font-size: 9px; letter-spacing: .2em; font-weight: 800; color: #94a2b6; }
.network-stage::after { content: ''; position: absolute; inset: 13px; border: 1px solid rgba(30,99,255,.08); border-radius: 24px; pointer-events: none; }
.network-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(30,99,255,.045) 1px, transparent 1px),linear-gradient(90deg,rgba(30,99,255,.045) 1px,transparent 1px); background-size: 28px 28px; mask-image: radial-gradient(circle at center, black, transparent 78%); }
.network-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.network-lines .line { fill: none; stroke: rgba(30,99,255,.29); stroke-width: 1.4; stroke-dasharray: 7 7; animation: dash 18s linear infinite; }
.network-lines .line::after { content: ''; }
.line-b { animation-delay: -4s !important; }
.line-c { animation-delay: -8s !important; }
.line-d { animation-delay: -12s !important; }
.line-e { animation-delay: -16s !important; }
@keyframes dash { to { stroke-dashoffset: -180; } }
.network-node { position: absolute; display: flex; align-items: center; gap: 11px; background: rgba(255,255,255,.95); border: 1px solid var(--line); border-radius: 12px; padding: 11px 13px; box-shadow: 0 10px 26px rgba(34,59,96,.1); min-width: 190px; z-index: 2; }
.network-node .node-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; flex: 0 0 auto; }
.network-node div:not(.node-icon) { display: flex; flex-direction: column; gap: 3px; }
.network-node span { font-size: 8px; letter-spacing: .14em; color: #8c99aa; font-weight: 800; }
.network-node strong { font-size: 11px; letter-spacing: -.01em; }
.network-node .live-dot { position: absolute; right: 11px; top: 11px; width: 6px; height: 6px; }
.caller-node { left: 5%; top: 16%; }
.trunk-node { left: 5%; bottom: 16%; }
.destination { right: 4%; min-width: 180px; }
.reception-node { top: 12%; }
.queue-node { top: 42%; }
.branch-node { bottom: 13%; }
.status-ok { position: absolute; right: 10px; bottom: 8px; color: var(--green); font-size: 7px; letter-spacing: .12em; }
.ai-core { position: absolute; left: 41%; top: 39%; width: 134px; height: 134px; display: grid; place-items: center; z-index: 3; }
.ai-core-inner { width: 102px; height: 102px; border-radius: 50%; background: linear-gradient(145deg, #1f6bff, #164ac2); color: white; display: flex; align-items: center; justify-content: center; flex-direction: column; box-shadow: 0 18px 45px rgba(30,99,255,.38), inset 0 1px 0 rgba(255,255,255,.35); }
.ai-core-inner strong { font-size: 17px; margin-top: 1px; }
.ai-core-inner small { font-size: 6px; letter-spacing: .16em; opacity: .8; }
.ai-ring { position: absolute; border: 1px solid rgba(30,99,255,.29); border-radius: 50%; animation: pulse-ring 3.2s ease-out infinite; }
.ring-one { width: 116px; height: 116px; }
.ring-two { width: 146px; height: 146px; animation-delay: .8s; }
.ring-three { width: 180px; height: 180px; animation-delay: 1.6s; }
@keyframes pulse-ring { 0% { opacity:.7; transform:scale(.75);} 70%,100% { opacity:0; transform:scale(1.12);} }
.intent-chip { position: absolute; left: 24%; bottom: 7%; display: flex; align-items: center; gap: 12px; background: var(--ink); color: white; border-radius: 12px; padding: 11px 15px; box-shadow: 0 16px 32px rgba(13,27,52,.23); z-index: 4; }
.intent-chip div { display: flex; flex-direction: column; gap: 3px; }
.intent-chip small { font-size: 7px; color: #8ea0ba; letter-spacing: .15em; font-weight: 800; }
.intent-chip strong { font-size: 11px; }
.intent-wave { display: flex; height: 23px; align-items: center; gap: 2px; }
.intent-wave i { width: 2px; border-radius: 5px; background: #6aa1ff; animation: wave 1s ease-in-out infinite; }
.intent-wave i:nth-child(1){height:9px}.intent-wave i:nth-child(2){height:20px;animation-delay:.12s}.intent-wave i:nth-child(3){height:14px;animation-delay:.24s}.intent-wave i:nth-child(4){height:7px;animation-delay:.36s}
@keyframes wave { 50% { transform: scaleY(.5); opacity:.6; } }
.metric-strip { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4,1fr); margin-top: 65px; background: var(--white); border: 1px solid var(--line); border-radius: 18px 18px 0 0; box-shadow: 0 -10px 42px rgba(30,68,119,.06); }
.metric { min-height: 104px; padding: 24px 30px; display: flex; justify-content: center; flex-direction: column; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric strong { font: 800 28px/1.1 'Manrope'; }
.metric span { margin-top: 7px; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }

.eyebrow { display: flex; align-items: center; gap: 9px; color: var(--blue); text-transform: uppercase; letter-spacing: .16em; font-size: 10px; font-weight: 800; margin-bottom: 17px; }
.eyebrow > span { width: 22px; height: 1px; background: currentColor; }
.eyebrow.light { color: #82aaff; }
.section-heading { max-width: 730px; margin-bottom: 52px; }
.section-heading.align-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.align-center .eyebrow { justify-content: center; }
.section-heading h2 { font-size: clamp(36px, 4vw, 58px); line-height: 1.08; margin-bottom: 18px; }
.section-heading p { font-size: 16px; margin-bottom: 0; }
.section-top-row { display: flex; justify-content: space-between; gap: 40px; align-items: flex-end; margin-bottom: 52px; }
.section-top-row .section-heading { margin-bottom: 0; }
.section-top-row > .button { flex: 0 0 auto; margin-bottom: 5px; }

.platform-overview { background: var(--white); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 255px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: rgba(30,99,255,.32); }
.feature-card::before { content: ''; position: absolute; width: 130px; height: 130px; border: 1px solid rgba(30,99,255,.08); border-radius: 50%; right: -70px; bottom: -70px; }
.feature-icon { width: 47px; height: 47px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; margin-bottom: 29px; }
.card-index { position: absolute; top: 28px; right: 28px; font: 700 9px 'Manrope'; letter-spacing: .15em; color: #a0adbd; }
.feature-card h3 { font-size: 20px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; margin-bottom: 0; }
.corner-line { position: absolute; width: 30px; height: 30px; right: 14px; bottom: 14px; border-right: 1px solid rgba(30,99,255,.28); border-bottom: 1px solid rgba(30,99,255,.28); }
.market-position-section { background:#f5f8fc; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.position-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; align-items:stretch; }
.position-card { position:relative; padding:30px; border:1px solid var(--line); border-radius:18px; background:#fff; min-height:335px; display:flex; flex-direction:column; }
.position-card small { color:#8895a8; font:800 9px 'Manrope',sans-serif; letter-spacing:.16em; text-transform:uppercase; }
.position-card h3 { font-size:22px; line-height:1.2; margin:20px 0 12px; }
.position-card p { font-size:13px; margin-bottom:25px; }
.position-card ul { list-style:none; padding:0; margin:auto 0 0; display:grid; gap:11px; }
.position-card li { display:flex; align-items:center; gap:9px; color:#67758a; font-size:12px; font-weight:600; }
.position-card li svg { color:#a0aabb; }
.position-card.featured { color:#fff; background:linear-gradient(145deg,#0b1930,#12294c); border-color:#1e63ff; box-shadow:0 22px 50px rgba(11,25,48,.18); overflow:hidden; }
.position-card.featured::after { content:''; position:absolute; width:210px; height:210px; border:1px solid rgba(93,151,255,.18); border-radius:50%; right:-110px; top:-100px; }
.position-card.featured small,.position-card.featured li svg { color:#7eacff; }
.position-card.featured h3 { color:#fff; }
.position-card.featured p,.position-card.featured li { color:#a9b8cc; }

.architecture-section { background: linear-gradient(180deg, var(--surface), #eef3f9); }
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 92px; align-items: center; }
.architecture-visual { position: relative; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); padding: 54px 44px 44px; background: rgba(255,255,255,.68); box-shadow: var(--shadow-soft); }
.architecture-visual::before { content:''; position:absolute; inset:0; border-radius:inherit; background-image: linear-gradient(rgba(30,99,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(30,99,255,.04) 1px,transparent 1px); background-size: 24px 24px; pointer-events:none; }
.blueprint-label { position: absolute; top: 20px; left: 24px; font-size: 8px; letter-spacing: .17em; color: #93a0b2; font-weight: 800; }
.arch-stack { position: relative; z-index: 2; }
.arch-layer { min-height: 74px; border-radius: 12px; display: grid; grid-template-columns: 44px 1fr; align-items: center; column-gap: 14px; padding: 13px 18px; box-shadow: 0 10px 24px rgba(28,55,91,.08); }
.arch-layer svg { grid-row: span 2; }
.arch-layer span { font-weight: 800; font-size: 14px; }
.arch-layer small { font-size: 10px; letter-spacing: .02em; opacity: .67; }
.arch-users, .arch-data { background: white; border: 1px solid var(--line); }
.arch-users svg, .arch-data svg { color: var(--blue); }
.arch-ai { background: var(--blue); color: white; box-shadow: 0 14px 32px rgba(30,99,255,.25); }
.arch-pbx { background: var(--ink); color: white; }
.arch-connectors { height: 27px; display: flex; justify-content: space-around; padding: 0 55px; }
.arch-connectors i { width: 1px; height: 100%; background: linear-gradient(var(--line-strong), var(--blue), var(--line-strong)); position: relative; }
.arch-connectors i::after { content:''; width:5px; height:5px; border-radius:50%; background:var(--blue); position:absolute; left:-2px; top:11px; }
.architecture-copy .section-heading { margin-bottom: 28px; }
.check-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 14px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; color: #45536a; }
.check-list li svg { color: var(--blue); }

.ai-section { background: var(--white); }
.ai-showcase { display: grid; grid-template-columns: 1.25fr .75fr; gap: 26px; align-items: stretch; }
.ai-demo { background: var(--ink); color: white; border-radius: 22px; padding: 26px; box-shadow: 0 25px 65px rgba(13,27,52,.19); position: relative; overflow: hidden; }
.ai-demo::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 85% 12%,rgba(30,99,255,.28),transparent 30%),linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size:auto,26px 26px,26px 26px; pointer-events:none; }
.demo-topbar, .caller-transcript, .processing-line, .intent-results, .demo-tabs { position: relative; z-index: 2; }
.demo-topbar { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); color: #8da0bd; font-size: 8px; letter-spacing: .15em; font-weight: 800; }
.demo-topbar div { display: flex; align-items: center; gap: 9px; }
.demo-topbar .live-dot { width: 6px; height: 6px; }
.caller-transcript { display: flex; align-items: flex-start; gap: 17px; padding: 30px 0; }
.avatar-circle { width: 48px; height: 48px; border-radius: 50%; background: rgba(30,99,255,.18); border: 1px solid rgba(79,136,255,.35); color: #7aa8ff; display: grid; place-items: center; flex: 0 0 auto; }
.caller-transcript small, .intent-results small { display:block; color:#8091aa; font-size:8px; letter-spacing:.17em; font-weight:800; margin-bottom:8px; }
.caller-transcript p { color: white; font: 600 18px/1.55 'Manrope'; margin: 0; min-height: 55px; }
.processing-line { height: 42px; display: flex; align-items: center; gap: 4px; border: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.035); border-radius: 10px; padding: 0 14px; }
.processing-line span { width: 3px; height: 12px; background: #6da1ff; border-radius: 3px; animation: wave 1s infinite ease-in-out; }
.processing-line span:nth-child(2){height:22px;animation-delay:.12s}.processing-line span:nth-child(3){height:8px;animation-delay:.24s}
.processing-line b { margin-left: 8px; font-size: 10px; letter-spacing: .05em; color: #a9b8cd; font-weight: 600; }
.intent-results { display: grid; grid-template-columns: repeat(2,1fr); border: 1px solid rgba(255,255,255,.09); border-radius: 12px; margin-top: 18px; overflow: hidden; }
.intent-results > div { min-height: 84px; padding: 17px; border-right: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.intent-results > div:nth-child(2n) { border-right: 0; }
.intent-results > div:nth-child(n+3) { border-bottom: 0; }
.intent-results strong { font-size: 13px; }
.intent-results .confidence { color: #58d7a7; }
.demo-tabs { display: flex; justify-content: center; gap: 7px; margin-top: 19px; }
.demo-tabs button { border: 0; width: 7px; height: 7px; padding: 0; border-radius: 50%; background: rgba(255,255,255,.22); cursor:pointer; }
.demo-tabs button.active { width: 22px; border-radius: 6px; background: var(--blue); }
.ai-demo.compact { min-height: 450px; }
.ai-capability-list { border: 1px solid var(--line); border-radius: 22px; padding: 10px 25px; background: var(--surface); }
.capability-row { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.capability-row:last-child { border-bottom: 0; }
.capability-row > span { width: 43px; height: 43px; border-radius: 10px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; }
.capability-row h4 { font-size: 15px; margin-bottom: 5px; }
.capability-row p { font-size: 12px; margin:0; line-height:1.55; }

.industries-section { background: var(--surface); }
.industry-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.industry-card { position:relative; background:white; border:1px solid var(--line); border-radius:18px; padding:29px 25px; min-height:335px; transition:.25s ease; overflow:hidden; }
.industry-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-soft); }
.industry-card::after { content:''; position:absolute; width:120px;height:120px;border:1px solid rgba(30,99,255,.08);border-radius:50%;right:-65px;top:-55px; }
.industry-number { position:absolute; right:22px; top:22px; font:800 9px 'Manrope'; letter-spacing:.15em;color:#a2adbd; }
.industry-icon { width:57px;height:57px;border:1px solid #d7e2f3;border-radius:15px;display:grid;place-items:center;color:var(--blue);background:var(--blue-soft);margin-bottom:40px; }
.industry-card small { color:var(--blue);font-weight:800;letter-spacing:.16em;font-size:8px; }
.industry-card h3 { font-size:20px;margin:9px 0 10px; }
.industry-card p { font-size:13px;margin-bottom:24px; }
.industry-card a { position:absolute;left:25px;bottom:25px;display:flex;gap:8px;align-items:center;color:var(--ink);font-size:12px;font-weight:700; }

.dashboard-section { background:white; overflow:hidden; }
.product-demo-frame { max-width:1200px;margin:0 auto;position:relative;padding:13px;border:1px solid var(--line-strong);border-radius:24px;background:linear-gradient(145deg,#fff,#edf3fb);box-shadow:0 35px 90px rgba(19,49,90,.18); }
.product-demo-frame img { display:block;width:100%;height:auto;border-radius:15px;border:1px solid #dce5f0; }
.product-demo-frame .demo-label { position:absolute;left:29px;top:28px;z-index:2;display:flex;align-items:center;gap:7px;padding:7px 10px;border-radius:999px;background:rgba(11,25,48,.9);color:#fff;font-size:7px;font-weight:800;letter-spacing:.13em;backdrop-filter:blur(8px); }
.product-demo-frame .demo-label span { width:6px;height:6px;border-radius:50%;background:var(--green); }
.product-demo-frame figcaption { padding:12px 5px 1px;color:#8190a4;font-size:9px;text-align:center; }
.dashboard-frame { max-width: 1110px; margin: 0 auto; min-height: 560px; background:#f5f8fc;border:1px solid var(--line-strong);border-radius:22px;box-shadow:0 35px 90px rgba(19,49,90,.17);display:grid;grid-template-columns:74px 1fr;overflow:hidden;transform:perspective(1500px) rotateX(1.2deg); }
.dashboard-sidebar { background:var(--ink);padding:17px 0;display:flex;flex-direction:column;align-items:center;gap:12px; }
.dashboard-sidebar .brand-mark { width:36px;height:36px;border-radius:10px;margin-bottom:20px; }
.dashboard-sidebar .brand-mark-t { font-size:18px; }
.dash-nav { width:40px;height:40px;border-radius:9px;display:grid;place-items:center;color:#6f809c; }
.dash-nav.active { background:var(--blue);color:white; }
.dashboard-body { padding:25px; min-width:0; }
.dash-header { display:flex;align-items:center;justify-content:space-between;margin-bottom:22px; }
.dash-header > div:first-child { display:flex;flex-direction:column;gap:6px; }
.dash-header small { font-size:7px;letter-spacing:.17em;color:#96a4b8;font-weight:800; }
.dash-header strong { font-size:15px; }
.dash-health { display:flex;align-items:center;gap:8px;background:white;border:1px solid var(--line);border-radius:8px;padding:8px 11px;font-size:9px;font-weight:700;color:#536278; }
.dash-health .live-dot { width:6px;height:6px; }
.dash-metrics { display:grid;grid-template-columns:repeat(4,1fr);gap:12px; }
.dash-metric-card { background:white;border:1px solid var(--line);border-radius:12px;padding:16px;min-width:0; }
.dash-metric-card > small { font-size:8px;color:#8795a9;font-weight:600; }
.dash-metric-card > div { display:flex;align-items:baseline;gap:7px;margin-top:11px; }
.dash-metric-card strong { font:800 24px 'Manrope'; }
.dash-metric-card span { font-size:8px;color:#8b98aa; }
.dash-metric-card svg { width:100%;height:35px;margin-top:9px; }
.dash-metric-card path { fill:none;stroke:var(--blue);stroke-width:2;vector-effect:non-scaling-stroke; }
.dash-lower { display:grid;grid-template-columns:1.5fr .75fr;gap:12px;margin-top:12px; }
.dash-calls-panel,.dash-trunks-panel { background:white;border:1px solid var(--line);border-radius:12px;padding:16px; }
.panel-title { display:flex;align-items:center;justify-content:space-between;padding-bottom:14px;border-bottom:1px solid var(--line); }
.panel-title strong { font-size:11px; }
.panel-title span { font-size:8px;color:var(--blue);font-weight:700; }
.call-row { display:grid;grid-template-columns:10px 1.1fr 1fr .9fr 40px;gap:10px;align-items:center;padding:16px 0;border-bottom:1px solid #edf1f6;font-size:8px; }
.call-row:last-child { border-bottom:0; }
.call-row strong { font-size:9px; }
.call-row span { color:#718097; }
.call-row em { font-style:normal;color:#44536c; }
.call-row b { font-size:8px;text-align:right; }
.call-state { width:7px;height:7px;border-radius:50%;background:var(--green); }
.state-1 { background:var(--blue); }.state-2{background:#f4b443;}
.infra-row { display:flex;justify-content:space-between;align-items:center;padding:13px 0;border-bottom:1px solid #edf1f6;font-size:8px; }
.infra-row:last-child{border-bottom:0}.infra-row span{color:#728198}.infra-row strong{display:flex;align-items:center;gap:6px;font-size:8px}.infra-row i{width:6px;height:6px;border-radius:50%;background:var(--green)}

.deployment-section { background:linear-gradient(180deg,#f1f5fa,var(--surface)); }
.deployment-cards { display:grid;grid-template-columns:repeat(3,1fr);gap:18px;align-items:stretch; }
.deployment-cards article { position:relative;background:white;border:1px solid var(--line);border-radius:20px;padding:31px;min-height:390px;display:flex;flex-direction:column; }
.deployment-cards article.featured { border-color:var(--blue);box-shadow:0 22px 55px rgba(30,99,255,.13); }
.recommended { position:absolute;right:20px;top:18px;background:var(--blue);color:white;font-size:7px;letter-spacing:.16em;font-weight:800;padding:7px 9px;border-radius:5px; }
.deployment-icon { width:50px;height:50px;border-radius:13px;background:var(--blue-soft);color:var(--blue);display:grid;place-items:center;margin-bottom:34px; }
.deployment-cards article > small { color:var(--blue);font-weight:800;font-size:8px;letter-spacing:.15em;text-transform:uppercase; }
.deployment-cards h3 { font-size:25px;margin:8px 0 12px; }
.deployment-cards p { font-size:13px; }
.deployment-cards ul { list-style:none;margin:10px 0 26px;padding:0;display:grid;gap:10px; }
.deployment-cards li { display:flex;align-items:center;gap:8px;font-size:11px;color:#506078;font-weight:600; }
.deployment-cards li svg { color:var(--blue); }
.deployment-cards article > a { margin-top:auto;display:flex;align-items:center;gap:8px;font-size:12px;font-weight:700;color:var(--blue); }

.trust-section { background:var(--ink);color:white;padding:105px 0;position:relative;overflow:hidden; }
.trust-section::before { content:'';position:absolute;inset:0;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:32px 32px;mask-image:linear-gradient(90deg,transparent,black,transparent); }
.trust-layout { position:relative;display:grid;grid-template-columns:.9fr 1.1fr;gap:90px;align-items:start; }
.trust-layout h2 { font-size:clamp(38px,4.5vw,58px);line-height:1.08;margin:0; }
.trust-points { display:grid;grid-template-columns:repeat(2,1fr);gap:17px; }
.trust-points > div { background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.09);border-radius:14px;padding:21px;display:grid;grid-template-columns:40px 1fr;gap:13px; }
.trust-points > div > span { width:38px;height:38px;border-radius:9px;background:rgba(30,99,255,.18);color:#7aa7ff;display:grid;place-items:center; }
.trust-points h4 { font-size:13px;margin:2px 0 6px; }
.trust-points p { color:#8fa0b9;font-size:11px;line-height:1.55;margin:0; }

.final-cta { background:white; }
.cta-panel { min-height:315px;border-radius:26px;background:linear-gradient(135deg,#1754d2,#1e63ff);color:white;padding:55px 58px;display:flex;align-items:center;justify-content:space-between;gap:70px;position:relative;overflow:hidden;box-shadow:0 25px 65px rgba(30,99,255,.24); }
.cta-grid { position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);background-size:32px 32px;mask-image:linear-gradient(90deg,black,transparent); }
.cta-panel::after { content:'';position:absolute;width:330px;height:330px;border:1px solid rgba(255,255,255,.16);border-radius:50%;right:-115px;top:-70px;box-shadow:0 0 0 50px rgba(255,255,255,.035),0 0 0 100px rgba(255,255,255,.02); }
.cta-copy,.cta-actions { position:relative;z-index:2; }
.cta-copy { max-width:690px; }
.cta-copy h2 { font-size:clamp(38px,4vw,56px);margin-bottom:15px; }
.cta-copy p { color:rgba(255,255,255,.74);font-size:15px;margin:0; }
.cta-actions { display:flex;flex-direction:column;align-items:center;gap:17px;flex:0 0 auto; }
.cta-email { color:rgba(255,255,255,.82);font-size:12px;font-weight:600; }

.page-intro { min-height:460px;position:relative;display:grid;place-items:center;text-align:center;overflow:hidden;background:radial-gradient(circle at 50% 35%,rgba(30,99,255,.1),transparent 35%),var(--surface);border-bottom:1px solid var(--line); }
.page-intro-inner { position:relative;z-index:2;max-width:950px;padding:88px 0; }
.page-intro .eyebrow { justify-content:center; }
.page-intro h1 { font-size:clamp(48px,6vw,78px);line-height:1.04;margin-bottom:22px; }
.page-intro p { max-width:780px;margin:0 auto;font-size:18px; }
.page-intro-actions { display:flex;justify-content:center;margin-top:31px; }
.page-intro.align-left { text-align:left; }.page-intro.align-left .eyebrow{justify-content:flex-start}.page-intro.align-left p{margin-left:0}
.module-breadcrumb-wrap { background:#fff; border-bottom:1px solid var(--line); }
.module-breadcrumb { min-height:48px; display:flex; align-items:center; gap:8px; color:#8996a8; font-size:10px; font-weight:700; }
.module-breadcrumb a { color:#68778d; transition:.2s ease; }
.module-breadcrumb a:hover { color:var(--blue); }
.module-breadcrumb svg { color:#b6c0ce; }
.module-breadcrumb span { color:var(--ink); }
.module-proof-strip { background:#0b1930; color:#fff; border-top:1px solid rgba(255,255,255,.08); }
.module-proof-strip .shell { display:grid; grid-template-columns:repeat(4,1fr); }
.module-proof-strip .shell > div { min-height:105px; display:flex; flex-direction:column; justify-content:center; padding:22px 25px; border-right:1px solid rgba(255,255,255,.1); }
.module-proof-strip .shell > div:first-child { border-left:1px solid rgba(255,255,255,.1); }
.module-proof-strip small { color:#7185a1; font:800 8px 'Manrope',sans-serif; letter-spacing:.15em; margin-bottom:7px; }
.module-proof-strip strong { color:#fff; font:700 13px 'Manrope',sans-serif; }

.module-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:18px; }
.module-card { background:white;border:1px solid var(--line);border-radius:18px;padding:28px;min-height:315px; }
.module-head { display:flex;justify-content:space-between;align-items:center;margin-bottom:36px; }
.module-head > span { width:47px;height:47px;border-radius:12px;background:var(--blue-soft);color:var(--blue);display:grid;place-items:center; }
.module-head small { font-size:8px;letter-spacing:.15em;color:#99a5b6;font-weight:800; }
.module-card h3 { font-size:21px; }
.module-card ul { list-style:none;padding:0;margin:22px 0 0;display:grid;gap:13px; }
.module-card li { display:flex;gap:9px;align-items:center;color:#657289;font-size:12px; }
.module-card li svg { color:var(--blue); }
.platform-flow-section { background:white; }
.platform-flow { display:flex;align-items:stretch;justify-content:space-between;gap:12px; }
.platform-flow > svg { align-self:center;color:#9aa9bc;flex:0 0 auto; }
.flow-step { flex:1;background:var(--surface);border:1px solid var(--line);border-radius:14px;padding:24px 18px;min-height:170px; }
.flow-step b { color:var(--blue);font-size:9px;letter-spacing:.15em; }
.flow-step h4 { font-size:15px;margin:25px 0 8px; }
.flow-step p { font-size:11px;line-height:1.55;margin:0; }
.reverse-mobile .dashboard-frame { width:100%;min-height:420px;transform:none; }
.reverse-mobile .dash-metrics { grid-template-columns:repeat(2,1fr); }
.reverse-mobile .dash-metric-card:nth-child(n+3){display:none}.reverse-mobile .dash-lower{grid-template-columns:1fr}.reverse-mobile .dash-trunks-panel{display:none}

.ai-page-demo { background:white; }
.quote-card { border-left:3px solid var(--blue);background:var(--blue-soft);border-radius:0 14px 14px 0;padding:21px;display:flex;gap:14px;align-items:flex-start; }
.quote-card svg { color:var(--blue);flex:0 0 auto;margin-top:3px; }
.quote-card p { font:600 15px/1.6 'Manrope';color:var(--ink);margin:0; }
.conversation-map-section { background:var(--ink);color:white; }
.conversation-map-section .section-heading h2 { color:white; }
.conversation-map { display:flex;align-items:center;justify-content:center;gap:15px; }
.conversation-map > div { width:150px;height:150px;border:1px solid rgba(255,255,255,.11);border-radius:16px;background:rgba(255,255,255,.045);display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:15px; }
.conversation-map > div span { width:42px;height:42px;border-radius:11px;background:rgba(30,99,255,.18);color:#81acff;display:grid;place-items:center;margin-bottom:15px; }
.conversation-map strong { font-size:11px; }
.conversation-map small { font-size:7px;letter-spacing:.14em;color:#7f91ac;margin-top:8px; }
.conversation-map > i { width:28px;height:1px;background:linear-gradient(90deg,transparent,#4879d5,transparent); }
.use-cases-section { background:var(--surface); }
.use-case-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:16px; }
.use-case-grid article { background:white;border:1px solid var(--line);border-radius:16px;padding:27px;min-height:205px; }
.use-case-grid b { color:var(--blue);font-size:9px;letter-spacing:.15em; }
.use-case-grid h3 { font-size:17px;margin:29px 0 8px; }
.use-case-grid p { font-size:12px;margin:0; }
.messaging-automation-section { background:#fff; }
.messaging-automation-layout { display:grid;grid-template-columns:.92fr 1.08fr;gap:72px;align-items:center; }
.messaging-automation-copy .section-heading { margin-bottom:34px; }
.messaging-journey { list-style:none;padding:0;margin:0;display:grid;gap:11px; }
.messaging-journey li { display:grid;grid-template-columns:42px 1fr;gap:15px;align-items:start;padding:16px 18px;border:1px solid var(--line);border-radius:13px;background:var(--surface); }
.messaging-journey li > b { width:38px;height:38px;display:grid;place-items:center;border-radius:10px;background:var(--blue-soft);color:var(--blue);font-size:9px;letter-spacing:.1em; }
.messaging-journey h3 { margin:1px 0 4px;font-size:14px; }
.messaging-journey p { margin:0;font-size:10px;line-height:1.65; }
.messaging-compliance-note { display:flex;gap:11px;align-items:flex-start;margin-top:18px;padding:15px 17px;border:1px solid #b9dfd0;border-radius:12px;background:#f0faf6; }
.messaging-compliance-note svg { flex:0 0 auto;color:#17845f;margin-top:2px; }
.messaging-compliance-note p { margin:0;color:#547266;font-size:9px;line-height:1.7; }
.message-workflow-demo { overflow:hidden;border:1px solid var(--line-strong);border-radius:24px;background:#edf2f7;box-shadow:0 30px 70px rgba(17,43,80,.16); }
.message-demo-header { min-height:77px;padding:17px 21px;display:grid;grid-template-columns:44px 1fr auto;gap:13px;align-items:center;background:#0b1930;color:#fff; }
.message-demo-header > span { width:44px;height:44px;display:grid;place-items:center;border-radius:13px;background:#1aa977;color:#fff; }
.message-demo-header strong { display:block;font-size:12px; }
.message-demo-header small { display:block;margin-top:4px;color:#7f91aa;font-size:7px;letter-spacing:.13em;font-weight:800; }
.message-demo-header > b { padding:6px 9px;border-radius:999px;background:rgba(26,169,119,.14);color:#53d6a8;font-size:7px;letter-spacing:.12em; }
.message-demo-body { min-height:510px;padding:26px 24px;display:flex;flex-direction:column;gap:13px;background:linear-gradient(rgba(255,255,255,.7),rgba(255,255,255,.7)),radial-gradient(circle at 20% 15%,rgba(30,99,255,.09),transparent 33%),#edf2f7; }
.message-bubble { max-width:82%;padding:14px 16px;border-radius:15px;box-shadow:0 6px 18px rgba(22,48,86,.07); }
.message-bubble small { display:block;margin-bottom:6px;font-size:7px;letter-spacing:.12em;font-weight:800; }
.message-bubble p { margin:0;color:#31435e;font-size:11px;line-height:1.6; }
.message-bubble.customer { align-self:flex-start;background:#fff;border-bottom-left-radius:4px; }
.message-bubble.customer small { color:#8290a3; }
.message-bubble.automation { align-self:flex-end;background:#e7f8f1;border:1px solid #c5eadb;border-bottom-right-radius:4px; }
.message-bubble.automation small { color:#17845f; }
.message-options { display:grid;gap:6px;margin-top:11px; }
.message-options span { display:block;padding:7px 9px;border:1px solid rgba(23,132,95,.2);border-radius:7px;background:rgba(255,255,255,.68);color:#176e51;font-size:8px;font-weight:700;text-align:center; }
.workflow-event { align-self:center;display:flex;align-items:center;gap:7px;padding:7px 11px;border-radius:999px;background:#dfe7f1;color:#64758d;font-size:8px;font-weight:700; }
.workflow-event.success { background:#dff4eb;color:#177754; }
.message-demo-footer { min-height:55px;padding:0 20px;display:flex;align-items:center;justify-content:space-between;gap:14px;background:#fff;border-top:1px solid var(--line); }
.message-demo-footer span { display:flex;align-items:center;gap:7px;color:#65758b;font-size:8px;font-weight:700; }
.message-demo-footer svg { color:var(--blue); }
.related-modules-section { background:#fff; }
.related-module-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.related-module-card { min-height:230px; position:relative; display:grid; grid-template-columns:auto 1fr auto; align-items:start; gap:17px; padding:26px; border:1px solid var(--line); border-radius:16px; background:var(--surface); transition:.22s ease; }
.related-module-card:hover { transform:translateY(-4px); border-color:rgba(30,99,255,.4); box-shadow:var(--shadow-soft); }
.related-module-card > span { width:42px; height:42px; display:grid; place-items:center; border-radius:11px; background:var(--blue-soft); color:var(--blue); }
.related-module-card > svg { color:#9eabba; margin-top:12px; }
.related-module-card small { color:#8492a6; font:800 8px 'Manrope',sans-serif; letter-spacing:.14em; text-transform:uppercase; }
.related-module-card h3 { font-size:18px; margin:13px 0 9px; }
.related-module-card p { font-size:11px; margin:0; }

.solution-list { display:grid;gap:90px; }
.solution-row { display:grid;grid-template-columns:1fr 1fr;gap:85px;align-items:center; }
.solution-row.reverse .solution-visual { order:2; }.solution-row.reverse .solution-copy { order:1; }
.solution-visual { min-height:430px;border:1px solid var(--line-strong);border-radius:25px;background:white;position:relative;overflow:hidden;box-shadow:var(--shadow-soft); }
.solution-grid { position:absolute;inset:0;background-image:linear-gradient(rgba(30,99,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(30,99,255,.045) 1px,transparent 1px);background-size:27px 27px;mask-image:radial-gradient(circle at center,black,transparent 80%); }
.solution-icon { position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:112px;height:112px;border-radius:50%;background:var(--blue);color:white;display:grid;place-items:center;box-shadow:0 18px 40px rgba(30,99,255,.28);z-index:3; }
.solution-orbit { position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);border:1px solid rgba(30,99,255,.18);border-radius:50%; }
.orbit-a{width:230px;height:230px}.orbit-b{width:355px;height:355px}
.mini-node { position:absolute;z-index:4;background:white;border:1px solid var(--line);border-radius:10px;padding:10px 13px;display:flex;align-items:center;gap:9px;font-size:10px;font-weight:700;box-shadow:0 9px 24px rgba(30,59,100,.11); }
.mini-node svg{color:var(--blue)}.node-x{left:8%;top:18%}.node-y{right:7%;top:24%}.node-z{left:14%;bottom:13%}
.solution-copy h2 { font-size:clamp(36px,4vw,55px);margin-bottom:17px; }
.solution-copy > p { font-size:15px; }
.solution-copy ul { list-style:none;padding:0;margin:27px 0;display:grid;grid-template-columns:repeat(2,1fr);gap:13px; }
.solution-copy li { display:flex;align-items:center;gap:8px;font-size:12px;color:#56647b;font-weight:600; }
.solution-copy li svg{color:var(--blue)}

.comparison-section { background:white; }
.comparison-table-wrap { overflow:auto;border:1px solid var(--line);border-radius:18px; }
.comparison-table { width:100%;border-collapse:collapse;min-width:760px;background:white; }
.comparison-table th,.comparison-table td { text-align:left;padding:21px 24px;border-bottom:1px solid var(--line);font-size:13px; }
.comparison-table th { background:var(--ink);color:white;font-size:10px;letter-spacing:.1em;text-transform:uppercase; }
.comparison-table th:first-child{width:34%}.comparison-table tr:last-child td{border-bottom:0}.comparison-table td:not(:first-child){color:#5e6d83}.comparison-table td:first-child{font-weight:700}
.comparison-landing { background:var(--surface); }
.comparison-landing .table-wrap { overflow:auto;border:1px solid var(--line);border-radius:18px;box-shadow:var(--shadow-soft); }
.comparison-disclaimer { max-width:900px;margin:20px 0 0;color:#8390a2;font-size:10px; }
.evidence-callout { margin-top:28px;padding:22px 25px;display:flex;gap:15px;align-items:flex-start;border:1px solid #cfe0ff;border-radius:14px;background:#f3f7ff;color:var(--blue); }
.evidence-callout strong { color:var(--ink); }
.evidence-callout p { margin:4px 0 0;font-size:11px; }
.table-check{display:inline-flex;align-items:center;gap:6px;color:var(--green);font-weight:700}
.deployment-process { background:var(--surface); }
.process-grid { display:grid;grid-template-columns:repeat(5,1fr);gap:13px; }
.process-grid article { position:relative;background:white;border:1px solid var(--line);border-radius:15px;padding:24px;min-height:225px; }
.process-grid article:not(:last-child)::after{content:'';position:absolute;right:-14px;top:50%;width:14px;border-top:1px dashed var(--blue);z-index:3}
.process-grid b { color:var(--blue);font-size:9px;letter-spacing:.15em; }
.process-grid h3 { font-size:16px;margin:39px 0 10px; }
.process-grid p { font-size:11px;margin:0; }

.pricing-section { background:white; }
.pricing-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:18px;align-items:stretch; }
.price-card { position:relative;border:1px solid var(--line);border-radius:20px;padding:32px;min-height:610px;display:flex;flex-direction:column;background:var(--surface); }
.price-card.featured { background:white;border-color:var(--blue);box-shadow:0 25px 65px rgba(30,99,255,.15); }
.price-card > small { color:var(--blue);font-size:8px;letter-spacing:.15em;text-transform:uppercase;font-weight:800;margin-top:17px; }
.price-card h2 { font-size:26px;margin:12px 0; }
.price-card > p { min-height:78px;font-size:13px; }
.price { margin:24px 0;display:flex;flex-direction:column;gap:6px; }
.price strong { font:800 35px 'Manrope'; }.price span{font-size:10px;color:#8491a4;text-transform:uppercase;letter-spacing:.1em}
.price-card .button { width:100%; }
.price-card ul { list-style:none;padding:25px 0 0;margin:27px 0 0;border-top:1px solid var(--line);display:grid;gap:15px; }
.price-card li { display:flex;align-items:center;gap:10px;font-size:12px;color:#536178; }
.price-card li svg { color:var(--blue); }
.pricing-note { margin-top:25px;border:1px solid var(--line);background:var(--surface);border-radius:15px;padding:23px;display:flex;gap:17px;align-items:center; }
.pricing-note > svg { color:var(--blue);flex:0 0 auto; }.pricing-note strong{font-size:13px}.pricing-note p{font-size:11px;margin:5px 0 0}
.faq-section { background:var(--surface); }
.faq-layout { display:grid;grid-template-columns:.8fr 1.2fr;gap:90px;align-items:start; }
.faq-list { display:grid;gap:10px; }
details { background:white;border:1px solid var(--line);border-radius:12px;overflow:hidden; }
summary { list-style:none;cursor:pointer;padding:20px 22px;display:flex;justify-content:space-between;align-items:center;font-weight:700;font-size:13px; }
summary::-webkit-details-marker { display:none; } summary svg{color:var(--blue);transition:.2s}details[open] summary svg{transform:rotate(45deg)}details p{padding:0 22px 20px;margin:0;font-size:12px}

.contact-section { background:white; }
.contact-layout { display:grid;grid-template-columns:.75fr 1.25fr;gap:72px;align-items:start; }
.contact-aside { position:sticky;top:120px; }
.contact-aside h2 { font-size:40px;line-height:1.12;margin-bottom:18px; }
.contact-aside > p { font-size:14px;margin-bottom:35px; }
.contact-method { display:flex;align-items:center;gap:14px;padding:17px 0;border-top:1px solid var(--line); }
.contact-method > span { width:40px;height:40px;border-radius:10px;background:var(--blue-soft);color:var(--blue);display:grid;place-items:center; }
.contact-method div { display:flex;flex-direction:column;gap:4px; }.contact-method small{font-size:8px;letter-spacing:.14em;color:#8b98aa;font-weight:800}.contact-method a,.contact-method strong{font-size:13px}
.contact-assurance { display:flex;gap:11px;align-items:flex-start;margin-top:25px;padding:16px;background:var(--surface);border-radius:11px; }.contact-assurance svg{color:var(--blue);flex:0 0 auto}.contact-assurance p{font-size:10px;line-height:1.5;margin:0}
.contact-form-wrap { background:var(--surface);border:1px solid var(--line);border-radius:22px;padding:35px;box-shadow:var(--shadow-soft); }
.form-heading { padding-bottom:25px;margin-bottom:25px;border-bottom:1px solid var(--line); }.form-heading small{font-size:8px;letter-spacing:.16em;color:var(--blue);font-weight:800}.form-heading h3{font-size:25px;margin:8px 0 0}
.form-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:19px; }
.form-grid label { display:flex;flex-direction:column;gap:8px; }.form-grid label.full{grid-column:1/-1}.form-grid label > span{font-size:10px;font-weight:700;color:#536178}
.form-grid input,.form-grid select,.form-grid textarea { width:100%;border:1px solid var(--line-strong);border-radius:9px;background:white;color:var(--ink);padding:13px 14px;outline:none;transition:.2s; }
.form-grid input,.form-grid select{height:48px}.form-grid textarea{resize:vertical;min-height:135px}.form-grid input:focus,.form-grid select:focus,.form-grid textarea:focus{border-color:var(--blue);box-shadow:0 0 0 3px rgba(30,99,255,.1)}
.choice-row { display:grid;grid-template-columns:repeat(3,1fr);gap:8px; }.choice-row button{height:44px;border:1px solid var(--line-strong);background:white;border-radius:8px;color:#68758a;font-size:11px;font-weight:700;cursor:pointer}.choice-row button.active{border-color:var(--blue);background:var(--blue-soft);color:var(--blue)}
.submit-button { margin-top:24px; }.form-note{font-size:10px;margin:13px 0 0;color:#95a1b3}
.success-message { min-height:520px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:40px; }.success-message > span{width:76px;height:76px;border-radius:50%;background:#e5f8f0;color:var(--green);display:grid;place-items:center;margin-bottom:24px}.success-message small{font-size:8px;letter-spacing:.16em;color:var(--blue);font-weight:800}.success-message h3{font-size:33px;margin:11px 0}.success-message p{max-width:520px;font-size:13px}.success-message .button{margin-top:15px}

.site-footer { background:#0a172c;color:white;padding:78px 0 24px; }
.footer-main { display:grid;grid-template-columns:2fr repeat(3,1fr);gap:70px;padding-bottom:58px; }
.footer-brand p { color:#8192ac;font-size:12px;max-width:290px;margin:20px 0; }.footer-brand > a{color:#9dbbff;font-size:12px;font-weight:700}
.footer-column { display:flex;flex-direction:column;gap:14px; }.footer-column strong{font-size:10px;letter-spacing:.13em;text-transform:uppercase;margin-bottom:7px;color:#dde6f3}.footer-column a{font-size:12px;color:#8192ac}.footer-column a:hover{color:white}
.footer-bottom { border-top:1px solid rgba(255,255,255,.08);padding-top:22px;display:flex;justify-content:space-between;color:#61728e;font-size:9px;letter-spacing:.08em;text-transform:uppercase; }
.footer-legal-links { display:flex;align-items:center;gap:18px; }
.footer-legal-links a,.footer-legal-links button { color:#71829c;font:inherit;text-transform:uppercase;letter-spacing:inherit;background:none;border:0;padding:0;cursor:pointer; }
.footer-legal-links a:hover,.footer-legal-links button:hover { color:#fff; }
.consent-banner { position:fixed;z-index:250;left:24px;right:24px;bottom:20px;max-width:950px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:28px;padding:21px 23px;border:1px solid rgba(86,132,202,.35);border-radius:17px;background:rgba(11,25,48,.97);box-shadow:0 25px 70px rgba(0,0,0,.28);color:#fff;backdrop-filter:blur(18px); }
.consent-banner strong { color:#fff;font:700 15px 'Manrope',sans-serif; }
.consent-banner p { margin:5px 0 0;max-width:590px;color:#9dadc3;font-size:10px; }
.consent-banner p a { color:#9fc0ff;text-decoration:underline; }
.consent-actions { display:flex;gap:9px;flex:0 0 auto; }
.consent-actions .button { min-height:39px;padding:0 15px;font-size:10px; }
.form-error { margin:12px 0 0!important;color:#b42318!important;font-size:11px!important;font-weight:600; }
.form-honeypot { position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important;opacity:0!important;pointer-events:none!important; }
.submit-button:disabled { opacity:.65;cursor:wait; }
.not-found { min-height:70vh;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:60px 20px; }.not-found h1{font-size:100px;color:var(--blue);margin:0}.not-found p{margin:10px 0 25px}

@media (max-width: 1180px) {
  .main-nav { gap:18px; }.main-nav > a{font-size:13px}.portal-link{display:none}
  .hero-layout { grid-template-columns:1fr; }.hero-copy{max-width:820px;padding-bottom:10px}.hero h1{max-width:800px}.network-stage{min-height:590px}.hero{padding-top:70px}.metric-strip{margin-top:55px}
  .industry-grid{grid-template-columns:repeat(2,1fr)}
  .trust-layout{gap:50px}
  .conversation-map{flex-wrap:wrap}.conversation-map>i{width:18px}
}

@media (max-width: 980px) {
  body.nav-open { overflow:hidden; }
  .header-inner{height:74px}.main-nav{display:none;position:fixed;left:0;right:0;top:74px;background:rgba(244,247,251,.98);border-bottom:1px solid var(--line);padding:20px 24px 28px;flex-direction:column;align-items:stretch;gap:0;box-shadow:0 20px 40px rgba(20,45,80,.1)}.main-nav.is-open{display:flex}.main-nav>a{padding:14px 0;font-size:15px}.main-nav>a::after{display:none}.mobile-demo-button{display:flex!important;background:var(--blue);color:white!important;border-radius:9px;padding:14px 16px!important;margin-top:10px;justify-content:center}.header-actions>.button{display:none}.menu-button{display:grid;width:42px;height:42px;place-items:center;border:1px solid var(--line);border-radius:9px;background:white;color:var(--ink);cursor:pointer}
  .section{padding:88px 0}.section-heading{margin-bottom:40px}.section-heading h2{font-size:45px}
  .feature-grid,.module-grid{grid-template-columns:repeat(2,1fr)}
  .position-grid{grid-template-columns:1fr}.position-card{min-height:0}
  .roi-layout{grid-template-columns:1fr}
  .module-proof-strip .shell{grid-template-columns:repeat(2,1fr)}
  .module-proof-strip .shell>div:nth-child(3){border-left:1px solid rgba(255,255,255,.1)}
  .related-module-grid{grid-template-columns:1fr}
  .messaging-automation-layout{grid-template-columns:1fr;gap:48px}.message-workflow-demo{max-width:720px;width:100%;margin:0 auto}
  .split-section{grid-template-columns:1fr;gap:55px}.architecture-copy{max-width:760px}.reverse-mobile .dashboard-frame{order:2}
  .ai-showcase{grid-template-columns:1fr}.ai-capability-list{display:grid;grid-template-columns:repeat(2,1fr)}.capability-row:nth-child(2){border-top:0}.capability-row{padding:20px}.capability-row:nth-child(odd){border-right:1px solid var(--line)}
  .dashboard-frame{transform:none;min-height:500px}.dash-metrics{grid-template-columns:repeat(2,1fr)}
  .deployment-cards{grid-template-columns:1fr}.deployment-cards article{min-height:auto}.deployment-cards ul{grid-template-columns:repeat(3,1fr)}
  .trust-layout{grid-template-columns:1fr}.trust-layout h2{max-width:760px}.cta-panel{flex-direction:column;align-items:flex-start}.cta-actions{align-items:flex-start}
  .solution-row,.solution-row.reverse{grid-template-columns:1fr;gap:42px}.solution-row.reverse .solution-visual,.solution-row.reverse .solution-copy{order:initial}
  .process-grid{grid-template-columns:repeat(3,1fr)}.process-grid article:nth-child(3)::after{display:none}
  .pricing-grid{grid-template-columns:1fr}.price-card{min-height:auto}.price-card>p{min-height:auto}.price-card ul{grid-template-columns:repeat(2,1fr)}
  .faq-layout,.contact-layout{grid-template-columns:1fr;gap:45px}.contact-aside{position:static;max-width:700px}
  .footer-main{grid-template-columns:2fr repeat(3,1fr);gap:35px}
}

@media (max-width: 700px) {
  .shell{width:min(calc(100% - 28px),var(--shell))}.section{padding:72px 0}.section-heading h2{font-size:36px}.section-heading p{font-size:14px}.section-top-row{display:block}.section-top-row .section-heading{margin-bottom:25px}
  .brand-copy strong{font-size:15px}.brand-copy small{font-size:7px}
  .hero{padding-top:55px;min-height:auto}.hero h1{font-size:49px}.hero-copy>p{font-size:16px}.hero-actions{flex-direction:column}.hero-actions .button{width:100%}.hero-assurance{gap:12px 18px}.network-stage{min-height:500px;border-radius:22px}.network-node{min-width:148px;padding:9px}.network-node .node-icon{width:30px;height:30px}.network-node strong{font-size:9px}.network-node span{font-size:6px}.destination{min-width:145px;right:3%}.caller-node,.trunk-node{left:3%}.ai-core{left:36%;top:38%;transform:scale(.8)}.intent-chip{left:8%;right:8%;bottom:4%;justify-content:center}.network-lines{opacity:.7}.metric-strip{grid-template-columns:repeat(2,1fr);border-radius:15px;margin-bottom:0}.metric{border-bottom:1px solid var(--line);padding:20px;min-height:88px}.metric:nth-child(2){border-right:0}.metric:nth-child(n+3){border-bottom:0}.metric strong{font-size:23px}.metric span{font-size:9px}
  .feature-grid,.module-grid,.industry-grid,.use-case-grid{grid-template-columns:1fr}.feature-card{min-height:auto}.industry-card{min-height:300px}
  .messaging-automation-layout{gap:32px}.message-demo-body{min-height:0;padding:19px 15px}.message-bubble{max-width:92%}.message-demo-header{padding:15px;grid-template-columns:40px 1fr}.message-demo-header>span{width:40px;height:40px}.message-demo-header>b{display:none}.message-demo-footer{align-items:flex-start;flex-direction:column;justify-content:center;padding:13px 16px}.messaging-journey li{padding:14px;grid-template-columns:38px 1fr;gap:11px}
  .architecture-visual{padding:50px 18px 25px}.arch-layer{grid-template-columns:37px 1fr;padding:12px}.arch-layer small{font-size:8px}.arch-connectors{padding:0 30px}
  .ai-demo{padding:19px}.caller-transcript p{font-size:15px}.intent-results{grid-template-columns:1fr}.intent-results>div{border-right:0!important;border-bottom:1px solid rgba(255,255,255,.08)!important;min-height:67px}.intent-results>div:last-child{border-bottom:0!important}.ai-capability-list{grid-template-columns:1fr}.capability-row:nth-child(odd){border-right:0}.capability-row{padding:18px 0}
  .dashboard-frame{grid-template-columns:52px 1fr;min-height:0}.dashboard-sidebar{padding:13px 0}.dashboard-sidebar .brand-mark{width:31px;height:31px}.dash-nav{width:34px;height:34px}.dashboard-body{padding:14px}.dash-header{align-items:flex-start}.dash-health{display:none}.dash-metrics{grid-template-columns:1fr 1fr;gap:7px}.dash-metric-card{padding:11px}.dash-metric-card strong{font-size:18px}.dash-metric-card svg{height:25px}.dash-lower{grid-template-columns:1fr}.dash-trunks-panel{display:none}.call-row{grid-template-columns:8px 1fr 1fr 38px}.call-row em{display:none}
  .deployment-cards ul{grid-template-columns:1fr}.trust-points{grid-template-columns:1fr}.trust-section{padding:78px 0}.trust-layout h2{font-size:36px}
  .cta-panel{padding:42px 25px;min-height:0;gap:35px;border-radius:20px}.cta-copy h2{font-size:38px}.cta-actions{width:100%}.cta-actions .button{width:100%}
  .page-intro{min-height:420px}.page-intro-inner{padding:68px 0}.page-intro h1{font-size:45px}.page-intro p{font-size:15px}
  .page-intro-actions{flex-direction:column}.page-intro-actions .button{width:100%}
  .product-demo-frame{padding:7px;border-radius:16px}.product-demo-frame img{border-radius:10px}.product-demo-frame .demo-label{left:17px;top:17px}
  .consent-banner{left:12px;right:12px;bottom:12px;align-items:stretch;flex-direction:column;gap:14px;padding:18px}.consent-actions{display:grid;grid-template-columns:1fr 1fr}
  .roi-result>div{align-items:flex-start;flex-direction:column}.roi-result strong{font-size:24px}
  .language-link{display:none}
  .module-proof-strip .shell{grid-template-columns:1fr}.module-proof-strip .shell>div{border-left:1px solid rgba(255,255,255,.1)}
  .platform-flow{display:grid;grid-template-columns:1fr}.platform-flow>svg{transform:rotate(90deg);justify-self:center}.flow-step{min-height:auto}.reverse-mobile .dashboard-frame{display:none}
  .conversation-map{display:grid;grid-template-columns:repeat(2,1fr)}.conversation-map>i{display:none}.conversation-map>div{width:auto;height:135px}
  .solution-list{gap:65px}.solution-visual{min-height:330px}.orbit-a{width:190px;height:190px}.orbit-b{width:290px;height:290px}.solution-icon{width:90px;height:90px}.mini-node{font-size:8px}.solution-copy ul{grid-template-columns:1fr}.solution-copy h2{font-size:38px}
  .process-grid{grid-template-columns:1fr}.process-grid article{min-height:auto}.process-grid article::after{display:none!important}.process-grid h3{margin-top:25px}
  .price-card{padding:26px}.price-card ul{grid-template-columns:1fr}.faq-layout{gap:10px}.faq-layout .section-heading{margin-bottom:25px}
  .contact-form-wrap{padding:21px}.form-grid{grid-template-columns:1fr}.choice-row{grid-template-columns:1fr}.contact-aside h2{font-size:34px}
  .footer-main{grid-template-columns:1fr 1fr;gap:40px 20px}.footer-brand{grid-column:1/-1}.footer-bottom{flex-direction:column;gap:10px}.site-footer{padding-top:58px}
}

@media (max-width: 440px) {
  .hero h1{font-size:42px}.network-stage{min-height:470px}.network-node{min-width:132px}.destination{min-width:132px}.network-node strong{font-size:8px}.network-node .node-icon{display:none}.ai-core{left:33%;top:37%}.intent-chip strong{font-size:9px}
  .metric strong{font-size:20px}.metric span{font-size:8px}
  .section-heading h2{font-size:32px}.page-intro h1{font-size:38px}
  .footer-main{grid-template-columns:1fr 1fr}
}

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

/* Arabic and shared responsive refinements */
@media (max-width:980px) {
  .mobile-language-button { display:flex!important;justify-content:center;margin-top:7px;padding:12px 16px!important;border:1px solid var(--line);border-radius:9px;color:var(--blue)!important; }
  .rtl-layout .main-nav { left:0;right:0;margin:0;text-align:right; }
  .rtl-layout .main-nav > a { text-align:right; }
  .rtl-layout .main-nav .mobile-demo-button,
  .rtl-layout .main-nav .mobile-language-button { justify-content:center;text-align:center; }
  .arabic-value-strip .shell { grid-template-columns:repeat(2,1fr); }
  .arabic-value-strip .shell > div:nth-child(3) { border-top:1px solid rgba(255,255,255,.1); }
  .arabic-value-strip .shell > div:nth-child(4) { border-top:1px solid rgba(255,255,255,.1); }
  .arabic-capabilities-section .feature-grid { grid-template-columns:repeat(2,1fr); }
  .arabic-sector-grid { grid-template-columns:repeat(2,1fr); }
  .arabic-process-layout { grid-template-columns:1fr;gap:35px; }
  .rtl-layout .footer-main { grid-template-columns:2fr 1fr 1fr; }
}
@media (max-width:700px) {
  .header-actions .language-link { display:none; }
  .arabic-page .page-intro { min-height:0; }
  .arabic-page .page-intro-inner { padding:75px 0; }
  .arabic-page .page-intro h1 { font-size:clamp(38px,12vw,52px);line-height:1.35; }
  .arabic-page .page-intro p { font-size:15px;line-height:1.95; }
  .arabic-page .page-intro-actions { align-items:stretch; }
  .arabic-page .section-heading h2 { font-size:34px;line-height:1.5; }
  .arabic-value-strip .shell { width:100%; }
  .arabic-value-strip .shell > div { min-height:120px;padding:22px 18px; }
  .arabic-capabilities-section .feature-grid,
  .arabic-sector-grid,
  .arabic-deployment-grid { grid-template-columns:1fr; }
  .arabic-capabilities-section .feature-card,
  .arabic-sector-grid article,
  .arabic-deployment-grid article { min-height:0; }
  .arabic-process-layout li { grid-template-columns:44px 1fr;padding:18px;gap:14px; }
  .arabic-process-layout li > b { width:42px;height:42px; }
  .arabic-contact-section .contact-layout { gap:30px; }
  .rtl-layout .footer-main { grid-template-columns:1fr 1fr; }
  .rtl-layout .footer-brand { grid-column:1/-1; }
}
@media (max-width:440px) {
  .arabic-page .page-intro h1 { font-size:37px; }
  .arabic-page .section-heading h2 { font-size:30px; }
  .arabic-value-strip .shell { grid-template-columns:1fr; }
  .arabic-value-strip .shell > div { border-top:1px solid rgba(255,255,255,.1); }
  .arabic-value-strip .shell > div:first-child { border-top:0; }
  .rtl-layout .footer-main { grid-template-columns:1fr; }
  .rtl-layout .footer-brand { grid-column:auto; }
}

/* Complete-site pages */
.solution-actions { display:flex; align-items:center; gap:24px; flex-wrap:wrap; margin-top:24px; }
.muted-link { color:var(--muted)!important; }
.support-actions { justify-content:center; margin-top:38px; }
.content-page { max-width:920px; }
.content-card { background:#fff; border:1px solid var(--line); border-radius:16px; padding:28px 30px; margin-bottom:16px; box-shadow:0 8px 30px rgba(24,52,91,.04); }
.content-card h2 { font-size:21px; margin:0 0 10px; }
.content-card p { margin:0; }
.content-page .contact-assurance { margin-top:28px; }
.content-page .contact-assurance a { color:var(--blue); font-weight:700; }
@media (max-width:1180px) {
  .main-nav { gap:15px; }
  .main-nav > a { font-size:12.5px; }
}

/* Enhanced product modules, configurator, resources, release notes and blog */
.module-showcase-section { background: #0b1930; color: #fff; overflow: hidden; position: relative; }
.module-showcase-section::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 90% 10%,rgba(30,99,255,.22),transparent 28%),linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size:auto,30px 30px,30px 30px; }
.module-showcase-section .shell { position:relative; z-index:2; }
.module-showcase-section .section-heading h2,.module-showcase-section .section-heading p { color:#fff; }
.module-showcase-section .section-heading p { color:#8ea0ba; }
.module-showcase-section .button-outline { color:#fff; border-color:rgba(255,255,255,.2); background:rgba(255,255,255,.04); }
.product-module-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.product-module-card { min-height:285px; display:flex; flex-direction:column; position:relative; padding:25px; border:1px solid rgba(255,255,255,.1); border-radius:17px; background:rgba(255,255,255,.045); color:#fff; overflow:hidden; transition:.25s ease; }
.product-module-card::after { content:''; position:absolute; width:140px; height:140px; border:1px solid rgba(78,136,255,.14); border-radius:50%; right:-75px; top:-70px; }
.product-module-card:hover { transform:translateY(-5px); background:rgba(255,255,255,.075); border-color:rgba(83,141,255,.45); box-shadow:0 20px 45px rgba(0,0,0,.22); }
.product-module-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:42px; }
.product-module-top > span { width:48px; height:48px; border-radius:12px; background:rgba(30,99,255,.2); color:#80adff; display:grid; place-items:center; border:1px solid rgba(90,147,255,.24); }
.product-module-top small { font:800 8px 'Manrope'; letter-spacing:.16em; color:#71829c; }
.product-module-card h3 { font-size:19px; margin:0 0 10px; color:#fff; }
.product-module-card p { font-size:12px; color:#8293ac; margin:0 0 26px; }
.product-module-card b { margin-top:auto; display:flex; align-items:center; gap:8px; color:#a8c5ff; font-size:11px; }
.product-module-grid .product-module-card:last-child { grid-column:auto; }
.catalog-grid .product-module-card { background:#fff; color:var(--ink); border-color:var(--line); min-height:300px; box-shadow:0 9px 28px rgba(23,51,90,.05); }
.catalog-grid .product-module-card:hover { border-color:var(--blue); box-shadow:var(--shadow-soft); }
.catalog-grid .product-module-card h3 { color:var(--ink); }
.catalog-grid .product-module-card p { color:var(--muted); }
.catalog-grid .product-module-card b { color:var(--blue); }
.catalog-grid .product-module-top small { color:#9ba8ba; }
.module-catalog-section { background:var(--surface); }
.module-composition-section { background:#fff; }
.catalog-toolbar { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:30px; padding-bottom:22px; border-bottom:1px solid var(--line); }
.catalog-toolbar > div:first-child { display:grid; gap:5px; }
.catalog-toolbar small { color:#8795a9; font:800 9px 'Manrope',sans-serif; letter-spacing:.16em; }
.catalog-toolbar strong { color:var(--ink); font:700 21px 'Manrope',sans-serif; }
.module-filters { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:8px; }
.module-filters button { appearance:none; border:1px solid var(--line); background:#fff; color:#647289; border-radius:999px; padding:9px 14px; font:700 11px 'Inter',sans-serif; cursor:pointer; transition:.2s ease; }
.module-filters button:hover { border-color:#9db9f5; color:var(--blue); }
.module-filters button:focus-visible { outline:3px solid rgba(30,99,255,.18); outline-offset:2px; }
.module-filters button.active { color:#fff; border-color:var(--blue); background:var(--blue); box-shadow:0 8px 18px rgba(30,99,255,.18); }
.catalog-grid .product-module-card { min-height:340px; }
.module-highlights { display:flex; flex-wrap:wrap; gap:6px; margin:2px 0 24px; }
.module-highlights span { color:#52627a; background:#f2f6fc; border:1px solid #e2e9f3; border-radius:999px; padding:5px 8px; font-size:9px; font-weight:700; }
.composition-visual { min-height:440px; padding:38px; border-radius:24px; border:1px solid var(--line); background:linear-gradient(145deg,#f8fbff,#edf3fb); display:grid; grid-template-columns:repeat(2,1fr); gap:12px; position:relative; overflow:hidden; }
.composition-visual::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(30,99,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(30,99,255,.045) 1px,transparent 1px); background-size:25px 25px; }
.composition-visual > div { position:relative; z-index:2; display:flex; align-items:center; gap:15px; padding:20px; background:#fff; border:1px solid var(--line); border-radius:13px; box-shadow:0 10px 25px rgba(23,53,96,.06); transform:translateY(calc((var(--i) % 2) * 8px)); }
.composition-visual span { width:38px; height:38px; border-radius:10px; background:var(--blue-soft); color:var(--blue); display:grid; place-items:center; font:800 9px 'Manrope'; }
.composition-visual strong { font-size:13px; }
.resources-preview-section { background:linear-gradient(180deg,#f4f7fb,#fff); }
.resource-preview-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.resource-preview-card { min-height:310px; background:#fff; border:1px solid var(--line); border-radius:18px; padding:29px; display:flex; flex-direction:column; transition:.25s ease; position:relative; overflow:hidden; }
.resource-preview-card::after { content:''; position:absolute; width:160px; height:160px; border-radius:50%; border:1px solid rgba(30,99,255,.08); right:-92px; bottom:-90px; }
.resource-preview-card:hover { transform:translateY(-5px); border-color:rgba(30,99,255,.35); box-shadow:var(--shadow-soft); }
.resource-preview-card > span { width:51px; height:51px; border-radius:13px; display:grid; place-items:center; background:var(--blue-soft); color:var(--blue); margin-bottom:42px; }
.resource-preview-card > small { color:var(--blue); font:800 8px 'Manrope'; letter-spacing:.15em; }
.resource-preview-card h3 { font-size:23px; margin:10px 0; }
.resource-preview-card p { font-size:12px; }
.resource-preview-card b { margin-top:auto; color:var(--ink); display:flex; align-items:center; gap:8px; font-size:11px; }
.resource-page-grid { grid-template-columns:repeat(3,1fr); }
.resources-page-section { background:var(--surface); }
.configurator-section { background:#f4f7fb; }
.configurator-layout { display:grid; grid-template-columns:1.05fr .95fr; gap:24px; align-items:start; }
.config-panel,.recommendation-panel { border-radius:22px; border:1px solid var(--line); box-shadow:var(--shadow-soft); }
.config-panel { background:#fff; padding:34px; }
.config-fields { display:grid; gap:26px; }
.config-fields > label { display:flex; flex-direction:column; gap:12px; }
.config-fields > label > span { display:flex; justify-content:space-between; align-items:center; color:#526177; font-size:12px; font-weight:700; }
.config-fields > label > span b { color:var(--blue); font:800 14px 'Manrope'; }
.config-fields input[type="range"] { width:100%; accent-color:var(--blue); }
.recommendation-panel { position:sticky; top:105px; padding:34px; background:#0b1930; color:#fff; overflow:hidden; }
.recommendation-panel::after { content:''; position:absolute; width:260px; height:260px; border-radius:50%; border:1px solid rgba(75,133,255,.14); right:-130px; top:-130px; }
.recommendation-panel > small { position:relative; z-index:2; color:#7da8ff; font:800 8px 'Manrope'; letter-spacing:.16em; }
.recommendation-panel h2 { position:relative; z-index:2; font-size:37px; margin:12px 0 8px; color:#fff; }
.recommendation-panel > p { position:relative; z-index:2; color:#8fa0b9; font-size:13px; }
.recommendation-grid { position:relative; z-index:2; display:grid; grid-template-columns:repeat(2,1fr); border:1px solid rgba(255,255,255,.1); border-radius:13px; overflow:hidden; margin:28px 0; }
.recommendation-grid div { min-height:84px; padding:16px; border-right:1px solid rgba(255,255,255,.08); border-bottom:1px solid rgba(255,255,255,.08); display:flex; flex-direction:column; gap:8px; }
.recommendation-grid div:nth-child(2n) { border-right:0; }
.recommendation-grid div:nth-child(n+5) { border-bottom:0; }
.recommendation-grid span { color:#697c99; font-size:7px; letter-spacing:.13em; font-weight:800; }
.recommendation-grid strong { font-size:12px; }
.recommendation-modules { position:relative; z-index:2; display:grid; gap:10px; margin-bottom:25px; }
.recommendation-modules > span { color:#7f90aa; font-size:8px; letter-spacing:.13em; text-transform:uppercase; font-weight:800; margin-bottom:4px; }
.recommendation-modules b { display:flex; gap:8px; align-items:center; color:#dbe6f5; font-size:11px; }
.recommendation-modules svg { color:#65d8aa; }
.recommendation-panel .button { position:relative; z-index:2; width:100%; }
.recommendation-panel .profile-download { margin-top:9px;color:#fff;border-color:rgba(255,255,255,.2);background:rgba(255,255,255,.04); }
.recommendation-panel em { position:relative; z-index:2; display:block; color:#657894; font-size:9px; line-height:1.5; margin-top:14px; font-style:normal; }
.roi-section { background:var(--surface); }
.roi-layout { display:grid;grid-template-columns:1.05fr .95fr;gap:24px;align-items:start; }
.roi-layout .config-panel { display:grid;gap:24px; }
.roi-layout .config-panel h2 { font-size:26px;margin-bottom:5px; }
.roi-layout .config-panel label { display:grid;gap:10px; }
.roi-layout .config-panel label span { display:flex;justify-content:space-between;color:#65748a;font-size:11px;font-weight:700; }
.roi-layout .config-panel label b { color:var(--blue); }
.roi-result { padding:34px;border-radius:22px;background:#0b1930;color:#fff;box-shadow:var(--shadow-soft); }
.roi-result>small { color:#7da8ff;font:800 8px 'Manrope',sans-serif;letter-spacing:.16em; }
.roi-result>div { display:flex;justify-content:space-between;gap:20px;align-items:end;padding:23px 0;border-bottom:1px solid rgba(255,255,255,.1); }
.roi-result span { color:#91a2ba;font-size:11px; }
.roi-result strong { color:#fff;font-size:27px; }
.roi-result p { color:#71849f;font-size:9px;margin:18px 0 23px; }
.roi-result .button { width:100%; }
.rtl-layout,
.rtl-layout button,
.rtl-layout input,
.rtl-layout select,
.rtl-layout textarea {
  font-family:'Noto Sans Arabic',Tahoma,'Segoe UI',Arial,sans-serif;
}
.rtl-layout h1,
.rtl-layout h2,
.rtl-layout h3,
.rtl-layout h4,
.rtl-layout .brand-copy {
  font-family:'Noto Sans Arabic',Tahoma,'Segoe UI',Arial,sans-serif;
  letter-spacing:0;
}
.rtl-layout p { line-height:1.95; }
.rtl-layout .brand-copy strong { font-family:system-ui,-apple-system,'Segoe UI',Arial,sans-serif;letter-spacing:.12em; }
.rtl-layout .brand-copy small { letter-spacing:0;font-size:8px; }
.rtl-layout .main-nav { margin-left:0;margin-right:auto; }
.rtl-layout .main-nav > a::after { left:100%;right:0; }
.rtl-layout .main-nav > a:hover::after,
.rtl-layout .main-nav > a.active::after { left:0; }
.rtl-layout .button svg,
.rtl-layout .text-link svg { transform:scaleX(-1); }
.rtl-layout .text-link:hover svg { transform:scaleX(-1) translateX(4px); }
.rtl-layout .eyebrow { letter-spacing:0; }
.rtl-layout .skip-link { left:auto;right:16px; }
.arabic-page { font-family:'Noto Sans Arabic',Tahoma,'Segoe UI',Arial,sans-serif; }
.arabic-page section[id] { scroll-margin-top:95px; }
.arabic-page .page-intro { min-height:610px; }
.arabic-page .page-intro-inner { max-width:1050px; }
.arabic-page .page-intro h1 { max-width:980px;font-size:clamp(48px,6vw,77px);line-height:1.25;letter-spacing:0; }
.arabic-page .page-intro p { max-width:850px;font-size:18px;line-height:2; }
.arabic-page .page-intro-actions { gap:12px; }
.arabic-page .feature-card,
.arabic-page .section-heading { text-align:right; }
.arabic-page .section-heading { margin-left:auto;margin-right:0; }
.arabic-page .section-heading h2 { line-height:1.45;letter-spacing:0; }
.arabic-page .section-heading p { line-height:2; }
.arabic-page .feature-icon { margin-left:auto;margin-right:0; }
.arabic-page .feature-card h3 { line-height:1.55;letter-spacing:0; }
.arabic-page .feature-card p { line-height:1.95; }
.arabic-value-strip { background:#0b1930;color:#fff; }
.arabic-value-strip .shell { display:grid;grid-template-columns:repeat(4,1fr); }
.arabic-value-strip .shell > div { min-height:132px;padding:28px 25px;display:flex;flex-direction:column;justify-content:center;border-inline-start:1px solid rgba(255,255,255,.1); }
.arabic-value-strip .shell > div:last-child { border-inline-end:1px solid rgba(255,255,255,.1); }
.arabic-value-strip strong { font-size:15px;line-height:1.5; }
.arabic-value-strip span { margin-top:7px;color:#93a5bf;font-size:11px;line-height:1.8; }
.arabic-capabilities-section { background:#fff; }
.arabic-capabilities-section .feature-grid { grid-template-columns:repeat(3,1fr); }
.arabic-capabilities-section .feature-card { min-height:285px; }
.arabic-sectors-section { background:var(--surface); }
.arabic-sector-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:16px; }
.arabic-sector-grid article { min-height:285px;padding:29px;background:#fff;border:1px solid var(--line);border-radius:18px;box-shadow:0 12px 35px rgba(21,45,85,.05); }
.arabic-sector-grid article > span,
.arabic-deployment-grid article > span { width:50px;height:50px;display:grid;place-items:center;border-radius:13px;background:var(--blue-soft);color:var(--blue); }
.arabic-sector-grid h3,
.arabic-deployment-grid h3 { margin:24px 0 10px;font-size:20px;line-height:1.5;letter-spacing:0; }
.arabic-sector-grid p,
.arabic-deployment-grid p { margin:0;font-size:12px;line-height:2; }
.arabic-deployment-section { background:#fff; }
.arabic-deployment-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:18px;counter-reset:deployment; }
.arabic-deployment-grid article { position:relative;min-height:315px;padding:32px;background:var(--surface);border:1px solid var(--line);border-radius:20px;overflow:hidden; }
.arabic-deployment-grid article > small { position:absolute;left:24px;top:22px;color:#c5d1e0;font-size:27px;font-weight:800;direction:ltr; }
.arabic-process-section { background:#0b1930;color:#fff; }
.arabic-process-layout { display:grid;grid-template-columns:.9fr 1.1fr;gap:80px;align-items:start; }
.arabic-process-layout .section-heading h2 { color:#fff; }
.arabic-process-layout .section-heading p { color:#8fa1bb; }
.arabic-process-layout ol { list-style:none;padding:0;margin:0;display:grid;gap:14px; }
.arabic-process-layout li { display:grid;grid-template-columns:52px 1fr;gap:18px;align-items:start;padding:22px;border:1px solid rgba(255,255,255,.1);border-radius:15px;background:rgba(255,255,255,.035); }
.arabic-process-layout li > b { width:48px;height:48px;display:grid;place-items:center;border-radius:12px;background:var(--blue);font-size:16px; }
.arabic-process-layout h3 { margin:0 0 5px;color:#fff;font-size:17px;letter-spacing:0; }
.arabic-process-layout p { margin:0;color:#8799b3;font-size:11px;line-height:1.9; }
.arabic-contact-section { background:var(--surface); }
.arabic-contact-section .contact-aside { text-align:right; }
.arabic-contact-section .contact-method,
.arabic-contact-section .contact-assurance { flex-direction:row; }
.arabic-contact-section .form-heading small { letter-spacing:0;text-transform:none; }
.arabic-contact-section .form-grid input,
.arabic-contact-section .form-grid textarea,
.arabic-contact-section .form-grid select { text-align:right; }
.arabic-contact-section input[dir="ltr"] { text-align:left; }
.arabic-contact-section .submit-button { display:flex;align-items:center;justify-content:center;gap:8px; }
.rtl-layout .site-footer { text-align:right; }
.rtl-layout .footer-main { grid-template-columns:2fr repeat(2,1fr); }
.rtl-layout .footer-column strong,
.rtl-layout .footer-bottom,
.rtl-layout .footer-legal-links button { letter-spacing:0;text-transform:none; }
.rtl-layout .consent-banner { direction:rtl;text-align:right; }
.release-section { background:var(--surface); }
.release-toolbar { display:flex; justify-content:space-between; align-items:center; gap:20px; margin-bottom:28px; }
.release-toolbar > div { display:flex; gap:8px; flex-wrap:wrap; }
.release-toolbar button,.blog-toolbar button { border:1px solid var(--line); background:#fff; border-radius:999px; padding:9px 14px; color:#66758a; font-size:10px; font-weight:700; cursor:pointer; }
.release-toolbar button.active,.blog-toolbar button.active { background:var(--ink); color:#fff; border-color:var(--ink); }
.release-toolbar > span { display:flex; gap:8px; align-items:center; color:#77869b; font-size:10px; }
.release-toolbar > span svg { color:var(--blue); }
.release-list { display:grid; gap:18px; }
.release-card { display:grid; grid-template-columns:240px 1fr; background:#fff; border:1px solid var(--line); border-radius:20px; overflow:hidden; box-shadow:0 10px 35px rgba(22,50,91,.05); }
.release-version { padding:32px; background:#0b1930; color:#fff; display:flex; flex-direction:column; min-height:260px; }
.release-version small { color:#79a8ff; font:800 8px 'Manrope'; letter-spacing:.15em; }
.release-version strong { font:800 42px 'Manrope'; margin:25px 0 8px; }
.release-version span { color:#8191aa; font-size:10px; margin-top:auto; }
.release-body { padding:34px; }
.release-body > h2 { font-size:26px; margin:0 0 8px; }
.release-body > p { font-size:13px; margin-bottom:27px; }
.release-group { display:grid; grid-template-columns:130px 1fr; gap:18px; padding:20px 0; border-top:1px solid var(--line); }
.release-group h3 { font-size:11px; margin:0; color:var(--blue); text-transform:uppercase; letter-spacing:.08em; }
.release-group ul { list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.release-group li { display:flex; align-items:center; gap:8px; color:#536178; font-size:11px; }
.release-group li svg { color:var(--green); }
.blog-section { background:var(--surface); }
.blog-toolbar { display:flex; justify-content:space-between; align-items:center; gap:18px; margin-bottom:32px; }
.blog-toolbar label { min-width:320px; height:45px; display:flex; align-items:center; gap:10px; padding:0 14px; border:1px solid var(--line); background:#fff; border-radius:10px; color:#8b98aa; }
.blog-toolbar input { width:100%; border:0; outline:0; background:transparent; font-size:12px; }
.blog-toolbar > div { display:flex; gap:7px; flex-wrap:wrap; justify-content:flex-end; }
.blog-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.blog-card { border:1px solid var(--line); border-radius:19px; background:#fff; overflow:hidden; display:grid; grid-template-columns:190px 1fr; min-height:310px; box-shadow:0 10px 32px rgba(22,51,91,.045); }
.blog-card.featured-post { grid-column:1/-1; grid-template-columns:1fr 1.35fr; min-height:385px; }
.blog-visual { position:relative; background:#0b1930; color:#fff; padding:25px; display:flex; flex-direction:column; justify-content:space-between; overflow:hidden; }
.blog-visual::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 80% 20%,rgba(30,99,255,.35),transparent 34%),linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px); background-size:auto,28px 28px,28px 28px; }
.blog-visual > span,.blog-visual small { position:relative; z-index:2; }
.blog-visual > span { width:64px; height:64px; border-radius:16px; background:rgba(30,99,255,.22); color:#8bb4ff; display:grid; place-items:center; border:1px solid rgba(107,157,255,.2); }
.blog-visual small { color:#71829e; font:800 7px 'Manrope'; letter-spacing:.12em; }
.blog-card-body { padding:27px; display:flex; flex-direction:column; }
.blog-meta { display:flex; gap:12px; flex-wrap:wrap; color:#8190a4; font-size:8px; text-transform:uppercase; letter-spacing:.08em; font-weight:700; }
.blog-meta span:first-child { color:var(--blue); }
.blog-card h2 { font-size:22px; line-height:1.25; margin:20px 0 11px; }
.featured-post h2 { font-size:34px; }
.blog-card p { font-size:12px; }
.blog-card .text-link { margin-top:auto; }
.empty-state { min-height:260px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; color:#8a98aa; }
.empty-state svg { color:var(--blue); }
.empty-state h3 { margin:15px 0 6px; }
.article-hero { min-height:620px; background:#0b1930; color:#fff; position:relative; overflow:hidden; }
.article-hero .blueprint-grid { opacity:.12; }
.article-hero-inner { position:relative; z-index:2; padding:120px 0 90px; max-width:1000px; }
.article-back { color:#92b6ff; font-size:11px; font-weight:700; }
.article-hero .blog-meta { margin:50px 0 22px; color:#778aa8; }
.article-hero h1 { max-width:950px; color:#fff; font-size:clamp(48px,6.2vw,78px); line-height:1.05; margin:0 0 28px; letter-spacing:-.04em; }
.article-hero p { max-width:760px; color:#9aabc2; font-size:18px; }
.article-section { background:#fff; }
.article-layout { display:grid; grid-template-columns:1fr 260px; gap:90px; align-items:start; max-width:1040px; }
.article-content > section { margin-bottom:48px; }
.article-content h2 { font-size:30px; margin-bottom:14px; }
.article-content p { font-size:16px; line-height:1.85; color:#536178; }
.article-callout { display:flex; gap:18px; padding:25px; border:1px solid #cfe0ff; border-radius:15px; background:var(--blue-soft); }
.article-callout > svg { color:var(--blue); flex:0 0 auto; }
.article-callout strong { font-size:13px; }
.article-callout p { font-size:11px; margin:5px 0 0; }
.article-aside { position:sticky; top:110px; border:1px solid var(--line); border-radius:14px; padding:22px; display:flex; flex-direction:column; gap:6px; background:var(--surface); }
.article-aside > small { font:800 8px 'Manrope'; letter-spacing:.14em; color:#8c99aa; margin-bottom:10px; }
.article-aside a { display:flex; align-items:center; justify-content:space-between; padding:13px 0; border-top:1px solid var(--line); color:var(--ink); font-size:11px; font-weight:700; }
.downloads-section { background:var(--surface); }
.download-notice { display:flex; gap:15px; align-items:flex-start; padding:21px; background:#fff8e8; border:1px solid #f3d99b; border-radius:14px; margin-bottom:22px; }
.download-notice > svg { color:#bb7a00; flex:0 0 auto; }
.download-notice strong { font-size:12px; }
.download-notice p { font-size:10px; margin:5px 0 0; }
.download-list { display:grid; gap:12px; }
.download-list article { display:grid; grid-template-columns:55px 1fr 130px; gap:18px; align-items:center; padding:24px; background:#fff; border:1px solid var(--line); border-radius:15px; }
.download-list article > span { width:50px; height:50px; border-radius:12px; background:var(--blue-soft); color:var(--blue); display:grid; place-items:center; }
.download-list small { color:var(--blue); font:800 8px 'Manrope'; letter-spacing:.13em; }
.download-list h3 { font-size:16px; margin:5px 0; }
.download-list p { font-size:11px; margin:0; }
.download-list .download-access { min-height:40px;display:flex;align-items:center;justify-content:center;gap:7px;border:1px solid var(--line);border-radius:8px;background:#f4f7fc;color:var(--blue);font-size:9px;font-weight:800; }
.download-list .download-access:hover { border-color:var(--blue);background:var(--blue);color:#fff; }

@media (max-width:1180px) {
  .product-module-grid { grid-template-columns:repeat(3,1fr); }
  .product-module-grid .product-module-card:last-child { grid-column:auto; }
}
@media (max-width:980px) {
  .product-module-grid { grid-template-columns:repeat(2,1fr); }
  .resource-preview-grid,.resource-page-grid { grid-template-columns:repeat(2,1fr); }
  .configurator-layout { grid-template-columns:1fr; }
  .recommendation-panel { position:static; }
  .blog-grid { grid-template-columns:1fr; }
  .blog-card.featured-post { grid-column:auto; }
  .release-card { grid-template-columns:190px 1fr; }
  .article-layout { grid-template-columns:1fr; gap:40px; }
  .article-aside { position:static; }
}
@media (max-width:700px) {
  .catalog-toolbar { align-items:flex-start; flex-direction:column; }
  .module-filters { justify-content:flex-start; }
  .product-module-grid,.resource-preview-grid,.resource-page-grid { grid-template-columns:1fr; }
  .product-module-card { min-height:245px; }
  .composition-visual { grid-template-columns:1fr; min-height:auto; padding:22px; }
  .config-panel,.recommendation-panel { padding:23px; }
  .recommendation-grid { grid-template-columns:1fr; }
  .recommendation-grid div { border-right:0; border-bottom:1px solid rgba(255,255,255,.08)!important; }
  .recommendation-grid div:last-child { border-bottom:0!important; }
  .release-toolbar,.blog-toolbar { align-items:stretch; flex-direction:column; }
  .release-toolbar > span { margin-top:5px; }
  .release-card { grid-template-columns:1fr; }
  .release-version { min-height:180px; }
  .release-group { grid-template-columns:1fr; gap:10px; }
  .blog-toolbar label { min-width:0; width:100%; }
  .blog-toolbar > div { justify-content:flex-start; }
  .blog-card,.blog-card.featured-post { grid-template-columns:1fr; min-height:0; }
  .blog-visual { min-height:190px; }
  .featured-post h2,.blog-card h2 { font-size:23px; }
  .article-hero { min-height:0; }
  .article-hero-inner { padding:90px 0 70px; }
  .article-hero .blog-meta { margin-top:35px; }
  .article-hero h1 { font-size:44px; }
  .article-hero p { font-size:15px; }
  .article-content h2 { font-size:25px; }
  .article-content p { font-size:14px; }
  .download-list article { grid-template-columns:46px 1fr; }
  .download-list .download-access { grid-column:1/-1; width:100%; }
}
