:root {
--bg-dark: #0d1b2e;
--bg-mid: #0f1f35;
--bg-card: #0f1829;
--bg-white: #ffffff;
--blue-neon: #4a9eda;
--blue-mid: #2271b3;
--blue-deep: #0d2a4a;
--blue-panel: #0d2744;
--red-accent: #c0392b;
--red-dark: #8b1a1a;
--red-panel: #6e1515;
--white: #ffffff;
--text-dark: #1a2332;
--text-mid: #4a5568;
--gray: rgba(255, 255, 255, 0.55);
--nav-h: 68px;
--font: 'Inter', sans-serif;
--glass: rgba(255, 255, 255, 0.06);
--shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
--radius: 14px;
}
html {
scroll-behavior: smooth;
}
body {
font-family: var(--font);
background: #0d1b2e;
color: var(--white);
overflow-x: hidden;
padding-bottom: 0;
}
.navbar {
display: block;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 999;
height: var(--nav-h);
padding: 0;
}
.nav-link {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 8px 16px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
color: rgba(255, 255, 255, 0.85) !important;
text-decoration: none;
white-space: nowrap;
transition: color 0.2s, background 0.2s;
cursor: pointer;
background: transparent;
}
.lang-switcher {
display: flex;
align-items: center;
gap: 7px;
padding: 7px 14px;
border-radius: 20px;
border: 1.5px solid rgba(255, 255, 255, 0.2);
font-size: 13px;
font-weight: 600;
color: rgba(255, 255, 255, 0.8);
cursor: pointer;
transition: border-color 0.2s, color 0.2s;
}
@media (max-width: 768px) {
.nav-container {
padding: 0 24px;
}
.nav-links {
display: none;
}
.nav-links.open {
display: flex;
flex-direction: column;
align-items: flex-start;
position: fixed;
inset: var(--nav-h) 0 0 0;
background: rgba(10, 16, 30, 0.98);
padding: 28px 24px;
gap: 4px;
z-index: 998;
overflow-y: auto;
}
.hamburger {
display: flex;
}
.has-dropdown .dropdown {
position: static;
transform: none;
opacity: 0;
pointer-events: none;
max-height: 0;
overflow: hidden;
background: transparent;
border: none;
box-shadow: none;
padding: 0 0 0 16px;
margin-top: 0;
width: 100%;
min-width: unset;
transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
.has-dropdown.dropdown-open .dropdown {
opacity: 1;
pointer-events: all;
max-height: 350px;
margin-top: 8px;
}
.has-dropdown .dropdown a {
padding: 8px 12px;
}
}
.section {
padding: 80px 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
}
@media (max-width: 768px) {
.container {
padding: 0 24px;
}
.section {
padding: 60px 0;
}
}
.section-title-dark {
font-size: clamp(22px, 3vw, 34px);
font-weight: 800;
color: #1a2332;
margin-bottom: 12px;
letter-spacing: -0.3px;
text-align: center;
}
.section-desc-dark {
font-size: 14px;
color: #6b7a8d;
max-width: 580px;
line-height: 1.75;
margin: 0 auto;
text-align: center;
}
.section-title-white {
font-size: clamp(22px, 3vw, 34px);
font-weight: 800;
color: #ffffff;
margin-bottom: 12px;
letter-spacing: -0.3px;
text-align: center;
}
.section-desc-white {
font-size: 14px;
color: rgba(255, 255, 255, 0.65);
max-width: 580px;
line-height: 1.75;
margin: 0 auto;
text-align: center;
}
.section-header-center {
text-align: center;
margin-bottom: 56px;
}
.reveal {
opacity: 0;
transform: translateY(28px);
transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
will-change: transform, opacity;
}
.footer {
background: #0a0a0a;
padding: 44px 0 0;
}
.footer-top > div {
max-width: 100% !important;
flex: none !important;
}
@media (max-width: 1100px) {
.footer-top {
grid-template-columns: auto auto auto;
gap: 32px;
}
.footer-contact {
grid-column: span 3;
text-align: left;
justify-self: start;
min-width: unset;
}
.footer-contact h5 {
text-align: left;
}
.footer-contact-list li {
justify-content: flex-start;
}
}
@media (max-width: 900px) {
.footer-top {
grid-template-columns: 1fr 1fr;
gap: 28px;
}
.footer-contact {
grid-column: span 2;
text-align: left;
justify-self: start;
}
.footer-contact h5 {
text-align: left;
}
.footer-contact-list li {
justify-content: flex-start;
}
}
@media (max-width: 576px) {
.footer-top {
grid-template-columns: 1fr;
gap: 24px;
}
.footer-contact {
grid-column: span 1;
}
}
@keyframes heroFadeIn {
from {
opacity: 0;
transform: translateY(22px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes dividerGlow {
0%, 100% {
box-shadow: 0 0 8px rgba(74, 158, 218, 0.5);
width: 60px;
}
50% {
box-shadow: 0 0 18px rgba(74, 158, 218, 0.9);
width: 80px;
}
}
:root {
--bg-dark: #0d1b2e;
--bg-mid: #0f1f35;
--blue-neon: #4a9eda;
--blue-mid: #2271b3;
--blue-deep: #0d2a4a;
--teal-accent: #1db0a0;
--teal-light: #e0f7f4;
--green-accent: #2ecc71;
--yellow-accent: #f5a623;
--white: #ffffff;
--text-dark: #1a2332;
--text-mid: #4a5568;
--gray-light: #f4f7fa;
--nav-h: 68px;
--font: 'Inter', sans-serif;
--radius: 14px;
--shadow-card: 0 4px 24px rgba(0, 0, 0, 0.09);
--shadow-hover: 0 12px 36px rgba(34, 113, 179, 0.15);
}
html {
background: #ffff;
}
body {
background: #ffff;
}
.navbar {
background: rgba(10, 16, 30, 0.55); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255, 255, 255, 0.07); transition: background 0.35s, box-shadow 0.35s;
}
.nav-link {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 8px 16px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
color: rgba(255, 255, 255, 0.85);
text-decoration: none;
white-space: nowrap;
transition: color 0.2s, background 0.2s;
}
.sa-hero {
position: relative;
width: 100%;
height: 100vh;
min-height: 600px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background: #0d1b2e;
}
.sa-hero-bg {
position: absolute;
inset: 0;
z-index: 0;
}
.sa-hero-bg-img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 30%;
display: block;
z-index: 0;
}
.sa-hero-overlay {
position: absolute;
inset: 0;
z-index: 1;
background: linear-gradient(180deg,
rgba(8, 18, 38, 0.75) 0%,
rgba(8, 18, 38, 0.35) 35%,
rgba(8, 18, 38, 0.42) 65%,
rgba(8, 18, 38, 0.80) 100%);
}
.sa-hero-content {
position: relative;
z-index: 5;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
animation: saHeroFadeIn 0.9s ease 0.15s both;
padding: 0 20px;
margin-top: -60px;
}
@keyframes saHeroFadeIn {
from {
opacity: 0;
transform: translateY(22px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.sa-hero-brand-row {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin-bottom: 14px;
}
.sa-hero-brand-logo {
height: 70px;
width: auto;
object-fit: contain;
filter: drop-shadow(0 2px 16px rgba(255, 255, 255, 0.25));
}
.sa-hero-title {
font-size: clamp(44px, 7vw, 82px);
font-weight: 800;
letter-spacing: 3px;
color: #fff;
line-height: 1;
text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 255, 255, 0.08);
margin: 0;
}
.sa-hero-divider {
width: 60px;
height: 2.5px;
background: linear-gradient(90deg, transparent, var(--blue-neon), transparent);
border-radius: 2px;
margin: 0 auto 16px;
box-shadow: 0 0 10px rgba(74, 158, 218, 0.7);
animation: saDividerGlow 2.5s ease-in-out infinite;
}
@keyframes saDividerGlow {
0%,
100% {
box-shadow: 0 0 8px rgba(74, 158, 218, 0.5);
width: 60px;
}
50% {
box-shadow: 0 0 18px rgba(74, 158, 218, 0.9);
width: 90px;
}
}
.sa-hero-subtitle {
font-size: clamp(14px, 1.8vw, 18px);
font-weight: 300;
letter-spacing: 3px;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.70);
margin: 0;
}
.sa-section {
padding: 80px 0;
}
.sa-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
}
.sa-title-dark {
font-size: clamp(22px, 3vw, 34px);
font-weight: 800;
color: #1a2332;
margin-bottom: 12px;
letter-spacing: -0.3px;
text-align: center;
}
.sa-desc-dark {
font-size: 14px;
color: #6b7a8d;
max-width: 700px;
line-height: 1.75;
margin: 0 auto;
text-align: center;
}
.sa-title-white {
font-size: clamp(22px, 3vw, 34px);
font-weight: 800;
color: #ffffff;
margin-bottom: 12px;
letter-spacing: -0.3px;
}
.sa-section-header {
text-align: center;
margin-bottom: 54px;
}
.reveal {
opacity: 0;
transform: translateY(28px);
transition: opacity 0.65s ease, transform 0.65s ease;
}
.sa-management-section {
background: #ffffff;
}
.sa-mgmt-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}
.sa-mgmt-card {
background: #CCEFE4;
border-radius: var(--radius);
padding: 24px 20px 28px;
text-align: left;
box-shadow: none;
border: none;
transition: transform 0.25s, box-shadow 0.25s;
cursor: default;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 10px;
}
.sa-mgmt-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(46,125,94,0.12);
}
.sa-mgmt-icon-wrap {
width: 42px;
height: 42px;
background: transparent;
border-radius: 0;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-bottom: 2px;
}
.sa-mgmt-svg {
width: 36px;
height: 36px;
stroke: #2e7d5e;
fill: none;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}
.sa-mgmt-img {
width: 36px;
height: 36px;
object-fit: contain;
}
.sa-mgmt-card h3 {
font-size: 14px;
font-weight: 700;
color: #111111;
line-height: 1.3;
margin: 0;
}
.sa-mgmt-list {
list-style: disc;
padding-left: 16px;
display: flex;
flex-direction: column;
gap: 5px;
margin: 0;
}
.sa-mgmt-list li {
font-size: 12px;
color: #333333;
line-height: 1.45;
}
.sa-why-section {
position: relative;
overflow: hidden;
padding: 80px 0 72px;
background: #0d1b2e;
}
.sa-why-section .sa-title-white {
font-size: clamp(24px, 3.2vw, 40px);
font-weight: 800;
margin-bottom: 0;
}
.sa-why-bg {
position: absolute;
inset: 0;
z-index: 0;
}
.sa-why-bg-img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
z-index: 0;
filter: blur(6px);
transform: scale(1.05);
}
.sa-why-overlay {
position: absolute;
inset: 0;
z-index: 1;
background: rgba(5, 12, 30, 0.68);
}
.sa-why-inner {
position: relative;
z-index: 2;
}
.sa-why-header {
margin-bottom: 36px;
text-align: center;
}
.sa-why-table {
width: 100%;
}
.sa-why-table-head {
display: grid;
grid-template-columns: 1fr 1fr;
padding-bottom: 16px;
border-bottom: 1.5px solid rgba(255, 255, 255, 0.30);
}
.sa-why-th {
font-size: 19px;
font-weight: 800;
color: #ffffff;
letter-spacing: -0.2px;
}
.sa-why-th:last-child {
padding-left: 48px;
}
.sa-why-row {
display: grid;
grid-template-columns: 1fr 1fr;
border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
.sa-why-row:first-of-type {
border-top: none;
}
.sa-why-row:last-child {
border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
.sa-why-td {
padding: 14px 0;
font-size: 15px;
display: flex;
align-items: center;
gap: 10px;
line-height: 1.4;
}
.sa-why-td--feature {
padding-right: 32px;
font-weight: 700;
color: #ffffff;
}
.sa-why-td--benefit {
padding-left: 48px;
color: rgba(255, 255, 255, 0.88);
font-weight: 400;
}
.sa-why-emoji {
font-size: 16px;
flex-shrink: 0;
line-height: 1;
display: inline-flex;
}
.sa-why-feature-name {
font-weight: 700;
}
.sa-why-btn-row {
display: flex;
gap: 12px;
flex-wrap: wrap;
justify-content: center;
margin-top: 44px;
}
.sa-why-pill-btn {
padding: 9px 20px;
border-radius: 30px;
background: #3a7a54;
border: none;
color: #ffffff;
font-size: 13px;
font-weight: 600;
text-decoration: none;
transition: background 0.2s, transform 0.15s;
white-space: nowrap;
display: inline-flex;
align-items: center;
gap: 5px;
letter-spacing: 0.2px;
}
.sa-why-pill-check {
font-size: 12px;
font-weight: 800;
color: #ffffff;
}
.sa-why-pill-btn:hover {
background: #4a9a66;
transform: translateY(-1px);
}
.sa-btn-outline {
padding: 10px 22px;
border-radius: 8px;
border: 1.5px solid rgba(255, 255, 255, 0.4);
color: #fff;
font-size: 13px;
font-weight: 600;
text-decoration: none;
transition: border-color 0.2s, background 0.2s;
}
.sa-btn-outline:hover {
border-color: var(--blue-neon);
background: rgba(74, 158, 218, 0.1);
}
.sa-btn-solid {
padding: 10px 22px;
border-radius: 8px;
background: var(--blue-mid);
color: #fff;
font-size: 13px;
font-weight: 600;
text-decoration: none;
border: none;
transition: background 0.2s, transform 0.2s;
}
.sa-btn-solid:hover {
background: #1a5a9a;
transform: translateY(-1px);
}
.sa-access-section {
background: #ffffff;
}
.sa-access-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.sa-access-card {
background: #CCDCEF;
border-radius: 12px;
padding: 24px 20px 26px;
box-shadow: 0 1px 6px rgba(0,0,0,0.07);
border: none;
transition: transform 0.25s, box-shadow 0.25s;
display: flex;
flex-direction: column;
gap: 10px;
}
.sa-access-card:hover {
transform: translateY(-4px);
box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.sa-access-icon-wrap {
width: 52px;
height: 52px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-bottom: 4px;
}
.sa-access-icon {
width: 46px;
height: 46px;
object-fit: contain;
}
.sa-access-card h3 {
font-size: 14px;
font-weight: 700;
color: #111827;
line-height: 1.45;
margin: 0;
}
.sa-access-card p {
font-size: 12.5px;
color: #4b5563;
line-height: 1.65;
margin: 0;
}
.sa-access-card ul {
list-style: disc;
padding-left: 16px;
margin: 0;
display: flex;
flex-direction: column;
gap: 5px;
}
.sa-access-card ul li {
font-size: 12px;
color: #374151;
line-height: 1.55;
}
.sa-lapi-section {
position: relative;
overflow: hidden;
padding: 90px 0;
background: #0d1b2e;
}
.sa-lapi-bg {
position: absolute;
inset: 0;
z-index: 0;
}
.sa-lapi-bg-img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 20%;
z-index: 0;
}
.sa-lapi-overlay {
position: absolute;
inset: 0;
z-index: 1;
background: rgba(78, 126, 168, 0.88);
}
.sa-lapi-inner {
position: relative;
z-index: 2;
}
.sa-lapi-header {
margin-bottom: 48px;
}
.sa-lapi-header h2 {
font-size: clamp(28px, 3.5vw, 36px);
font-weight: 700;
color: #fff;
margin-bottom: 16px;
letter-spacing: -0.5px;
}
.sa-lapi-header-desc {
font-size: 15px;
color: rgba(255, 255, 255, 0.85);
line-height: 1.6;
}
.sa-lapi-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.sa-lapi-card {
background: #ffffff;
border-radius: 16px;
padding: 36px 32px;
transition: transform 0.25s, box-shadow 0.25s;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.sa-lapi-card:hover {
background: #ffffff;
transform: translateY(-4px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.sa-lapi-card-icon {
width: 36px;
height: 36px;
margin-bottom: 20px;
display: flex;
align-items: center;
justify-content: center;
}
.sa-lapi-card-icon img {
width: 100%;
height: 100%;
object-fit: contain;
}
.sa-lapi-card h3 {
font-size: 20px;
font-weight: 700;
color: #111111;
margin-bottom: 12px;
}
.sa-lapi-card p {
font-size: 14px;
color: #4a5568;
line-height: 1.6;
}
.sa-supervision-section {
background: #ffffff;
}
.sa-supervision-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}
.sa-sup-card {
background: #CCEFE4;
border-radius: 16px;
padding: 24px 24px;
border: none;
transition: transform 0.25s, box-shadow 0.25s;
display: flex;
flex-direction: column;
text-align: left;
height: 100%;
}
.sa-sup-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(18, 53, 40, 0.08);
}
.sa-sup-icon-wrap {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: flex-start;
margin-bottom: 12px;
}
.sa-sup-img {
width: 32px;
height: 32px;
object-fit: contain;
display: block;
}
.sa-sup-card h3 {
font-size: 18px;
font-weight: 700;
color: #111b27;
line-height: 1.35;
margin: 0 0 12px 0;
}
.sa-sup-card-intro {
font-size: 13.5px;
font-weight: 600;
color: #111b27;
line-height: 1.45;
margin: 0 0 6px 0;
}
.sa-sup-card-text {
font-size: 13.5px;
font-weight: 400;
color: #2c3e50;
line-height: 1.6;
margin: 0 0 10px 0;
}
.sa-sup-list-title {
font-size: 13.5px;
font-weight: 600;
color: #111b27;
margin: 0 0 6px 0;
}
.sa-sup-list {
list-style: disc;
padding-left: 18px;
margin: 0;
display: flex;
flex-direction: column;
gap: 4px;
}
.sa-sup-list li {
font-size: 13px;
color: #2c3e50;
line-height: 1.5;
padding-left: 0;
position: relative;
}
.sa-sup-list li::before {
display: none;
}
.sa-sup-card *:last-child {
margin-bottom: 0;
}
.sa-self-section-new {
position: relative;
overflow: hidden;
padding: 90px 0;
background: #0d1b2e;
}
.sa-self-bg {
position: absolute;
inset: 0;
z-index: 0;
}
.sa-self-bg-img {
position: absolute;
inset: -10px;
width: calc(100% + 20px);
height: calc(100% + 20px);
object-fit: cover;
object-position: center;
z-index: 0;
opacity: 0.85;
filter: blur(3px);
}
.sa-self-overlay {
position: absolute;
inset: 0;
z-index: 1;
background: rgba(78, 126, 168, 0.75);
}
.sa-self-inner {
position: relative;
z-index: 2;
}
.sa-self-header {
margin-bottom: 48px;
text-align: left;
}
.sa-self-header h2 {
font-size: clamp(28px, 3.5vw, 36px);
font-weight: 700;
color: #fff;
margin-bottom: 16px;
letter-spacing: -0.5px;
}
.sa-self-header-desc {
font-size: 15px;
color: rgba(255, 255, 255, 0.85);
line-height: 1.6;
max-width: 600px;
}
.sa-self-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.sa-self-card-white {
background: #ffffff;
border-radius: 16px;
padding: 32px 28px;
transition: transform 0.25s, box-shadow 0.25s;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
display: flex;
flex-direction: column;
align-items: flex-start;
height: 100%;
cursor: default;
}
.sa-self-card-white:hover {
transform: translateY(-4px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.sa-self-card-icon {
width: 36px;
height: 36px;
margin-bottom: 20px;
display: flex;
align-items: center;
justify-content: center;
}
.sa-self-card-icon img {
width: 100%;
height: 100%;
object-fit: contain;
}
.sa-self-card-white h3 {
font-size: 16px;
font-weight: 700;
color: #111111;
margin-bottom: 12px;
line-height: 1.35;
}
.sa-self-card-white p {
font-size: 13.5px;
color: #4a5568;
line-height: 1.55;
margin: 0;
}
.sa-portal-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
margin-top: 40px;
}
.sa-portal-card {
background: #ffffff;
border-radius: 16px;
padding: 35px 28px;
display: flex;
flex-direction: column;
color: #4a5568;
transition: transform 0.25s, box-shadow 0.25s;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
height: 100%;
}
.sa-portal-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.sa-portal-col-title {
font-size: 15px;
font-weight: 800;
letter-spacing: 0.5px;
margin: 0 0 16px 0;
color: #08203f;
line-height: 1.35;
}
.sa-portal-col-sub {
font-size: 12px;
font-weight: 700;
color: #4a5568;
margin: 0 0 12px 0;
line-height: 1.45;
}
.sa-portal-col-desc {
font-size: 12.5px;
color: #718096;
line-height: 1.55;
margin: 0 0 24px 0;
}
.sa-portal-step-group {
display: flex;
flex-direction: column;
gap: 20px;
}
.sa-portal-step {
display: flex;
flex-direction: column;
gap: 6px;
}
.sa-portal-step-num {
font-size: 12.5px;
font-weight: 700;
color: #08203f;
letter-spacing: 0.5px;
}
.sa-portal-step-text {
font-size: 12px;
color: #4a5568;
line-height: 1.55;
margin: 0;
}
.sa-portal-step-list {
list-style: disc;
padding-left: 16px;
margin: 0;
display: flex;
flex-direction: column;
gap: 6px;
}
.sa-portal-step-list li {
font-size: 12px;
color: #4a5568;
line-height: 1.5;
}
.sa-portal-step-list li em {
font-style: italic;
opacity: 0.85;
}
.benefits-title {
color: #08203f;
}
.sa-portal-benefit-group {
display: flex;
flex-direction: column;
gap: 20px;
}
.sa-portal-benefit {
display: flex;
flex-direction: column;
gap: 4px;
}
.sa-portal-benefit-name {
font-size: 12.5px;
font-weight: 800;
color: #08203f;
}
.sa-portal-benefit-desc {
font-size: 12px;
color: #4a5568;
line-height: 1.5;
margin: 0;
}
.sa-solutions-section {
background: #ffffff;
padding: 90px 0;
}
.sa-solution-group {
margin-bottom: 64px;
}
.sa-solution-group:last-child {
margin-bottom: 0;
}
.sa-solution-title {
font-size: clamp(20px, 2.5vw, 24px);
font-weight: 700;
color: #08203f;
margin-bottom: 24px;
text-align: left;
letter-spacing: -0.3px;
}
.sa-solution-card {
display: grid;
grid-template-columns: 1.1fr 1.2fr;
background: #f8f9fa;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
border: 1px solid rgba(0, 0, 0, 0.04);
align-items: stretch;
}
.sa-solution-card-image {
position: relative;
width: 100%;
height: 100%;
min-height: 380px;
}
.sa-solution-card-image img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.sa-solution-card-content {
padding: 48px;
display: flex;
flex-direction: column;
justify-content: center;
gap: 28px;
}
@media (min-width: 993px) {
.sa-solution-card-content {
padding: 32px 40px;
}
}
.sa-solution-card-content::-webkit-scrollbar {
width: 6px;
}
.sa-solution-card-content::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
.sa-solution-card-content::-webkit-scrollbar-thumb {
background: #ccc;
border-radius: 10px;
}
.sa-solution-card-content::-webkit-scrollbar-thumb:hover {
background: #999;
}
.sa-solution-item h3 {
font-size: clamp(16px, 2vw, 19px);
font-weight: 700;
color: #08203f;
margin-bottom: 8px;
line-height: 1.3;
}
.sa-solution-item p {
font-size: 14px;
color: #4a5568;
line-height: 1.6;
margin-bottom: 8px;
}
.sa-solution-item p:last-child {
margin-bottom: 0;
}
.sa-solution-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 16px;
}
.sa-solution-list li {
font-size: 14px;
color: #4a5568;
line-height: 1.55;
display: flex;
align-items: flex-start;
gap: 10px;
}
.sa-solution-list li strong {
color: #08203f;
font-weight: 600;
}
.sa-check-icon {
font-size: 14px;
flex-shrink: 0;
margin-top: 2px;
}
.sa-solution-bullet-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 10px;
}
.sa-solution-bullet-list li {
font-size: 14px;
color: #4a5568;
line-height: 1.55;
position: relative;
padding-left: 20px;
}
.sa-solution-bullet-list li::before {
content: "•";
position: absolute;
left: 0;
top: -2px;
color: #08203f;
font-size: 18px;
line-height: 1.25;
font-weight: bold;
}
.sa-solution-bullet-list li strong {
color: #08203f;
font-weight: 600;
}
.sa-sub-item-title {
font-size: 15px;
font-weight: 700;
color: #08203f;
margin: 12px 0 6px;
}
.sa-sub-item-title:first-of-type {
margin-top: 0;
}
.sa-bullet-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 5px;
}
.sa-bullet-list li {
font-size: 13.5px;
color: #4a5568;
line-height: 1.5;
position: relative;
padding-left: 16px;
}
.sa-bullet-list li::before {
content: "•";
position: absolute;
left: 0;
color: #08203f;
font-weight: bold;
}
@media (max-width: 992px) {
.sa-solution-card {
grid-template-columns: 1fr;
}
.sa-solution-card-image {
min-height: 300px;
}
.sa-solution-card-content {
padding: 32px 24px;
}
}
@media (max-width: 1024px) {
.sa-mgmt-grid {
grid-template-columns: repeat(2, 1fr);
}
.sa-access-grid {
grid-template-columns: repeat(2, 1fr);
}
.sa-supervision-grid {
grid-template-columns: repeat(2, 1fr);
}
.sa-self-cards {
grid-template-columns: repeat(2, 1fr);
}
.sa-portal-grid {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.sa-lapi-cards {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 768px) {
.nav-links.open {
display: flex;
flex-direction: column;
align-items: flex-start;
position: fixed;
inset: var(--nav-h) 0 0 0;
background: rgba(10, 16, 30, 0.98);
padding: 28px 24px;
gap: 4px;
z-index: 998;
}
.has-dropdown .dropdown {
position: static;
transform: none;
opacity: 0;
pointer-events: none;
max-height: 0;
overflow: hidden;
background: transparent;
border: none;
box-shadow: none;
padding: 0 0 0 16px;
margin-top: 0;
width: 100%;
min-width: unset;
transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
.has-dropdown.dropdown-open .dropdown {
opacity: 1;
pointer-events: all;
max-height: 350px;
margin-top: 8px;
}
.has-dropdown .dropdown a {
padding: 8px 12px;
}
.sa-mgmt-grid {
grid-template-columns: repeat(2, 1fr);
gap: 16px;
}
.sa-access-grid {
grid-template-columns: 1fr 1fr;
gap: 14px;
}
.sa-why-table-head,
.sa-why-row {
grid-template-columns: 1fr;
}
.sa-why-th:first-child {
border-right: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.sa-why-td--feature {
border-right: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.sa-lapi-cards {
grid-template-columns: 1fr;
gap: 14px;
}
.sa-supervision-grid {
grid-template-columns: 1fr 1fr;
gap: 14px;
}
.sa-self-cards {
grid-template-columns: 1fr 1fr;
gap: 14px;
}
.sa-portal-grid {
grid-template-columns: 1fr;
gap: 16px;
}
.sa-lapi-header {
flex-direction: column;
}
.sa-container {
padding: 0 20px;
}
.sa-main-wrapper {
margin: 0 8px;
}
}
@media (max-width: 540px) {
.sa-mgmt-grid {
grid-template-columns: 1fr;
}
.sa-access-grid {
grid-template-columns: 1fr;
}
.sa-supervision-grid {
grid-template-columns: 1fr;
}
.sa-self-cards {
grid-template-columns: 1fr;
}
.sa-hero-brand-row {
flex-direction: column;
gap: 10px;
}
}