@font-face {
    font-family: 'Vazirmatn';
    src: url('fonts/vazir-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('fonts/vazir-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('fonts/vazir-700.woff2') format('woff2');
    font-weight: 700 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --navy-950: #041126;
    --navy-900: #071c3f;
    --navy-800: #0b2b57;
    --blue-600: #176cf5;
    --blue-500: #2a82ff;
    --cyan-400: #38d9dc;
    --cyan-300: #61e8e7;
    --ink: #10213d;
    --muted: #64748b;
    --surface: #f5f8fc;
    --white: #fff;
    --border: #e5edf6;
    --shadow: 0 22px 60px rgba(13, 43, 82, .11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: 'Vazirmatn', Tahoma, sans-serif;
    line-height: 1.75;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

body,
button,
a {
    font-family: 'Vazirmatn', Tahoma, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    color: inherit;
}

img {
    max-width: 100%;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: 78px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}

.site-header.is-scrolled {
    height: 70px;
    background: rgba(5, 24, 55, .96);
    box-shadow: 0 8px 30px rgba(4, 17, 38, .18);
    backdrop-filter: blur(16px);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(25, 126, 239, .18));
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.brand-copy strong {
    color: var(--white);
    font-size: 1.06rem;
    font-weight: 900;
}

.brand-copy small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .6);
    font-size: .62rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 31px;
    margin-right: auto;
}

.desktop-nav a {
    position: relative;
    color: rgba(255, 255, 255, .78);
    font-size: .82rem;
    font-weight: 500;
    transition: color .2s ease;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    border-radius: 4px;
    background: var(--cyan-400);
    transition: width .25s ease;
}

.desktop-nav a:hover {
    color: var(--white);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 40px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 13px;
    font-size: .79rem;
    font-weight: 700;
    background: rgba(255, 255, 255, .08);
    transition: background .2s ease, transform .2s ease;
}

.header-cta:hover {
    background: rgba(255, 255, 255, .16);
    transform: translateY(-2px);
}

.menu-toggle,
.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    min-height: 720px;
    padding: 132px 0 92px;
    color: var(--white);
    background:
        radial-gradient(circle at 74% 32%, rgba(30, 130, 255, .3), transparent 29%),
        radial-gradient(circle at 14% 15%, rgba(49, 216, 220, .12), transparent 23%),
        linear-gradient(135deg, #06162f 0%, #092951 52%, #074b7b 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .25;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to left, #000, transparent 74%);
}

.hero-orb {
    position: absolute;
    border: 1px solid rgba(80, 224, 228, .14);
    border-radius: 50%;
}

.hero-orb-one {
    width: 590px;
    height: 590px;
    left: -320px;
    top: -260px;
}

.hero-orb-two {
    width: 430px;
    height: 430px;
    right: -250px;
    bottom: 20px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 55px;
    align-items: center;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1e72e8;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: -.01em;
}

.eyebrow {
    color: var(--cyan-300);
    padding: 8px 14px;
    border: 1px solid rgba(97, 232, 231, .22);
    border-radius: 99px;
    background: rgba(36, 200, 206, .08);
}

.eyebrow span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan-400);
    box-shadow: 0 0 0 5px rgba(56, 217, 220, .12);
}

.hero h1 {
    max-width: 630px;
    margin: 20px 0 19px;
    font-size: clamp(2.35rem, 4vw, 3.65rem);
    line-height: 1.48;
    letter-spacing: -.045em;
    font-weight: 900;
}

.hero h1 em {
    color: var(--cyan-300);
    font-style: normal;
}

.hero-content > p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .71);
    font-size: .94rem;
    line-height: 2.05;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    min-height: 53px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border-radius: 14px;
    font-size: .92rem;
    font-weight: 800;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

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

.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, #25d0d5, #1672f4 68%);
    box-shadow: 0 12px 28px rgba(18, 111, 242, .28);
}

.button-primary:hover {
    box-shadow: 0 17px 35px rgba(18, 111, 242, .38);
}

.button-primary span {
    font-size: 1.25rem;
}

.button-ghost {
    color: rgba(255, 255, 255, .87);
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .06);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, .12);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 23px;
    margin-top: 27px;
    color: rgba(255, 255, 255, .58);
    font-size: .76rem;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.check-icon {
    display: inline-grid;
    width: 19px;
    height: 19px;
    place-items: center;
    color: var(--cyan-300);
    border: 1px solid rgba(97, 232, 231, .45);
    border-radius: 50%;
    font-size: .66rem;
    font-style: normal;
}

.hero-visual {
    position: relative;
    min-height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-glow {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(42, 130, 255, .32);
    filter: blur(80px);
}

.app-shell {
    position: relative;
    z-index: 2;
    width: 398px;
    padding: 21px;
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 31px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 35px 80px rgba(2, 15, 36, .42);
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}

.app-shell::after {
    content: '';
    position: absolute;
    inset: 8px;
    pointer-events: none;
    border: 1px solid rgba(9, 59, 112, .05);
    border-radius: 24px;
}

.app-topbar,
.app-greeting,
.patient-card,
.ai-float-card,
.app-brand-mini {
    display: flex;
    align-items: center;
}

.app-topbar {
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #edf2f7;
}

.app-brand-mini {
    gap: 9px;
}

.app-brand-mini img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.app-brand-mini div,
.app-greeting > div,
.patient-info,
.ai-float-card > div,
.floating-badge div {
    display: flex;
    flex-direction: column;
}

.app-brand-mini strong {
    font-size: .77rem;
}

.app-brand-mini small {
    color: #8390a4;
    font-size: .56rem;
}

.doctor-avatar {
    width: 33px;
    height: 33px;
    display: grid;
    place-items: center;
    color: #176cf5;
    border-radius: 10px;
    background: #e8f1ff;
    font-size: .72rem;
    font-weight: 800;
}

.app-greeting {
    justify-content: space-between;
    padding: 20px 2px 14px;
}

.app-greeting small {
    color: #8390a4;
    font-size: .65rem;
}

.app-greeting strong {
    margin-top: 3px;
    font-size: .9rem;
}

.patient-count {
    width: 70px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #176cf5;
    border: 1px solid #dce9ff;
    border-radius: 12px;
    background: #f4f8ff;
}

.patient-count b {
    font-size: .93rem;
}

.patient-count span {
    color: #75849a;
    font-size: .5rem;
}

.search-mock {
    padding: 10px 13px;
    margin: 1px 0 12px;
    color: #9aa6b7;
    border: 1px solid #e6edf5;
    border-radius: 11px;
    background: #f8fafc;
    font-size: .66rem;
}

.search-mock span {
    margin-left: 7px;
    color: #5b6d84;
    font-size: 1rem;
}

.patient-card {
    gap: 11px;
    padding: 12px;
    margin-top: 9px;
    border: 1px solid #e8eef5;
    border-radius: 14px;
    background: #fff;
}

.patient-card.active {
    border-color: #d4e5ff;
    box-shadow: 0 8px 20px rgba(24, 108, 224, .08);
}

.patient-avatar {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    flex: 0 0 39px;
    color: #166bf2;
    border-radius: 12px;
    background: linear-gradient(135deg, #dfeeff, #e7fbfb);
    font-size: .74rem;
    font-weight: 800;
}

.patient-avatar.second {
    color: #7558ce;
    background: #eeeaff;
}

.patient-info {
    flex: 1;
}

.patient-info strong {
    font-size: .72rem;
}

.patient-info span {
    color: #8b98a9;
    font-size: .56rem;
}

.status-pill {
    padding: 4px 8px;
    color: #159f79;
    border-radius: 99px;
    background: #e7fbf4;
    font-size: .52rem;
    font-weight: 700;
}

.chevron {
    color: #95a1b2;
    font-size: 1.2rem;
}

.ai-float-card {
    gap: 10px;
    padding: 13px;
    margin-top: 14px;
    color: #fff;
    border-radius: 15px;
    background: linear-gradient(125deg, #0c315f, #125ca5);
    box-shadow: 0 12px 25px rgba(7, 45, 88, .18);
}

.spark-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex: 0 0 36px;
    color: #61e8e7;
    border: 1px solid rgba(97, 232, 231, .25);
    border-radius: 11px;
    background: rgba(97, 232, 231, .1);
}

.ai-float-card > div:nth-child(2) {
    flex: 1;
}

.ai-float-card strong {
    font-size: .68rem;
}

.ai-float-card span {
    color: rgba(255, 255, 255, .6);
    font-size: .52rem;
}

.ai-float-card .ai-arrow {
    color: #61e8e7;
    font-size: .9rem;
}

.floating-badge {
    position: absolute;
    z-index: 4;
    min-width: 154px;
    padding: 11px 13px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 15px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 40px rgba(2, 15, 36, .25);
    backdrop-filter: blur(8px);
    animation: float 5s ease-in-out infinite;
}

.floating-badge > span {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    color: #159f79;
    border-radius: 9px;
    background: #e7fbf4;
    font-size: .7rem;
}

.floating-badge strong {
    font-size: .65rem;
}

.floating-badge small {
    color: #8995a6;
    font-size: .5rem;
}

.badge-secure {
    right: -35px;
    top: 100px;
}

.badge-live {
    left: -34px;
    bottom: 85px;
    animation-delay: -2.2s;
}

.badge-live > i {
    width: 31px;
    height: 31px;
    position: relative;
    border-radius: 9px;
    background: #e7f3ff;
}

.badge-live > i::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: #2678ff;
    box-shadow: 0 0 0 5px rgba(38, 120, 255, .11);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-wave {
    position: absolute;
    right: -5%;
    bottom: -2px;
    width: 110%;
    height: 80px;
    border-radius: 50% 50% 0 0 / 75% 75% 0 0;
    background: #fff;
}

.intro-strip {
    position: relative;
    z-index: 4;
    margin-top: -35px;
}

.intro-grid {
    min-height: 100px;
    padding: 21px 35px;
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    align-items: center;
    gap: 30px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
}

.intro-grid > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.intro-grid > i {
    width: 1px;
    height: 42px;
    background: #e7edf4;
}

.intro-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    color: #1d73ed;
    border: 1px solid #d9e8ff;
    border-radius: 13px;
    background: #f1f7ff;
    font-size: .82rem;
    font-weight: 800;
}

.intro-grid p {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.intro-grid strong {
    font-size: .78rem;
}

.intro-grid small {
    color: #8492a5;
    font-size: .62rem;
}

.section {
    padding: 118px 0;
}

.capabilities {
    background: #fff;
}

.section-heading {
    max-width: 690px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-heading .section-kicker {
    justify-content: center;
}

.section-heading h2,
.security-content h2,
.company-copy h2,
.ai-content h2 {
    margin: 13px 0 16px;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.45;
    letter-spacing: -.045em;
    font-weight: 900;
}

.section-heading p,
.security-content > p,
.company-copy p {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
    line-height: 2;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card {
    position: relative;
    min-height: 295px;
    padding: 30px 28px;
    border: 1px solid var(--border);
    border-radius: 21px;
    background: #fff;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 3px;
    opacity: 0;
    background: linear-gradient(90deg, #2fd6d9, #2678ff);
    transition: opacity .3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #d7e5f5;
    box-shadow: 0 22px 50px rgba(16, 56, 101, .1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 57px;
    height: 57px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    font-size: 1.45rem;
    font-weight: 500;
}

.icon-blue { color: #2678ff; background: #eaf2ff; }
.icon-cyan { color: #0aa6ae; background: #e8fafa; }
.icon-purple { color: #795bc4; background: #f0ebff; }
.icon-green { color: #159f79; background: #e7fbf4; }
.icon-orange { color: #e68827; background: #fff3e7; }
.icon-indigo { color: #4267cf; background: #eaf0ff; }

.feature-card h3 {
    margin: 22px 0 11px;
    font-size: 1.04rem;
    font-weight: 900;
}

.feature-card p {
    margin: 0;
    color: #6d7b8f;
    font-size: .81rem;
    line-height: 1.95;
}

.feature-tag {
    position: absolute;
    right: 28px;
    bottom: 25px;
    color: #2f73cb;
    font-size: .66rem;
    font-weight: 700;
}

.feature-tag::before {
    content: '—';
    margin-left: 6px;
    color: #91b4de;
}

.ai-section {
    position: relative;
    color: #fff;
    background:
        radial-gradient(circle at 13% 65%, rgba(46, 211, 216, .13), transparent 25%),
        radial-gradient(circle at 84% 0%, rgba(39, 118, 255, .22), transparent 30%),
        linear-gradient(135deg, #05162f, #0b2d5a 58%, #0b416b);
    overflow: hidden;
}

.ai-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: .17;
    background-image: radial-gradient(rgba(255, 255, 255, .3) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to right, #000, transparent 60%);
}

.ai-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .94fr 1.06fr;
    align-items: center;
    gap: 100px;
}

.ai-visual {
    position: relative;
    min-height: 550px;
}

.ai-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(96, 232, 232, .15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-one {
    width: 410px;
    height: 410px;
}

.orbit-two {
    width: 285px;
    height: 285px;
    border-style: dashed;
    animation: spin 30s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.ai-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 168px;
    height: 168px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(98, 232, 231, .35);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #146198, #0a284e 72%);
    box-shadow: 0 0 70px rgba(42, 199, 208, .19), inset 0 0 30px rgba(94, 231, 231, .07);
    transform: translate(-50%, -50%);
}

.ai-center::before,
.ai-center::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #61e8e7;
    box-shadow: 0 0 16px #61e8e7;
}

.ai-center::before { top: -62px; }
.ai-center::after { bottom: -62px; }

.ai-center span {
    color: #61e8e7;
    font-size: 2.15rem;
    line-height: 1;
}

.ai-center strong {
    margin-top: 10px;
    font-size: .9rem;
    line-height: 1.65;
}

.insight-card {
    position: absolute;
    min-width: 235px;
    padding: 13px 14px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .075);
    box-shadow: 0 15px 40px rgba(1, 12, 29, .28);
    backdrop-filter: blur(12px);
}

.insight-card > span {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    flex: 0 0 37px;
    border-radius: 10px;
    font-weight: 900;
}

.insight-card > div {
    display: flex;
    flex-direction: column;
}

.insight-card small {
    color: rgba(255, 255, 255, .48);
    font-size: .54rem;
}

.insight-card strong {
    font-size: .65rem;
}

.insight-warning {
    top: 46px;
    right: -15px;
}

.insight-warning > span { color: #ffbb5c; background: rgba(255, 187, 92, .12); }

.insight-lab {
    left: -25px;
    top: 225px;
}

.insight-lab > span { color: #61e8e7; background: rgba(97, 232, 231, .11); }

.insight-action {
    right: 7px;
    bottom: 35px;
}

.insight-action > span { color: #66e4a5; background: rgba(102, 228, 165, .11); }

.section-kicker.light {
    color: var(--cyan-300);
}

.ai-content h2 {
    max-width: 570px;
    color: #fff;
}

.ai-lead {
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .67);
    font-size: .94rem;
    line-height: 2.05;
}

.ai-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ai-points > div {
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .045);
}

.ai-points > div > span {
    color: var(--cyan-300);
    font-size: .65rem;
    font-weight: 800;
}

.ai-points p {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.ai-points strong {
    font-size: .76rem;
}

.ai-points small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .52);
    font-size: .61rem;
    line-height: 1.75;
}

.ai-note {
    margin-top: 19px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .57);
    border-radius: 12px;
    background: rgba(0, 0, 0, .13);
    font-size: .65rem;
}

.ai-note span {
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    flex: 0 0 21px;
    color: var(--cyan-300);
    border: 1px solid rgba(97, 232, 231, .35);
    border-radius: 50%;
    font-family: serif;
    font-weight: 700;
}

.security-section {
    background: var(--surface);
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 85px;
}

.security-content > p {
    max-width: 560px;
}

.security-list {
    padding: 0;
    margin: 29px 0 0;
    list-style: none;
}

.security-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 18px;
}

.security-list li > span {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    flex: 0 0 27px;
    color: #159f79;
    border-radius: 9px;
    background: #ddf8ee;
    font-size: .71rem;
    font-weight: 900;
}

.security-list li > div {
    display: flex;
    flex-direction: column;
}

.security-list strong {
    font-size: .83rem;
}

.security-list small {
    margin-top: 3px;
    color: #748298;
    font-size: .69rem;
    line-height: 1.85;
}

.architecture-card {
    position: relative;
    padding: 45px 34px 27px;
    border: 1px solid #dfebf6;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(17, 57, 99, .09);
}

.architecture-card::before {
    content: 'مسیر تبادل امن اطلاعات';
    position: absolute;
    top: 17px;
    right: 28px;
    color: #8290a3;
    font-size: .62rem;
    font-weight: 700;
}

.arch-row {
    display: grid;
    grid-template-columns: 1fr 25px 1fr 25px 1fr;
    align-items: center;
    gap: 7px;
    direction: ltr;
}

.arch-row > i {
    color: #98b7df;
    font-size: 1.2rem;
    font-style: normal;
}

.arch-node {
    min-height: 130px;
    padding: 20px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    border: 1px solid #e5edf5;
    border-radius: 17px;
    background: #fbfdff;
    text-align: center;
    direction: rtl;
}

.arch-node.featured {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(140deg, #0d315e, #126aa7);
    box-shadow: 0 14px 28px rgba(10, 68, 120, .22);
}

.arch-node > span {
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    margin-bottom: 9px;
    color: #2678ff;
    border-radius: 12px;
    background: #eaf2ff;
    font-size: 1.05rem;
}

.arch-node.featured > span {
    color: var(--cyan-300);
    background: rgba(97, 232, 231, .1);
}

.arch-node strong {
    font-size: .69rem;
}

.arch-node small {
    margin-top: 3px;
    color: #8b98a9;
    font-size: .53rem;
}

.arch-node.featured small {
    color: rgba(255, 255, 255, .55);
}

.arch-divider {
    height: 1px;
    margin: 26px 0 20px;
    background: #edf2f6;
}

.arch-flags {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #6e7d91;
    font-size: .61rem;
}

.arch-flags span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.arch-flags i {
    color: #159f79;
    font-style: normal;
    font-weight: 900;
}

.company-section {
    padding: 90px 0;
    background: #fff;
}

.company-card {
    position: relative;
    min-height: 225px;
    padding: 46px 48px;
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    gap: 33px;
    border-radius: 28px;
    background: linear-gradient(120deg, #f4f9ff, #effcfc);
    overflow: hidden;
}

.company-card::before {
    content: '';
    position: absolute;
    left: -85px;
    bottom: -150px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(30, 114, 232, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(30, 114, 232, .025), 0 0 0 90px rgba(30, 114, 232, .018);
}

.company-logo-wrap {
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 25px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 14px 35px rgba(28, 99, 172, .1);
}

.company-logo-wrap img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.company-copy h2 {
    margin: 6px 0 7px;
    font-size: 1.85rem;
}

.company-copy p {
    max-width: 650px;
    font-size: .78rem;
}

.company-name,
.license-number {
    color: #155fae;
    font-weight: 900;
}

.company-card .button {
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.site-footer {
    color: #fff;
    background: var(--navy-950);
}

.footer-grid {
    padding: 65px 0 50px;
    display: grid;
    grid-template-columns: 1.35fr .7fr .9fr;
    gap: 85px;
}

.brand-light .brand-copy strong {
    color: #fff;
}

.footer-brand > p {
    max-width: 390px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .5);
    font-size: .76rem;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-links > strong,
.footer-contact > strong {
    margin-bottom: 7px;
    font-size: .86rem;
}

.footer-links a,
.footer-contact p {
    margin: 0;
    color: rgba(255, 255, 255, .52);
    font-size: .7rem;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: var(--cyan-300);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact p span {
    color: var(--cyan-300);
}

.footer-contact-link {
    margin-top: 5px;
    padding-bottom: 2px;
    color: var(--cyan-300);
    border-bottom: 1px solid rgba(97, 232, 231, .32);
    font-size: .68rem;
    font-weight: 700;
    transition: color .2s ease, border-color .2s ease;
}

.footer-contact-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .6);
}

.footer-bottom {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, .38);
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .65rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a:hover {
    color: var(--cyan-300);
}

body.modal-open {
    overflow: hidden;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    padding: 24px;
    display: none;
    place-items: center;
}

.contact-modal.is-open {
    display: grid;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 15, 35, .72);
    backdrop-filter: blur(8px);
    animation: modal-fade-in .22s ease both;
}

.contact-modal-panel {
    position: relative;
    z-index: 1;
    width: min(580px, 100%);
    max-height: calc(100vh - 48px);
    padding: 38px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, .88);
    border-radius: 26px;
    background:
        radial-gradient(circle at 0 0, rgba(53, 217, 220, .13), transparent 32%),
        #fff;
    box-shadow: 0 30px 90px rgba(1, 15, 35, .38);
    animation: modal-panel-in .28s ease both;
}

.contact-modal-close {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 39px;
    height: 39px;
    padding: 0;
    display: grid;
    place-items: center;
    color: #607087;
    border: 1px solid #e2eaf3;
    border-radius: 12px;
    background: #f7f9fc;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.contact-modal-close:hover {
    color: #fff;
    background: #176cf5;
    transform: rotate(5deg);
}

.contact-modal-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: #176cf5;
    border: 1px solid #d7e7ff;
    border-radius: 18px;
    background: linear-gradient(135deg, #eaf3ff, #e9fcfb);
    font-size: 1.45rem;
}

.contact-modal-panel h2 {
    margin: 8px 0 12px;
    color: var(--ink);
    font-size: 1.65rem;
    line-height: 1.55;
    font-weight: 900;
}

.contact-modal-description {
    margin: 0;
    color: #68778c;
    font-size: .8rem;
    line-height: 2;
}

.contact-phone-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
}

.contact-phone-list > a {
    min-height: 88px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e1eaf4;
    border-radius: 16px;
    background: #f9fbfe;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-phone-list > a:hover {
    transform: translateY(-3px);
    border-color: #bfd8fb;
    box-shadow: 0 12px 25px rgba(18, 91, 179, .09);
}

.phone-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    flex: 0 0 39px;
    color: #1470ed;
    border-radius: 12px;
    background: #e8f2ff;
    font-size: .94rem;
}

.contact-phone-list > a > span:last-child {
    display: flex;
    flex-direction: column;
}

.contact-phone-list small {
    color: #8a97a9;
    font-size: .58rem;
}

.contact-phone-list strong {
    margin-top: 2px;
    color: #163258;
    font-family: Tahoma, Arial, sans-serif;
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .02em;
    unicode-bidi: isolate;
}

.contact-license {
    margin-top: 18px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    border-radius: 16px;
    background: linear-gradient(125deg, #092951, #105f9d);
}

.contact-license > span {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    flex: 0 0 37px;
    color: var(--cyan-300);
    border: 1px solid rgba(97, 232, 231, .25);
    border-radius: 11px;
    background: rgba(97, 232, 231, .08);
}

.contact-license p {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.contact-license strong {
    font-size: .75rem;
}

.contact-license small {
    color: rgba(255, 255, 255, .58);
    font-size: .62rem;
}

@keyframes modal-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modal-panel-in {
    from { opacity: 0; transform: translateY(16px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

h1:focus {
    outline: none;
}

.not-found {
    min-height: 100vh;
    padding: 100px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--surface);
}

.not-found > span {
    color: var(--blue-600);
    font-size: 3rem;
    font-weight: 900;
}

.not-found h1 {
    margin: 8px 0 22px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1050px) {
    .desktop-nav {
        gap: 20px;
    }

    .hero-grid {
        gap: 35px;
    }

    .app-shell {
        width: 360px;
    }

    .badge-secure { right: -5px; }
    .badge-live { left: -5px; }

    .ai-grid,
    .security-grid {
        gap: 55px;
    }

    .insight-warning { right: 0; }
    .insight-lab { left: 0; }

    .company-card {
        grid-template-columns: 90px 1fr;
    }

    .company-card .button {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 860px) {
    .site-header,
    .site-header.is-scrolled {
        height: 70px;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .header-inner {
        justify-content: space-between;
    }

    .brand img {
        width: 44px;
        height: 44px;
    }

    .brand-copy strong {
        font-size: 1.05rem;
    }

    .menu-toggle {
        width: 43px;
        height: 43px;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: 12px;
        background: rgba(255, 255, 255, .07);
        cursor: pointer;
    }

    .menu-toggle span {
        width: 19px;
        height: 2px;
        border-radius: 3px;
        background: #fff;
        transition: transform .2s ease, opacity .2s ease;
    }

    .menu-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav {
        position: absolute;
        top: 70px;
        right: 20px;
        left: 20px;
        padding: 13px;
        display: flex;
        flex-direction: column;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 16px;
        background: rgba(5, 25, 56, .98);
        box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .22s ease;
    }

    .mobile-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-nav a {
        padding: 11px 12px;
        color: rgba(255, 255, 255, .74);
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        font-size: .8rem;
    }

    .mobile-nav a:last-child {
        border-bottom: 0;
    }

    .hero {
        padding-top: 125px;
    }

    .hero-grid,
    .ai-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content > p {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 520px;
        margin-top: 20px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .intro-grid > i {
        width: 100%;
        height: 1px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-grid {
        gap: 25px;
    }

    .ai-visual {
        order: 2;
    }

    .security-grid {
        gap: 50px;
    }

    .company-card {
        grid-template-columns: 90px 1fr;
    }

    .footer-grid {
        grid-template-columns: 1.2fr .8fr;
        gap: 45px;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 580px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .hero {
        min-height: auto;
        padding: 106px 0 82px;
    }

    .eyebrow {
        font-size: .7rem;
    }

    .hero h1 {
        margin-top: 18px;
        font-size: 2.12rem;
        line-height: 1.5;
    }

    .hero-content > p {
        font-size: .87rem;
        line-height: 2;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 9px;
    }

    .hero-visual {
        min-height: 475px;
        margin-inline: -5px;
    }

    .app-shell {
        width: min(340px, calc(100vw - 38px));
        padding: 17px;
        transform: none;
    }

    .floating-badge {
        min-width: 135px;
        padding: 9px;
    }

    .badge-secure { right: -4px; top: 28px; }
    .badge-live { left: -4px; bottom: 10px; }

    .intro-strip {
        margin-top: -20px;
    }

    .intro-grid {
        padding: 20px;
    }

    .section {
        padding: 85px 0;
    }

    .section-heading {
        margin-bottom: 36px;
    }

    .section-heading h2,
    .security-content h2,
    .company-copy h2,
    .ai-content h2 {
        font-size: 1.85rem;
    }

    .section-heading p {
        font-size: .82rem;
    }

    .feature-grid,
    .ai-points {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 280px;
    }

    .ai-visual {
        min-height: 525px;
        margin-inline: -20px;
    }

    .orbit-one { width: 340px; height: 340px; }
    .orbit-two { width: 245px; height: 245px; }
    .ai-center { width: 145px; height: 145px; }

    .insight-card {
        min-width: 205px;
    }

    .insight-warning { top: 34px; right: 15px; }
    .insight-lab { top: 220px; left: 12px; }
    .insight-action { right: 18px; bottom: 35px; }

    .architecture-card {
        padding: 45px 17px 24px;
    }

    .arch-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .arch-row > i {
        transform: rotate(-90deg);
        text-align: center;
    }

    .arch-node {
        min-height: 105px;
    }

    .arch-flags {
        flex-direction: column;
        align-items: flex-start;
    }

    .company-section {
        padding: 65px 0;
    }

    .company-card {
        padding: 34px 24px;
        grid-template-columns: 1fr;
        gap: 21px;
        text-align: center;
    }

    .company-logo-wrap {
        margin-inline: auto;
    }

    .company-card .button {
        grid-column: auto;
        justify-self: stretch;
    }

    .contact-modal {
        padding: 14px;
    }

    .contact-modal-panel {
        max-height: calc(100vh - 28px);
        padding: 30px 22px 24px;
        border-radius: 22px;
    }

    .contact-modal-panel h2 {
        padding-left: 34px;
        font-size: 1.35rem;
    }

    .contact-modal-close {
        top: 14px;
        left: 14px;
        width: 36px;
        height: 36px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-bottom {
        padding: 20px 0;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* SGS corporate landing page */
.company-brand {
    min-width: 210px;
}

.brand-mark {
    width: 58px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
}

.brand-mark img {
    width: 50px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 5px 12px rgba(31, 214, 217, .18));
}

.company-brand .brand-copy strong {
    font-size: .98rem;
}

.company-brand .brand-copy small {
    letter-spacing: -.01em;
}

.company-hero {
    min-height: 780px;
    background:
        radial-gradient(circle at 77% 30%, rgba(43, 126, 255, .27), transparent 30%),
        radial-gradient(circle at 14% 17%, rgba(56, 217, 220, .12), transparent 23%),
        linear-gradient(135deg, #06162f 0%, #092951 51%, #07516f 100%);
}

.company-hero .hero-content h1 {
    max-width: 650px;
}

.company-hero .hero-content p {
    max-width: 640px;
}

.ecosystem-visual {
    min-height: 570px;
}

.ecosystem-shell {
    position: relative;
    width: min(100%, 560px);
    min-height: 545px;
    margin-inline: auto;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 48px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .035)),
        rgba(5, 23, 51, .48);
    box-shadow: 0 40px 100px rgba(0, 10, 35, .35), inset 0 1px rgba(255, 255, 255, .15);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.ecosystem-shell::before {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    right: 50%;
    top: 50%;
    translate: 50% -50%;
    border: 1px solid rgba(77, 227, 226, .16);
    border-radius: 50%;
}

.ecosystem-shell::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    right: 50%;
    top: 50%;
    translate: 50% -50%;
    border: 1px dashed rgba(77, 227, 226, .18);
    border-radius: 50%;
    animation: orbit-spin 22s linear infinite;
}

.ecosystem-grid {
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image:
        linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle, #000 10%, transparent 76%);
}

.ecosystem-core {
    position: absolute;
    z-index: 7;
    right: 50%;
    top: 50%;
    width: 178px;
    height: 178px;
    translate: 50% -50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(94, 230, 231, .36);
    border-radius: 50%;
    background: radial-gradient(circle at 50% 15%, rgba(49, 207, 220, .23), transparent 44%), #09274e;
    box-shadow: 0 0 0 12px rgba(41, 184, 210, .05), 0 24px 60px rgba(0, 10, 35, .34);
}

.core-logo {
    width: 70px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-logo img {
    width: 70px;
    max-height: 48px;
    object-fit: contain;
}

.ecosystem-core strong {
    margin-top: 8px;
    font-size: .96rem;
    font-weight: 900;
}

.ecosystem-core small {
    margin-top: 2px;
    color: rgba(255, 255, 255, .58);
    font-size: .61rem;
}

.ecosystem-core i {
    width: 7px;
    height: 7px;
    margin-top: 10px;
    border-radius: 50%;
    background: #47e1c2;
    box-shadow: 0 0 0 5px rgba(71, 225, 194, .12), 0 0 18px rgba(71, 225, 194, .7);
}

.ecosystem-wave {
    position: absolute;
    z-index: 2;
    right: 50%;
    top: 50%;
    width: 185px;
    height: 185px;
    translate: 50% -50%;
    border: 1px solid rgba(77, 227, 226, .42);
    border-radius: 50%;
    box-shadow: 0 0 26px rgba(77, 227, 226, .08);
    opacity: 0;
    animation: ecosystem-wave-out 5.4s ease-out infinite;
}

.wave-two { animation-delay: -1.8s; }
.wave-three { animation-delay: -3.6s; }

.orbit-track {
    position: absolute;
    z-index: 6;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    transform-origin: 0 0;
    animation: ecosystem-orbit 44s linear infinite;
    animation-delay: var(--orbit-delay);
}

.orbit-track-one { --orbit-delay: 0s; }
.orbit-track-two { --orbit-delay: -14.666s; }
.orbit-track-three { --orbit-delay: -29.333s; }

.orbit-arm {
    position: relative;
    width: 0;
    height: 0;
    transform: translateX(160px);
}

.orbit-card-stabilizer {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
}

.orbit-product {
    position: relative;
    min-width: 178px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 20px;
    background: rgba(9, 38, 76, .9);
    box-shadow: 0 18px 45px rgba(0, 10, 35, .25);
    backdrop-filter: blur(14px);
    transform-origin: center;
    animation: ecosystem-counter-orbit 44s linear infinite;
    animation-delay: var(--orbit-delay);
}

.orbit-product > span {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 15px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(9, 38, 76, .05);
    overflow: hidden;
}

.orbit-product img {
    width: 39px;
    height: 39px;
    object-fit: contain;
}

.product-doctor > span {
    background: #031126;
}

.product-doctor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.18);
}

.orbit-product div {
    display: flex;
    flex-direction: column;
}

.orbit-product strong {
    font-size: .82rem;
    font-weight: 800;
}

.orbit-product small {
    color: rgba(255, 255, 255, .55);
    font-size: .58rem;
}

.ecosystem-pulse {
    position: absolute;
    z-index: 3;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #47e1c2;
    box-shadow: 0 0 14px rgba(71, 225, 194, .8);
}

.pulse-one {
    right: 25%;
    top: 41%;
    animation: node-pulse 2.5s ease-in-out infinite;
}

.pulse-two {
    left: 28%;
    bottom: 26%;
    animation: node-pulse 2.5s .8s ease-in-out infinite;
}

.ecosystem-status {
    position: absolute;
    z-index: 5;
    left: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    color: rgba(255, 255, 255, .76);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    background: rgba(4, 17, 38, .48);
    font-size: .61rem;
}

.ecosystem-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #47e1c2;
}

.company-intro .intro-number {
    color: var(--blue-600);
    font-size: .78rem;
}

.solutions-section {
    background:
        radial-gradient(circle at 8% 10%, rgba(42, 130, 255, .06), transparent 22%),
        #f7fafe;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 44px;
}

.solution-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 625px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 50px rgba(13, 43, 82, .07);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.solution-card::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    left: -80px;
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 130, 255, .11), transparent 68%);
}

.solution-card:hover {
    transform: translateY(-7px);
    border-color: rgba(42, 130, 255, .23);
    box-shadow: 0 28px 70px rgba(13, 43, 82, .12);
}

.solution-card-primary {
    border-color: rgba(32, 153, 231, .23);
    background: linear-gradient(180deg, rgba(237, 251, 253, .96), #fff 42%);
}

.solution-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.solution-logo {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e8eef6;
    border-radius: 23px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(13, 43, 82, .09);
    overflow: hidden;
}

.solution-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.doctor-logo img {
    width: 72px;
    height: 72px;
}

.solution-index {
    color: #9babc1;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.solution-label {
    margin-top: 24px;
    color: var(--blue-600);
    font-size: .7rem;
    font-weight: 800;
}

.solution-card h3 {
    margin: 5px 0 12px;
    color: var(--navy-900);
    font-size: 1.65rem;
    font-weight: 900;
}

.solution-card > p {
    margin: 0;
    color: var(--muted);
    font-size: .82rem;
    line-height: 2;
}

.solution-card ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 26px;
    padding: 18px 0 0;
    border-top: 1px solid #edf2f8;
    list-style: none;
}

.solution-card li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #43536a;
    font-size: .75rem;
}

.solution-card li span {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0d9f82;
    border-radius: 50%;
    background: #e7f8f4;
    font-size: .62rem;
    font-weight: 900;
}

.solution-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    flex-wrap: wrap;
}

.solution-actions .button {
    min-width: 160px;
    height: 46px;
    padding-inline: 18px;
    font-size: .72rem;
}

.solution-actions-single,
.solution-primary-link {
    width: 100%;
}

.solution-primary-link {
    min-width: 0 !important;
}

.button-secondary {
    color: var(--blue-600);
    border: 1px solid rgba(23, 108, 245, .18);
    background: #edf4ff;
}

.button-secondary:hover {
    color: #fff;
    background: var(--blue-600);
    transform: translateY(-2px);
}

.inline-version {
    color: #8b99ac;
    font-size: .64rem;
}

.text-link {
    color: var(--blue-600);
    font-size: .68rem;
    font-weight: 800;
}

.dynamic-download[aria-disabled="true"] {
    pointer-events: none;
    opacity: .58;
}

.download-section {
    position: relative;
    padding: 104px 0;
    color: #fff;
    background:
        radial-gradient(circle at 80% 24%, rgba(44, 133, 255, .22), transparent 30%),
        radial-gradient(circle at 13% 72%, rgba(56, 217, 220, .09), transparent 25%),
        linear-gradient(135deg, #041126, #09294f 56%, #083d63);
    overflow: hidden;
}

.download-pattern {
    position: absolute;
    inset: 0;
    opacity: .19;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 58px 58px;
}

.download-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 70px;
    align-items: center;
}

.download-copy h2 {
    margin: 13px 0 18px;
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.45;
    font-weight: 900;
}

.download-copy > p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: .9rem;
    line-height: 2.15;
}

.download-live-note {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 28px;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    background: rgba(255, 255, 255, .05);
}

.download-live-note > i {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #4ae1c1;
    box-shadow: 0 0 0 6px rgba(74, 225, 193, .1), 0 0 18px rgba(74, 225, 193, .6);
    animation: node-pulse 2.2s ease-in-out infinite;
}

.download-live-note span {
    display: flex;
    flex-direction: column;
}

.download-live-note strong {
    font-size: .72rem;
}

.download-live-note small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .48);
    font-size: .59rem;
}

.download-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.download-card {
    padding: 23px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 26px;
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 24px 60px rgba(0, 9, 29, .23);
    backdrop-filter: blur(18px);
}

.download-product {
    display: flex;
    align-items: center;
    gap: 13px;
}

.download-product > span {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
}

.download-product img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.download-card[data-download-card="pezeshkyar"] .download-product > span {
    background: #031126;
}

.download-card[data-download-card="pezeshkyar"] .download-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.18);
}

.download-product div {
    display: flex;
    flex-direction: column;
}

.download-product small {
    color: rgba(255, 255, 255, .5);
    font-size: .58rem;
}

.download-product strong {
    font-size: .92rem;
    font-weight: 900;
}

.download-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 20px 0 16px;
}

.download-meta > span {
    display: flex;
    flex-direction: column;
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 13px;
    background: rgba(3, 16, 38, .2);
}

.download-meta small {
    color: rgba(255, 255, 255, .43);
    font-size: .54rem;
}

.download-meta strong {
    margin-top: 3px;
    color: #fff;
    font-size: .72rem;
}

.download-button {
    min-height: 47px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    color: #06162f;
    border-radius: 14px;
    background: linear-gradient(135deg, #5ce5df, #50b7ff);
    box-shadow: 0 12px 26px rgba(40, 177, 235, .18);
    font-size: .69rem;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(40, 177, 235, .27);
}

.download-button[aria-disabled="true"] {
    pointer-events: none;
    opacity: .52;
    filter: saturate(.45);
}

.download-button i {
    width: 29px;
    height: 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(255, 255, 255, .38);
    font-style: normal;
    font-size: 1rem;
}

.download-state {
    min-height: 20px;
    margin: 10px 2px 0;
    color: rgba(255, 255, 255, .43);
    font-size: .54rem;
}

.download-card.is-ready .download-state {
    color: #70e7cf;
}

.download-card.is-error .download-state {
    color: #ffbf91;
}

.platform-section {
    background: #fff;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.platform-content h2 {
    margin: 12px 0 17px;
    color: var(--navy-900);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.55;
    font-weight: 900;
}

.platform-content > p {
    margin: 0;
    color: var(--muted);
    font-size: .88rem;
    line-height: 2.15;
}

.platform-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin-top: 27px;
}

.platform-points > div {
    display: flex;
    gap: 12px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fbfdff;
}

.platform-points > div > span {
    color: var(--blue-600);
    font-size: .6rem;
    font-weight: 900;
}

.platform-points p {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.platform-points strong {
    color: var(--navy-900);
    font-size: .7rem;
}

.platform-points small {
    margin-top: 4px;
    color: #77869a;
    font-size: .57rem;
    line-height: 1.75;
}

.platform-visual {
    position: relative;
    min-height: 530px;
    border: 1px solid #e2ebf5;
    border-radius: 38px;
    background:
        radial-gradient(circle at 50% 50%, rgba(27, 127, 236, .12), transparent 43%),
        linear-gradient(145deg, #f8fbff, #eef5fc);
    box-shadow: 0 28px 70px rgba(13, 43, 82, .09);
    overflow: hidden;
}

.platform-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .42;
    background-image:
        linear-gradient(rgba(18, 63, 112, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 63, 112, .06) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle, #000 10%, transparent 75%);
}

.platform-ring {
    position: absolute;
    right: 50%;
    top: 50%;
    translate: 50% -50%;
    border: 1px solid rgba(23, 108, 245, .12);
    border-radius: 50%;
}

.ring-one {
    width: 370px;
    height: 370px;
}

.ring-two {
    width: 260px;
    height: 260px;
    border-style: dashed;
    animation: orbit-spin 26s linear infinite reverse;
}

.platform-center {
    position: absolute;
    z-index: 3;
    right: 50%;
    top: 50%;
    width: 166px;
    height: 166px;
    translate: 50% -50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 8px solid rgba(255, 255, 255, .88);
    border-radius: 50%;
    background: linear-gradient(145deg, #092b59, #0d7891);
    box-shadow: 0 24px 55px rgba(10, 50, 95, .24);
}

.platform-center img {
    width: 70px;
    height: 45px;
    object-fit: contain;
}

.platform-center strong {
    margin-top: 6px;
    font-size: .78rem;
}

.platform-center small {
    color: rgba(255, 255, 255, .55);
    font-size: .52rem;
}

.platform-node {
    position: absolute;
    z-index: 4;
    min-width: 165px;
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    column-gap: 9px;
    padding: 12px;
    border: 1px solid #e0eaf4;
    border-radius: 17px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 15px 38px rgba(13, 43, 82, .09);
}

.platform-node > span {
    grid-row: 1 / 3;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    border-radius: 12px;
    background: #eaf3ff;
    font-weight: 900;
}

.platform-node strong {
    color: var(--navy-900);
    font-size: .64rem;
}

.platform-node small {
    color: #8592a5;
    font-size: .5rem;
}

.node-one { right: 25px; top: 62px; }
.node-two { left: 22px; top: 78px; }
.node-three { right: 24px; bottom: 65px; }
.node-four { left: 30px; bottom: 52px; }

.company-security {
    background: #f4f8fd;
}

.trust-card {
    padding: 36px;
    border: 1px solid #deebf7;
    border-radius: 30px;
    background: linear-gradient(145deg, #fff, #edf6fe);
    box-shadow: 0 28px 70px rgba(13, 43, 82, .09);
}

.trust-shield {
    width: 78px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    clip-path: polygon(50% 0, 94% 15%, 88% 68%, 50% 100%, 12% 68%, 6% 15%);
    background: linear-gradient(145deg, #176cf5, #19b9b3);
    box-shadow: 0 18px 35px rgba(23, 108, 245, .2);
}

.trust-shield span {
    font-size: 1.65rem;
    font-weight: 900;
}

.trust-title {
    display: flex;
    flex-direction: column;
    margin-top: 22px;
}

.trust-title small {
    color: var(--blue-600);
    font-size: .67rem;
    font-weight: 800;
}

.trust-title strong {
    margin-top: 5px;
    color: var(--navy-900);
    font-size: 1.25rem;
}

.trust-metrics {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.trust-metrics > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 15px;
    border: 1px solid #e3ecf5;
    border-radius: 14px;
    background: rgba(255, 255, 255, .74);
}

.trust-metrics strong {
    color: var(--navy-900);
    font-size: .69rem;
}

.trust-metrics small {
    color: #7b899d;
    font-size: .56rem;
    text-align: left;
}

.general-company-card .company-logo-wrap {
    width: 130px;
    min-width: 130px;
    height: 92px;
    border-radius: 24px;
    background: linear-gradient(145deg, #08264f, #0b536c);
}

.general-company-card .company-logo-wrap img {
    width: 108px;
    height: 68px;
    object-fit: contain;
}

.footer-brand .brand-mark {
    border-color: rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .06);
}

.noscript-message {
    position: fixed;
    z-index: 3000;
    right: 18px;
    left: 18px;
    bottom: 18px;
    padding: 14px 18px;
    color: #fff;
    border-radius: 14px;
    background: #8c3b20;
    text-align: center;
    font-size: .72rem;
}

@keyframes orbit-spin {
    to { rotate: 360deg; }
}

@keyframes ecosystem-orbit {
    to { transform: rotate(360deg); }
}

@keyframes ecosystem-counter-orbit {
    to { rotate: -360deg; }
}

@keyframes ecosystem-wave-out {
    0% { scale: .68; opacity: .72; }
    70% { opacity: .18; }
    100% { scale: 2.65; opacity: 0; }
}

@keyframes node-pulse {
    0%, 100% { opacity: .55; scale: .82; }
    50% { opacity: 1; scale: 1.15; }
}

@media (max-width: 1120px) {
    .company-brand {
        min-width: 190px;
    }

    .solution-cards {
        gap: 16px;
    }

    .solution-card {
        padding: 23px;
    }

    .download-layout {
        gap: 40px;
    }

    .platform-grid {
        gap: 50px;
    }
}

@media (max-width: 980px) {
    .company-hero {
        padding-bottom: 112px;
    }

    .company-hero .hero-grid,
    .download-layout,
    .platform-grid {
        grid-template-columns: 1fr;
    }

    .company-hero .hero-content,
    .download-copy,
    .platform-content {
        max-width: 720px;
        margin-inline: auto;
        text-align: center;
    }

    .company-hero .hero-content p,
    .download-copy > p,
    .platform-content > p {
        margin-inline: auto;
    }

    .company-hero .hero-actions,
    .company-hero .hero-trust {
        justify-content: center;
    }

    .ecosystem-visual {
        width: min(100%, 620px);
        margin: 14px auto 0;
    }

    .solution-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solution-card:last-child {
        grid-column: 1 / -1;
        min-height: auto;
    }

    .download-layout {
        gap: 38px;
    }

    .download-live-note {
        max-width: 460px;
        margin-inline: auto;
        text-align: right;
    }

    .download-cards {
        width: min(100%, 720px);
        margin-inline: auto;
    }

    .platform-visual {
        width: min(100%, 650px);
        margin-inline: auto;
    }
}

@media (max-width: 760px) {
    .company-brand {
        min-width: 0;
    }

    .company-brand .brand-copy small {
        display: none;
    }

    .brand-mark {
        width: 49px;
        height: 42px;
    }

    .brand-mark img {
        width: 43px;
    }

    .ecosystem-shell {
        min-height: 510px;
        border-radius: 34px;
    }

    .orbit-product {
        min-width: 172px;
    }

    .solution-cards,
    .download-cards {
        grid-template-columns: 1fr;
    }

    .solution-card,
    .solution-card:last-child {
        grid-column: auto;
        min-height: auto;
    }

    .platform-points {
        grid-template-columns: 1fr;
    }

    .platform-visual {
        min-height: 600px;
    }

    .node-one { right: 20px; top: 52px; }
    .node-two { left: 20px; top: 142px; }
    .node-three { right: 20px; bottom: 137px; }
    .node-four { left: 20px; bottom: 48px; }

    .general-company-card .company-logo-wrap {
        width: 120px;
        min-width: 120px;
    }
}

@media (max-width: 560px) {
    .company-hero {
        padding-top: 116px;
    }

    .company-hero .hero-content h1 {
        font-size: clamp(2.05rem, 12vw, 3.2rem);
    }

    .ecosystem-visual {
        min-height: 475px;
    }

    .ecosystem-shell {
        min-height: 465px;
    }

    .ecosystem-shell::before {
        width: 290px;
        height: 290px;
    }

    .ecosystem-shell::after {
        width: 210px;
        height: 210px;
    }

    .ecosystem-core {
        width: 145px;
        height: 145px;
    }

    .core-logo,
    .core-logo img {
        width: 58px;
    }

    .orbit-product {
        min-width: 142px;
        gap: 8px;
        padding: 10px;
        border-radius: 16px;
    }

    .orbit-arm {
        transform: translateX(88px);
    }

    .orbit-product > span {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .orbit-product img {
        width: 34px;
        height: 34px;
    }

    .orbit-product strong {
        font-size: .7rem;
    }

    .ecosystem-status {
        display: none;
    }

    .solution-card {
        padding: 22px;
        border-radius: 23px;
    }

    .download-section {
        padding: 82px 0;
    }

    .download-card {
        padding: 20px;
    }

    .platform-visual {
        min-height: 670px;
        border-radius: 28px;
    }

    .platform-center {
        width: 145px;
        height: 145px;
    }

    .ring-one {
        width: 285px;
        height: 285px;
    }

    .ring-two {
        width: 215px;
        height: 215px;
    }

    .platform-node {
        min-width: 158px;
    }

    .node-one { right: 12px; top: 45px; }
    .node-two { left: 12px; top: 160px; }
    .node-three { right: 12px; bottom: 155px; }
    .node-four { left: 12px; bottom: 42px; }

    .trust-card {
        padding: 25px;
    }

    .trust-metrics > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .trust-metrics small {
        text-align: right;
    }
}

@media (max-width: 360px) {
    .orbit-product {
        min-width: 132px;
    }

    .orbit-arm {
        transform: translateX(72px);
    }
}
