@font-face {
    font-family: "IRANSans";
    src: url("../../fonts/iransans/woff2/IRANSansWeb(FaNum).woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "IRANSans";
    src: url("../../fonts/iransans/woff2/IRANSansWeb(FaNum)_Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "IRANSans";
    src: url("../../fonts/iransans/woff2/IRANSansWeb(FaNum)_Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "IRANSans";
    src: url("../../fonts/iransans/woff2/IRANSansWeb(FaNum)_Black.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --navy: #0f305b;
    --navy-900: #081e39;
    --navy-800: #0b294e;
    --teal: #2f9196;
    --teal-dark: #24777c;
    --cyan: #12d6d2;
    --ink: #11243a;
    --muted: #617086;
    --cloud: #f3f8f8;
    --line: #dce9e9;
    --white: #ffffff;
    --shadow: 0 22px 70px rgba(15, 48, 91, .11);
    --radius-xl: 32px;
    --radius-lg: 22px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
html, body { max-width: 100%; overflow-x: clip; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "IRANSans", Tahoma, sans-serif;
    font-size: 15px;
    line-height: 1.9;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img, svg { display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link {
    position: fixed; top: -80px; right: 18px; z-index: 200;
    padding: 10px 18px; color: #fff; background: var(--navy); border-radius: 10px;
}
.skip-link:focus { top: 14px; }

.site-header {
    position: fixed; inset: 0 0 auto; z-index: 100;
    height: 84px; display: flex; align-items: center;
    border-bottom: 1px solid transparent;
    transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, .92);
    border-color: rgba(15, 48, 91, .08);
    box-shadow: 0 8px 36px rgba(15, 48, 91, .06);
    backdrop-filter: blur(16px);
}
.nav-wrap {
    width: min(1460px, calc(100% - 40px));
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand { display: inline-flex; width: auto; height: 50px; align-items: center; justify-content: flex-start; gap: 9px; flex: 0 0 auto; }
.brand img { width: 64px; height: 48px; object-fit: contain; }
.brand-copy { display: flex; min-width: 92px; flex-direction: column; align-items: center; justify-content: center; line-height: 1.35; text-align: center; white-space: nowrap; }
.brand-copy strong { color: var(--navy); font-size: 15px; font-weight: 900; }
.brand-copy small { margin-top: 2px; color: #6d8298; font-size: 9px; font-weight: 600; }
.main-nav {
    display: flex; min-width: 0; align-items: center; gap: clamp(14px, 1.25vw, 22px);
    margin-right: auto; white-space: nowrap;
}
.main-nav > a {
    position: relative; color: #3f5065; font-size: 14px; line-height: 1.45; font-weight: 500;
    white-space: nowrap;
    transition: color .2s ease;
}
.main-nav > a::after {
    content: ""; position: absolute; right: 0; left: 100%; bottom: -8px; height: 2px;
    border-radius: 2px; background: var(--teal); transition: left .25s ease;
}
.main-nav > a:hover { color: var(--navy); }
.main-nav > a:hover::after { left: 0; }
.portal-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 8px; }
.portal-link {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    min-height: 43px; padding: 0 11px; color: var(--navy); background: rgba(255,255,255,.76);
    border: 1px solid rgba(15,48,91,.14); border-radius: 12px; font-size: 11px; font-weight: 700;
    white-space: nowrap; transition: .25s ease;
}
.portal-link:hover { color: var(--teal-dark); background: #fff; border-color: var(--teal); transform: translateY(-2px); }
.portal-link svg { width: 17px; flex: 0 0 auto; }
.portal-link.organization { color: #fff; background: var(--navy); border-color: var(--navy); box-shadow: 0 9px 22px rgba(15,48,91,.16); }
.portal-link.organization:hover { color: #fff; background: var(--teal-dark); border-color: var(--teal-dark); }
.portal-link.tracking { position: relative; }
.portal-new {
    position: absolute; top: -9px; right: 10px; padding: 1px 7px; color: #fff; background: #20b889;
    border: 2px solid #f7fbfc; border-radius: 20px; font-size: 8px; line-height: 1.6; font-weight: 700;
    box-shadow: 0 4px 10px rgba(32,184,137,.2);
}
.mobile-portals { display: none; }
.menu-toggle {
    display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line);
    border-radius: 12px; color: var(--navy); background: #fff; align-items: center; justify-content: center;
}
.menu-toggle svg { width: 22px; }

.hero {
    position: relative; min-height: 760px; padding: 162px 0 92px; overflow: hidden;
    background:
        radial-gradient(circle at 11% 20%, rgba(18, 214, 210, .11), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(47, 145, 150, .1), transparent 26%),
        linear-gradient(180deg, #f8fbfc 0%, #fff 100%);
}
.hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35;
    background-image: radial-gradient(rgba(15, 48, 91, .19) .7px, transparent .7px);
    background-size: 26px 26px; mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.hero-orb {
    position: absolute; width: 430px; height: 430px; left: -250px; top: 170px;
    border: 1px solid rgba(47, 145, 150, .18); border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(47, 145, 150, .025), 0 0 0 140px rgba(47, 145, 150, .018);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 72px; }
.hero-copy { width: 100%; max-width: 620px; justify-self: start; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; padding: 7px 13px;
    color: var(--teal-dark); background: rgba(47, 145, 150, .09); border: 1px solid rgba(47, 145, 150, .16);
    border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: -.1px;
}
.eyebrow-dot { width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 0 5px rgba(18,214,210,.13); }
.hero h1 { margin: 0 0 24px; color: var(--navy-900); font-size: clamp(38px, 3.65vw, 51px); line-height: 1.5; letter-spacing: -1.5px; font-weight: 900; }
.hero-title-main { display: block; white-space: nowrap; }
.hero-title-accent { position: relative; display: inline-block; margin-top: 1px; color: var(--teal); font-size: .93em; letter-spacing: -1.2px; white-space: nowrap; }
.hero-title-accent::after {
    content: ""; position: absolute; right: 4px; bottom: -2px; width: 82%; height: 8px;
    background: url("data:image/svg+xml,%3Csvg width='240' height='12' viewBox='0 0 240 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 9C60 1 151 2 237 4' stroke='%2312D6D2' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat;
    opacity: .55;
}
.hero-description { max-width: 570px; margin: 0 0 30px; }
.hero-description p { margin: 0; color: var(--muted); font-size: 17px; line-height: 2.15; text-align: justify; text-align-last: right; text-justify: inter-word; }
.hero-description p + p { margin-top: 8px; }
.hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: min(570px, 100%); gap: 12px; }
.hero-actions .btn { min-width: 0; padding-inline: 17px; white-space: nowrap; }
.btn {
    display: inline-flex; min-height: 55px; padding: 0 25px; align-items: center; justify-content: center; gap: 10px;
    border: 1px solid transparent; border-radius: 15px; font-weight: 700; transition: .25s ease;
}
.btn svg { width: 19px; transition: transform .25s ease; }
.btn-primary { color: #fff; background: var(--navy); box-shadow: 0 15px 30px rgba(15, 48, 91, .2); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-3px); box-shadow: 0 19px 34px rgba(47,145,150,.23); }
.btn-primary:hover svg { transform: translateX(-3px); }
.btn-secondary { color: var(--navy); background: rgba(255,255,255,.65); border-color: rgba(15,48,91,.15); }
.btn-secondary:hover { color: var(--teal-dark); border-color: var(--teal); background: #fff; transform: translateY(-3px); }
.hero-points {
    display: grid; grid-template-columns: repeat(3, max-content); align-items: center; justify-content: space-between;
    width: min(570px, 100%); gap: 14px; margin-top: 28px; padding-top: 18px; color: #5e6f83;
    border-top: 1px solid rgba(15,48,91,.09); font-size: 12px; font-weight: 500;
}
.hero-point { display: inline-flex; align-items: center; gap: 8px; }
.hero-point svg { width: 18px; color: var(--teal); }

.hero-visual { position: relative; min-height: 470px; display: flex; align-items: center; isolation: isolate; }
.visual-glow { position: absolute; width: 390px; height: 390px; inset: 54px 55px auto auto; border-radius: 50%; background: rgba(18,214,210,.1); filter: blur(4px); z-index: -2; }
.visual-ring { position: absolute; width: 400px; height: 400px; top: 48px; right: 45px; border: 1px dashed rgba(47,145,150,.34); border-radius: 50%; z-index: -1; animation: spin 50s linear infinite; }

.trust-bar { position: relative; z-index: 5; margin-top: -42px; }
.trust-inner {
    display: grid; grid-template-columns: 1.2fr repeat(5, 1fr); min-height: 94px; align-items: center;
    padding: 10px 30px; background: #fff; border: 1px solid #e3ecec; border-radius: 22px; box-shadow: var(--shadow);
}
.trust-copy strong { display: block; color: var(--navy); font-size: 15px; }
.trust-copy span { color: #8490a0; font-size: 11px; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 9px; color: #6a798c; font-size: 12px; font-weight: 500; border-right: 1px solid #e6eeee; }
.trust-item svg { width: 21px; color: var(--teal); }

.section { padding: 128px 0; }
.section-soft { background: var(--cloud); }
.section-head { max-width: 710px; margin: 0 auto 60px; text-align: center; }
.section-label { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; color: var(--teal-dark); font-size: 12px; font-weight: 700; }
.section-label::before, .section-label::after { content: ""; width: 22px; height: 1px; background: var(--teal); opacity: .55; }
.section-title { margin: 0; color: var(--navy-900); font-size: clamp(30px, 4vw, 44px); line-height: 1.5; letter-spacing: -1.2px; font-weight: 900; }
.section-title span { color: var(--teal); }
.section-subtitle { margin: 15px auto 0; color: var(--muted); font-size: 15px; line-height: 2; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
    position: relative; display: flex; min-height: 330px; padding: 27px 24px; overflow: hidden; flex-direction: column; background: #fff;
    border: 1px solid #e3ecec; border-radius: var(--radius-lg); transition: .3s ease;
}
.service-card::after { content: ""; position: absolute; right: -45px; bottom: -65px; width: 150px; height: 150px; background: rgba(47,145,150,.055); border-radius: 50%; transition: .35s ease; }
.service-card:hover { border-color: rgba(47,145,150,.4); transform: translateY(-8px); box-shadow: 0 24px 50px rgba(15,48,91,.1); }
.service-card:hover::after { transform: scale(1.35); background: rgba(47,145,150,.09); }
.service-icon { display: grid; width: 57px; height: 57px; margin-bottom: 24px; place-items: center; color: var(--teal-dark); background: #eaf6f6; border-radius: 17px; transition: .3s ease; }
.service-icon svg { width: 27px; }
.service-card:hover .service-icon { color: #fff; background: var(--teal); transform: rotate(-4deg); }
.service-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 18px; font-weight: 800; }
.service-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 2; }
.service-link { position: relative; z-index: 2; display: inline-flex; width: fit-content; margin-top: auto; padding-top: 18px; align-items: center; gap: 7px; color: var(--teal-dark); font-size: 11px; font-weight: 700; }
.service-link svg { width: 15px; transition: transform .2s; }
.service-card:hover .service-link svg { transform: translateX(-4px); }

.transport-modes { padding-top: 110px; border-top: 1px solid #edf2f2; }
.transport-head { max-width: 780px; margin-bottom: 52px; }
.transport-title { position: relative; padding-bottom: 17px; font-size: clamp(29px, 3.2vw, 38px); }
.transport-title::after {
    content: ""; position: absolute; right: 50%; bottom: 0; width: 48px; height: 3px;
    background: #dff3f3; border-radius: 999px; transform: translateX(50%);
}
.transport-head .section-subtitle { margin-top: 22px; }
.transport-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.audience-card { padding: 24px; background: #fff; border: 1px solid #e3ecec; border-radius: 19px; }
.audience-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 17px; }
.audience-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 2; }
#problems { position: relative; isolation: isolate; overflow: hidden; background: linear-gradient(180deg, #f8fbfb 0%, #fff 100%); }
#problems::before { content: ""; position: absolute; width: 440px; height: 440px; left: -250px; top: 120px; z-index: -1; border: 1px solid rgba(47,145,150,.12); border-radius: 50%; box-shadow: 0 0 0 75px rgba(47,145,150,.018), 0 0 0 150px rgba(47,145,150,.012); }
#problems .section-head { margin-bottom: 48px; }
.problem-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.problem-card { position: relative; min-height: 245px; padding: 27px; overflow: hidden; background: rgba(255,255,255,.96); border: 1px solid #dfeaea; border-radius: 22px; box-shadow: 0 12px 34px rgba(15,48,91,.045); transition: border-color .28s ease, transform .28s ease, box-shadow .28s ease; }
.problem-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, transparent, rgba(47,145,150,.65), transparent); opacity: 0; transition: opacity .28s ease; }
.problem-card::after { content: ""; position: absolute; width: 125px; height: 125px; left: -58px; bottom: -72px; z-index: 0; background: rgba(47,145,150,.045); border-radius: 50%; transition: transform .32s ease; }
.problem-card:hover { border-color: rgba(47,145,150,.38); transform: translateY(-6px); box-shadow: 0 22px 48px rgba(15,48,91,.09); }
.problem-card:hover::before { opacity: 1; }
.problem-card:hover::after { transform: scale(1.25); }
.problem-card-head { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.problem-icon { display: grid; width: 52px; height: 52px; flex: 0 0 52px; place-items: center; color: var(--teal-dark); background: #e9f6f5; border: 1px solid rgba(47,145,150,.12); border-radius: 16px; }
.problem-icon svg { width: 27px; height: 27px; }
.problem-index { display: inline-flex; padding: 5px 10px; color: #708096; background: #f5f8f8; border: 1px solid #e4ecec; border-radius: 999px; font-size: 10px; font-weight: 700; }
.problem-card h3 { position: relative; z-index: 1; margin: 0 0 12px; color: #7a3440; font-size: 17px; line-height: 1.9; font-weight: 800; }
.problem-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 13px; line-height: 2.05; }
.problem-card p strong { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 5px; color: var(--teal-dark); font-size: 12px; font-weight: 800; }
.problem-card p strong::before { content: ""; width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 0 4px rgba(18,214,210,.1); }
.problem-card p span { display: block; }
.problem-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: 145px .8fr 1.45fr; min-height: 155px; align-items: center; gap: 28px; padding: 30px; color: #fff; background: linear-gradient(125deg, var(--navy-900), var(--navy)); border-color: var(--navy); box-shadow: 0 22px 48px rgba(15,48,91,.16); }
.problem-card:last-child::before { height: 4px; opacity: 1; background: linear-gradient(90deg, transparent, var(--cyan), transparent); }
.problem-card:last-child::after { width: 280px; height: 280px; left: -130px; bottom: -195px; background: rgba(18,214,210,.07); box-shadow: 0 0 0 45px rgba(18,214,210,.025); }
.problem-card:last-child:hover { border-color: var(--navy); }
.problem-card:last-child .problem-card-head { margin: 0; flex-direction: column; align-items: flex-start; gap: 11px; }
.problem-card:last-child .problem-icon { color: var(--navy); background: #fff; border-color: #fff; }
.problem-card:last-child .problem-index { color: var(--cyan); background: rgba(18,214,210,.08); border-color: rgba(18,214,210,.18); }
.problem-card:last-child h3 { margin: 0; color: #fff; font-size: 18px; }
.problem-card:last-child p { color: rgba(255,255,255,.72); }
.problem-card:last-child p strong { color: var(--cyan); }

.about-grid { display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 95px; }
.about-visual { position: relative; min-height: 510px; }
.about-panel { position: absolute; inset: 0 45px 32px 0; overflow: hidden; background: var(--navy); border-radius: var(--radius-xl); box-shadow: 0 30px 70px rgba(15,48,91,.2); }
.about-panel::before { content: ""; position: absolute; width: 370px; height: 370px; left: -120px; top: -120px; border: 1px solid rgba(18,214,210,.22); border-radius: 50%; box-shadow: 0 0 0 55px rgba(18,214,210,.025), 0 0 0 110px rgba(18,214,210,.018); }
.about-panel::after { content: ""; position: absolute; inset: 0; opacity: .15; background-image: radial-gradient(#fff .7px, transparent .7px); background-size: 24px 24px; }
.about-content-card { position: absolute; z-index: 2; top: 62px; right: 38px; left: 38px; padding: 28px; color: #fff; }
.about-logo { display: grid; width: 72px; height: 72px; margin-bottom: 34px; place-items: center; background: #fff; border-radius: 22px; box-shadow: 0 16px 35px rgba(0,0,0,.18); }
.about-logo img { width: 48px; height: 48px; object-fit: contain; }
.about-quote { margin: 0; font-size: 21px; line-height: 2; font-weight: 700; text-align: justify; text-align-last: right; text-justify: inter-word; }
.about-meta { display: flex; align-items: center; gap: 12px; margin-top: 25px; color: rgba(255,255,255,.66); font-size: 11px; }
.about-meta::before { content: ""; width: 28px; height: 2px; background: var(--cyan); }
.about-badge { position: absolute; z-index: 3; bottom: 0; left: 0; width: 172px; padding: 20px; color: var(--navy); background: #fff; border: 1px solid #e3ecec; border-radius: 20px; box-shadow: var(--shadow); }
.about-badge strong { display: block; font-size: 20px; font-weight: 900; }
.about-badge span { color: #79879a; font-size: 10px; }
.about-badge-line { display: flex; gap: 5px; margin-top: 14px; }
.about-badge-line i { display: block; height: 4px; flex: 1; background: #d5e8e7; border-radius: 4px; }
.about-badge-line i:first-child { flex: 2.4; background: var(--teal); }
.about-copy .section-label { justify-content: flex-start; }
.about-copy .section-label::after { display: none; }
.about-copy .section-title { margin-bottom: 20px; }
.about-copy > p { margin: 0 0 28px; color: var(--muted); font-size: 14px; line-height: 2.2; text-align: justify; text-align-last: right; text-justify: inter-word; }
.about-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; margin-bottom: 34px; }
.about-list-item { display: flex; align-items: center; gap: 10px; color: #3d5067; font-size: 12px; font-weight: 600; }
.about-list-item span { display: grid; flex: 0 0 auto; width: 25px; height: 25px; place-items: center; color: var(--teal-dark); background: #e7f5f4; border-radius: 8px; }
.about-list-item svg { width: 14px; }

.why { position: relative; padding: 122px 0; color: #fff; background: var(--navy-900); overflow: hidden; }
.why::before { content: ""; position: absolute; width: 600px; height: 600px; top: -380px; right: -100px; border: 1px solid rgba(18,214,210,.17); border-radius: 50%; box-shadow: 0 0 0 90px rgba(18,214,210,.02), 0 0 0 180px rgba(18,214,210,.015); }
.why::after { content: ""; position: absolute; inset: 0; opacity: .11; background-image: radial-gradient(#fff .65px, transparent .65px); background-size: 25px 25px; }
.why .container { position: relative; z-index: 2; }
.why-top { display: grid; grid-template-columns: .8fr 1.2fr; align-items: end; gap: 80px; margin-bottom: 63px; }
.why .section-label { color: var(--cyan); }
.why .section-label::before { background: var(--cyan); }
.why .section-title { color: #fff; }
.why-intro { margin: 0 0 5px; color: rgba(255,255,255,.62); font-size: 14px; line-height: 2.1; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.1); border-radius: 24px; overflow: hidden; }
.why-card { min-height: 270px; padding: 31px 26px; border-left: 1px solid rgba(255,255,255,.1); transition: background .3s; }
.why-card:nth-child(3n) { border-left: 0; }
.why-card:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.1); }
.why-card:hover { background: rgba(255,255,255,.055); }
.why-num { color: var(--cyan); font-size: 11px; font-weight: 700; letter-spacing: 1px; }
.why-icon { display: grid; width: 49px; height: 49px; margin: 22px 0 19px; place-items: center; color: var(--cyan); background: rgba(18,214,210,.1); border: 1px solid rgba(18,214,210,.15); border-radius: 15px; }
.why-icon svg { width: 24px; }
.why-card h3 { margin: 0 0 9px; font-size: 16px; font-weight: 700; }
.why-card p { margin: 0; color: rgba(255,255,255,.56); font-size: 11px; line-height: 2; }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 45px 35px; }
.process-grid::before { content: ""; position: absolute; top: 32px; right: 12.5%; left: 12.5%; border-top: 1px dashed rgba(47,145,150,.35); }
.process-item { position: relative; text-align: center; }
.process-num { position: relative; z-index: 2; display: grid; width: 65px; height: 65px; margin: 0 auto 21px; place-items: center; color: var(--teal-dark); background: #fff; border: 1px solid #cfe3e2; border-radius: 19px; box-shadow: 0 11px 28px rgba(15,48,91,.09); font-size: 17px; font-weight: 900; transition: .3s; }
.process-item:hover .process-num { color: #fff; background: var(--teal); border-color: var(--teal); transform: translateY(-5px) rotate(-3deg); }
.process-item h3 { margin: 0 0 8px; color: var(--navy); font-size: 15px; font-weight: 800; }
.process-item p { max-width: 220px; margin: auto; color: var(--muted); font-size: 11px; line-height: 2; }

.cta-wrap { padding: 0 0 120px; }
.cta {
    position: relative; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; min-height: 300px;
    padding: 56px 65px; overflow: hidden; color: #fff; background: linear-gradient(120deg, var(--teal-dark), var(--teal)); border-radius: 32px; box-shadow: 0 28px 70px rgba(47,145,150,.23);
}
.cta::before { content: ""; position: absolute; width: 420px; height: 420px; left: -160px; top: -220px; border: 1px solid rgba(255,255,255,.23); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.025), 0 0 0 120px rgba(255,255,255,.02); }
.cta::after { content: ""; position: absolute; width: 170px; height: 170px; left: 110px; bottom: -120px; background: rgba(18,214,210,.35); border-radius: 50%; filter: blur(2px); }
.cta-copy { position: relative; z-index: 2; }
.cta h2 { max-width: 650px; margin: 0 0 13px; font-size: clamp(28px, 4vw, 40px); line-height: 1.55; font-weight: 900; letter-spacing: -.8px; }
.cta p { margin: 0; color: rgba(255,255,255,.75); font-size: 13px; }
.cta-actions { position: relative; z-index: 2; display: flex; justify-content: flex-end; }
.cta .btn { color: var(--navy); background: #fff; box-shadow: 0 16px 35px rgba(15,48,91,.17); }
.cta .btn:hover { transform: translateY(-3px); box-shadow: 0 21px 40px rgba(15,48,91,.23); }

.site-footer { padding: 68px 0 26px; color: rgba(255,255,255,.68); background: var(--navy-900); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, .8fr); gap: 65px; padding-bottom: 48px; }
.footer-brand img { width: 64px; height: 48px; object-fit: contain; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { max-width: 360px; margin: 22px 0 0; font-size: 12px; line-height: 2.15; }
.footer-col h3 { margin: 0 0 18px; color: #fff; font-size: 13px; }
.footer-col a { display: block; width: fit-content; margin-bottom: 10px; font-size: 11px; transition: .2s; }
.footer-col a:hover { color: var(--cyan); transform: translateX(-3px); }
.footer-contact { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; font-size: 11px; }
.footer-contact svg { flex: 0 0 auto; width: 17px; color: var(--cyan); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); font-size: 10px; }
.footer-status { display: flex; align-items: center; gap: 7px; }
.footer-status i { width: 7px; height: 7px; background: #34d399; border-radius: 50%; box-shadow: 0 0 0 4px rgba(52,211,153,.1); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s !important; } .delay-2 { transition-delay: .16s !important; }
.delay-3 { transition-delay: .24s !important; } .delay-4 { transition-delay: .32s !important; }

/* Slightly larger type scale for improved Persian readability. */
body { font-size: 17px; }
.main-nav > a { font-size: 15px; }
.portal-link { font-size: 12px; }
.portal-new { font-size: 10px; }
.eyebrow, .section-label { font-size: 14px; }
.hero-description p { font-size: 18px; }
.hero-points { font-size: 14px; }
.trust-copy span, .trust-item { font-size: 13px; }
.section-subtitle { font-size: 17px; }
.service-card p, .about-list-item { font-size: 14px; }
.service-link, .about-meta { font-size: 13px; }
.about-copy > p, .why-intro { font-size: 16px; }
.why-card p, .process-item p { font-size: 13px; }
.why-card h3, .process-item h3 { font-size: 17px; }
.cta p { font-size: 15px; }
.footer-brand p, .footer-col a, .footer-contact { font-size: 13px; }
.footer-bottom { font-size: 12px; }

/* Homepage hero based on the clean, spacious product-led visual direction. */
.hero {
    min-height: 820px;
    padding: 164px 0 150px;
    background:
        radial-gradient(circle at 81% 17%, rgba(47, 145, 150, .085), transparent 25%),
        radial-gradient(circle at 20% 54%, rgba(47, 145, 150, .075), transparent 31%),
        linear-gradient(180deg, #fff 0%, #fbfdfd 100%);
}
.hero::before {
    inset: 170px auto auto 0;
    width: 330px;
    height: 290px;
    opacity: .5;
    background-image: radial-gradient(rgba(47, 145, 150, .28) 1.2px, transparent 1.3px);
    background-size: 11px 11px;
    mask-image: radial-gradient(circle at 40% 45%, #000 0 36%, transparent 74%);
}
.hero-orb {
    width: 360px;
    height: 360px;
    left: -185px;
    top: 245px;
    border-color: rgba(47, 145, 150, .2);
    box-shadow: 0 0 0 72px rgba(47, 145, 150, .025), 0 0 0 144px rgba(47, 145, 150, .016);
}
.hero-grid {
    width: min(1360px, calc(100% - 80px));
    max-width: none;
    grid-template-columns: 1.04fr .96fr;
    gap: 92px;
}
.hero-copy { max-width: 660px; }
.eyebrow { margin-bottom: 23px; padding: 9px 18px; background: rgba(47, 145, 150, .055); border-color: rgba(47, 145, 150, .13); }
.hero h1 { margin-bottom: 23px; font-size: clamp(43px, 3.6vw, 55px); line-height: 1.55; letter-spacing: -1.8px; }
.hero-title-accent { font-size: .92em; letter-spacing: -1.5px; }
.hero-title-accent::after { right: 2px; bottom: -5px; width: 48%; }
.hero-description { max-width: 650px; margin-bottom: 31px; }
.hero-description p { color: #68788d; font-size: 17px; line-height: 2.15; }
.hero-description p + p { margin-top: 5px; }
.hero-actions { width: min(590px, 100%); gap: 18px; }
.hero-actions .btn { min-height: 68px; border-radius: 18px; font-size: 15px; }
.hero-visual { min-height: 530px; justify-content: center; }
.hero-visual::before {
    content: "";
    position: absolute;
    width: 225px;
    height: 235px;
    left: -25px;
    top: 18px;
    z-index: -1;
    opacity: .42;
    background-image: radial-gradient(rgba(47, 145, 150, .36) 1.2px, transparent 1.3px);
    background-size: 11px 11px;
    mask-image: radial-gradient(circle, #000 0 52%, transparent 77%);
}
.visual-glow {
    width: 505px;
    height: 505px;
    inset: 12px auto auto 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, rgba(47,145,150,.17), rgba(18,214,210,.07));
    filter: none;
}
.visual-ring {
    width: 505px;
    height: 505px;
    inset: 12px auto auto 50%;
    transform: translateX(-50%);
    border-color: rgba(47,145,150,.2);
    animation: none;
}
.trust-bar { margin-top: -86px; }
.trust-inner {
    width: min(1360px, calc(100% - 80px));
    max-width: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 174px;
    padding: 25px 18px;
    border-radius: 18px;
    box-shadow: 0 22px 55px rgba(15, 48, 91, .1);
}
.trust-item {
    min-width: 0;
    min-height: 104px;
    padding: 0 24px;
    justify-content: flex-start;
    gap: 18px;
    color: var(--muted);
    border-right: 0;
    border-left: 1px solid #e6eeee;
}
.trust-item:last-child { border-left: 0; }
.trust-icon {
    display: grid;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    place-items: center;
    color: var(--teal-dark);
    background: #edf8f8;
    border: 1px solid rgba(47,145,150,.12);
    border-radius: 16px;
}
.trust-item .trust-icon svg { width: 31px; height: 31px; }
.trust-text { display: block; min-width: 0; text-align: right; }
.trust-text strong { display: block; margin-bottom: 8px; color: var(--navy); font-size: 16px; font-weight: 850; line-height: 1.7; }
.trust-text small { display: block; color: #6f7d8e; font-size: 13px; line-height: 2; }

/* Automatic product screenshots inside the hero laptop and phone frames. */
.hero-device-showcase {
    position: relative;
    width: min(630px, 100%);
    min-height: 475px;
    direction: ltr;
    z-index: 1;
}
.hero-showcase-laptop {
    position: absolute;
    top: 58px;
    left: 0;
    width: 94%;
    z-index: 1;
}
.hero-showcase-phone {
    position: absolute;
    right: -1%;
    bottom: 2px;
    width: 24%;
    z-index: 3;
}
.device-viewport { position: relative; overflow: hidden; background: #edf3f5; isolation: isolate; }
.device-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.012);
    transition: opacity .55s ease, transform .75s ease, visibility .55s ease;
}
.device-slide.is-active { opacity: 1; visibility: visible; transform: none; z-index: 1; }
.device-slide img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.laptop-frame {
    position: relative;
    padding: 11px 11px 13px;
    background: linear-gradient(150deg, #17324e, #071727 70%);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 19px 19px 8px 8px;
    box-shadow: 0 24px 45px rgba(8, 30, 57, .23), inset 0 1px rgba(255, 255, 255, .2);
}
.laptop-camera {
    position: absolute;
    top: 4px;
    left: 50%;
    z-index: 3;
    width: 4px;
    height: 4px;
    background: #3e556c;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .07);
}
.device-viewport-desktop { aspect-ratio: 1.92 / 1; border-radius: 10px 10px 3px 3px; }
.laptop-base {
    position: relative;
    width: calc(100% + 6%);
    height: 17px;
    margin-inline: -3%;
    background: linear-gradient(180deg, #dce2e7, #aeb8c1 63%, #8d98a2);
    border-radius: 2px 2px 15px 15px;
    box-shadow: 0 10px 16px rgba(8, 30, 57, .17);
}
.laptop-base::after {
    content: "";
    position: absolute;
    right: 7%;
    bottom: -3px;
    left: 7%;
    height: 4px;
    background: rgba(8, 30, 57, .17);
    border-radius: 50%;
    filter: blur(3px);
}
.laptop-base span {
    display: block;
    width: 14%;
    height: 5px;
    margin: 0 auto;
    background: #9ca8b2;
    border-radius: 0 0 7px 7px;
}
.phone-frame {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 7px 6px 12px;
    background: linear-gradient(150deg, #18334d, #061522 72%);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 27px;
    box-shadow: 0 27px 48px rgba(8, 30, 57, .27), inset 0 1px rgba(255, 255, 255, .2);
}
.device-viewport-mobile { aspect-ratio: 720 / 1447; border-radius: 21px; }
.phone-speaker {
    position: absolute;
    top: 11px;
    left: 50%;
    z-index: 3;
    width: 34px;
    height: 10px;
    background: #071522;
    border-radius: 20px;
    transform: translateX(-50%);
    box-shadow: inset 0 -1px rgba(255, 255, 255, .09);
}
.phone-home-indicator {
    position: absolute;
    bottom: 4px;
    left: 50%;
    z-index: 3;
    width: 38px;
    height: 2px;
    background: rgba(255, 255, 255, .72);
    border-radius: 10px;
    transform: translateX(-50%);
}

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(49,196,141,.35); } 50% { box-shadow: 0 0 0 6px rgba(49,196,141,0); } }

@media (max-width: 1024px) {
    .brand-copy { min-width: 0; }
    .brand-copy small { display: none; }
    .main-nav { gap: 18px; }
    .portal-link { padding-inline: 10px; gap: 6px; }
    .hero-grid { width: min(100% - 40px, 1360px); gap: 42px; }
    .hero h1 { font-size: clamp(36px, 4.3vw, 44px); }
    .hero-description p { font-size: 16px; }
    .hero-actions { gap: 11px; }
    .hero-actions .btn { padding-inline: 13px; font-size: 13px; }
    .trust-inner { width: min(100% - 40px, 1360px); }
    .trust-item { padding-inline: 14px; gap: 12px; }
    .trust-icon { width: 52px; height: 52px; flex-basis: 52px; }
    .trust-text strong { font-size: 14px; }
    .trust-text small { font-size: 11px; }
    .hero-device-showcase { min-height: 445px; }
    .hero-showcase-laptop { top: 66px; width: 93%; }
    .hero-showcase-phone { width: 25%; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .transport-grid { grid-template-columns: repeat(2, 1fr); }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 48px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .why-card { border-left: 1px solid rgba(255,255,255,.1); border-bottom: 0; }
    .why-card:nth-child(3n) { border-left: 1px solid rgba(255,255,255,.1); }
    .why-card:nth-child(2n) { border-left: 0; }
    .why-card:nth-child(-n+4) { border-bottom: 1px solid rgba(255,255,255,.1); }
    .footer-grid { grid-template-columns: 1.3fr repeat(3, .7fr); gap: 35px; }
}

/* Switch only the header to its compact navigation before links can wrap. */
@media (max-width: 1280px) {
    .site-header { height: 74px; }
    .nav-wrap { width: min(1180px, calc(100% - 32px)); }
    .brand { width: auto; height: 47px; gap: 7px; flex-basis: auto; }
    .brand img { width: 60px; height: 45px; }
    .brand-copy { min-width: 92px; }
    .brand-copy strong { font-size: 14px; }
    .brand-copy small { display: block; font-size: 8px; }
    .menu-toggle { display: flex; }
    .desktop-portals { display: none; }
    .main-nav {
        position: fixed; inset: 74px 16px auto; display: grid; gap: 0; margin: 0; padding: 15px;
        white-space: normal; background: #fff; border: 1px solid var(--line); border-radius: 18px;
        box-shadow: var(--shadow); opacity: 0; visibility: hidden;
        transform: translateY(-12px); transition: .25s ease;
    }
    .main-nav.open { opacity: 1; visibility: visible; transform: none; }
    .main-nav > a { padding: 12px 10px; font-size: 14px; white-space: normal; border-bottom: 1px solid #edf2f2; }
    .main-nav > a::after { display: none; }
    .mobile-portals { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; padding-top: 14px; }
    .mobile-portals .portal-link { min-height: 47px; padding-inline: 10px; font-size: 11px; }
    .mobile-portals .tracking { grid-column: 1 / -1; }
    .mobile-portals .portal-new { top: -7px; right: 16px; }
}

@media (max-width: 820px) {
    .site-header { height: 74px; }
    .brand { width: auto; height: 47px; gap: 7px; flex-basis: auto; }
    .brand img { width: 60px; height: 45px; }
    .brand-copy { min-width: 92px; }
    .brand-copy strong { font-size: 14px; }
    .brand-copy small { display: block; font-size: 8px; }
    .menu-toggle { display: flex; }
    .desktop-portals { display: none; }
    .main-nav {
        position: fixed; inset: 74px 16px auto; display: grid; gap: 0; padding: 15px;
        background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
        opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s ease;
    }
    .main-nav.open { opacity: 1; visibility: visible; transform: none; }
    .main-nav > a { padding: 12px 10px; border-bottom: 1px solid #edf2f2; }
    .main-nav > a::after { display: none; }
    .mobile-portals { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; padding-top: 14px; }
    .mobile-portals .portal-link { min-height: 47px; padding-inline: 10px; font-size: 11px; }
    .mobile-portals .tracking { grid-column: 1 / -1; }
    .mobile-portals .portal-new { top: -7px; right: 16px; }
    .hero { min-height: auto; padding: 128px 0 132px; }
    .hero-grid { width: min(100% - 40px, 680px); grid-template-columns: 1fr; gap: 58px; }
    .hero-copy { max-width: 680px; margin-inline: auto; justify-self: center; text-align: center; }
    .hero h1 { font-size: clamp(40px, 6.2vw, 48px); }
    .hero-description, .hero-actions, .hero-points { margin-inline: auto; }
    .hero-description p { text-align: justify; text-align-last: right; }
    .hero-visual { width: min(600px, 100%); margin: auto; }
    .hero-device-showcase { min-height: 450px; }
    .hero-showcase-laptop { top: 45px; width: 94%; }
    .hero-showcase-phone { right: 0; width: 24%; }
    .trust-inner { width: min(100% - 32px, 680px); grid-template-columns: 1fr 1fr; padding: 0 18px; gap: 0; }
    .trust-copy { grid-column: 1 / -1; text-align: center; }
    .trust-item { min-height: 138px; padding: 22px 18px; border-right: 0; border-bottom: 1px solid #e6eeee; }
    .trust-item:nth-child(even) { border-left: 0; }
    .trust-item:nth-child(n + 3) { border-bottom: 0; }
    .problem-grid { grid-template-columns: 1fr; }
    .problem-card { min-height: auto; }
    .problem-card:last-child { grid-column: auto; display: block; }
    .problem-card:last-child .problem-card-head { margin-bottom: 20px; flex-direction: row; align-items: center; }
    .problem-card:last-child h3 { margin-bottom: 12px; }
    .section { padding: 96px 0; }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { width: min(550px, 100%); margin: auto; order: 2; }
    .about-copy { order: 1; }
    .why-top { grid-template-columns: 1fr; gap: 22px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 55px; }
    .process-grid::before { display: none; }
    .cta { grid-template-columns: 1fr; gap: 30px; padding: 48px; text-align: center; }
    .cta-actions { justify-content: center; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
    .container { width: min(100% - 28px, 1180px); }
    .hero { padding-top: 116px; }
    .hero h1 { font-size: clamp(28px, 8.4vw, 36px); line-height: 1.58; letter-spacing: -1px; }
    .hero-title-main, .hero-title-accent { white-space: normal; }
    .hero-description { margin-bottom: 25px; }
    .hero-description p { font-size: 15px; line-height: 2.1; }
    .hero-description p + p { margin-top: 7px; }
    .hero-actions { grid-template-columns: 1fr; }
    .btn { width: 100%; }
    .hero-points { grid-template-columns: 1fr; width: max-content; max-width: 100%; justify-items: start; gap: 10px; margin-top: 23px; padding-top: 0; border-top: 0; font-size: 11px; }
    .hero-visual { min-height: 315px; }
    .hero-device-showcase { min-height: 286px; }
    .hero-showcase-laptop { top: 31px; width: 94%; }
    .hero-showcase-phone { right: 0; bottom: 2px; width: 27%; }
    .laptop-frame { padding: 6px 6px 8px; border-radius: 12px 12px 5px 5px; }
    .device-viewport-desktop { border-radius: 7px 7px 2px 2px; }
    .laptop-base { height: 12px; }
    .hero-showcase-phone .phone-frame { padding: 5px 4px 9px; border-radius: 19px; }
    .hero-showcase-phone .device-viewport-mobile { border-radius: 15px; }
    .hero-showcase-phone .phone-speaker { top: 8px; width: 24px; height: 7px; }
    .hero-showcase-phone .phone-home-indicator { bottom: 3px; width: 27px; }
    .visual-ring, .visual-glow { width: 320px; height: 320px; inset: 4px auto auto 50%; transform: translateX(-50%); }
    .trust-bar { margin-top: -58px; }
    .trust-inner { width: min(100% - 28px, 520px); grid-template-columns: 1fr; border-radius: 18px; padding: 8px 18px; }
    .trust-item { min-height: 108px; padding: 18px 8px; font-size: 11px; border-left: 0; border-bottom: 0; }
    .trust-item:not(:last-child) { border-bottom: 1px solid #e6eeee; }
    .trust-item svg { width: 18px; }
    .trust-icon { width: 52px; height: 52px; flex-basis: 52px; }
    .trust-item .trust-icon svg { width: 28px; height: 28px; }
    .trust-text strong { margin-bottom: 4px; font-size: 15px; }
    .trust-text small { font-size: 12px; }
    .section { padding: 80px 0; }
    .section-head { margin-bottom: 40px; }
    .section-title { font-size: 29px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 265px; }
    .transport-modes { padding-top: 80px; }
    .transport-head { margin-bottom: 40px; }
    .transport-grid { grid-template-columns: 1fr; }
    .audience-grid, .problem-grid { grid-template-columns: 1fr; }
    .problem-card:last-child { grid-column: auto; }
    .about-visual { min-height: 445px; }
    .about-panel { inset: 0 0 28px 0; }
    .about-content-card { top: 35px; right: 24px; left: 24px; padding: 16px; }
    .about-quote { font-size: 17px; }
    .about-badge { width: 150px; }
    .about-list { grid-template-columns: 1fr; }
    .why { padding: 80px 0; }
    .why-grid { grid-template-columns: 1fr; }
    .why-card,
    .why-card:nth-child(3n) { min-height: auto; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
    .why-card:last-child { border-bottom: 0; }
    .process-grid { grid-template-columns: 1fr; }
    .cta-wrap { padding-bottom: 80px; }
    .cta { min-height: 370px; padding: 38px 23px; border-radius: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 22px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; gap: 12px; flex-direction: column; }
}

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

/* Solutions dropdown shared with marketing pages. */
.nav-solutions { position: relative; color: #3f5065; font-size: 15px; line-height: 1.45; font-weight: 500; }
.nav-solutions summary { display: flex; align-items: center; gap: 5px; cursor: pointer; list-style: none; white-space: nowrap; }
.nav-solutions summary::-webkit-details-marker { display: none; }
.nav-solutions summary svg { width: 14px; transition: transform .2s ease; }
.nav-solutions[open] summary svg { transform: rotate(180deg); }
.nav-solutions summary:hover { color: var(--navy); }
.solutions-menu { position: absolute; top: calc(100% + 23px); right: -18px; width: 360px; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 24px 60px rgba(15,48,91,.16); }
.solutions-menu::before { content: ""; position: absolute; right: 28px; top: -7px; width: 13px; height: 13px; background: #fff; border-top: 1px solid var(--line); border-right: 1px solid var(--line); transform: rotate(-45deg); }
.solutions-menu a { display: block; padding: 11px 13px; border-radius: 12px; }
.solutions-menu a:hover { background: #eef7f6; }
.solutions-menu span { display: block; color: var(--navy); font-size: 12px; font-weight: 800; }
.solutions-menu small { display: block; margin-top: 2px; color: var(--muted); font-size: 10px; font-weight: 400; line-height: 1.7; }
@media (max-width: 1280px) {
    .main-nav { max-height: calc(100dvh - 90px); overflow-y: auto; overscroll-behavior: contain; }
    .nav-solutions { border-bottom: 1px solid #edf2f2; font-size: 14px; }
    .nav-solutions summary { min-height: 48px; padding: 0 10px; justify-content: space-between; }
    .solutions-menu { position: static; width: auto; margin: 0 6px 10px; padding: 7px; background: var(--cloud); border-radius: 14px; box-shadow: none; }
    .solutions-menu::before { display: none; }
}
