:root {
    --bg-ink: #0a1220;
    --bg-ink-2: #101b2d;
    --bg-grid: rgba(255, 255, 255, 0.05);
    --cyan: #4ae6c7;
    --cyan-deep: #1cc7b5;
    --electric: #5fb2ff;
    --sand: #f6f4ef;
    --text: #e8edf6;
    --muted: #a9b6cc;
    --card: rgba(12, 23, 40, 0.9);
    --stroke: rgba(255, 255, 255, 0.08);
}

body {
    font-family: "IBM Plex Sans", sans-serif;
    background: radial-gradient(1200px circle at 10% -10%, #12345f 0%, var(--bg-ink) 48%, #0b0f17 100%);
    color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.02em;
    color: var(--text);
}

.page-wrapper {
    background-image: radial-gradient(var(--bg-grid) 1px, transparent 1px);
    background-size: 42px 42px;
}

.main-header,
.stricky-header {
    background: rgba(8, 15, 27, 0.86);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
}

.main-menu__list > li > a {
    color: var(--text);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.main-menu__list > li > a:hover {
    color: var(--cyan);
}

.neo-btn {
    background: linear-gradient(120deg, var(--cyan), var(--electric));
    color: #081221;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.neo-btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.neo-section {
    padding: 90px 0;
}

.neo-section__title {
    font-size: clamp(28px, 3vw, 38px);
    margin-bottom: 12px;
}

.neo-section__subtitle {
    color: var(--muted);
    max-width: 720px;
}

.neo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-top: 32px;
}

.neo-card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 20px;
    padding: 24px;
    height: 100%;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.neo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(95, 178, 255, 0.4);
}

.neo-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(95, 178, 255, 0.18);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}

.neo-card__icon img {
    width: 28px;
    height: 28px;
}

.neo-card__kicker {
    color: var(--cyan);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 8px;
}

.neo-card__title {
    font-size: 20px;
    margin-bottom: 10px;
}

.neo-card__text {
    color: var(--muted);
}

.stricked-menu.stricky-fixed {
    background: rgba(8, 15, 27, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stricky-fixed .main-menu__list > li > a {
    color: var(--text);
}

.stricky-fixed .main-menu__list > li > a:hover {
    color: var(--cyan);
}

.page-header {
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    padding: 80px 0 40px;
}

.page-header-bg-overly {
    background: linear-gradient(120deg, rgba(10, 18, 32, 0.9) 0%, rgba(7, 13, 22, 0.65) 55%, rgba(10, 18, 32, 0.95) 100%);
}

.page-header__inner h2,
.page-header__inner h2 {
    font-size: clamp(28px, 3.2vw, 40px);
}

.service-details__title,
.news-details__title,
.section-title__title {
    color: var(--text);
}

.service-details__text,
.service-details__text-2,
.news-details__text-1,
.news-details__text-2 {
    color: var(--muted);
}

.service-details__content,
.news-details__content,
.news-details__bottom,
.sidebar__single {
    background: rgba(12, 23, 40, 0.7);
    border: 1px solid var(--stroke);
    border-radius: 18px;
}

.sidebar__single {
    padding: 24px;
}

.site-footer {
    background: #080f1b;
}

.site-footer-map {
    display: none;
}

.site-footer__top {
    padding: 26px 0 10px;
}

.site-footer__top-inner {
    padding: 18px 0 8px;
}

.site-footer__bottom {
    padding: 10px 0;
}

.site-footer-two .site-footer__top {
    padding: 26px 0 10px !important;
}

.site-footer-two .site-footer__top-inner {
    padding: 18px 0 8px !important;
}

.footer-widget__about-logo img {
    width: 140px;
}

.footer-widget__about-text,
.footer-widget__contact-text,
.footer-widget__links-list a,
.site-footer__bottom-text {
    color: var(--muted);
}

@media (max-width: 768px) {
    .page-header {
        padding: 70px 0 36px;
    }
}

.neo-cta {
    padding: 40px 0 20px;
}

.neo-cta__inner {
    margin-bottom: 10px;
}

.neo-section + .site-footer {
    margin-top: 0;
}

.neo-card--tight {
    max-width: 420px;
    margin: 0 auto;
}

.service-details + .neo-section {
    padding-top: 30px;
}

.service-details__benefits {
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-details {
    padding-bottom: 40px;
}

.service-details__img img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 16px;
}

.service-details__content img,
.service-details__benefits img {
    width: auto;
    max-width: 140px;
}

.aligned-image,
.aligned-image2 {
    width: 32%;
    max-width: 180px;
    margin: 0 0 12px 16px;
}

.accrodion.active .accrodion-title {
    background: rgba(95, 178, 255, 0.22);
    border-color: rgba(95, 178, 255, 0.45);
}

.accrodion-title h4 {
    color: var(--text);
}

.accrodion .accrodion-title h4 {
    color: #e3e9f4;
}

.accrodion-content {
    margin-bottom: 8px;
}

.faq-one-accrodion .accrodion {
    background: rgba(12, 23, 40, 0.88);
    border: 1px solid var(--stroke);
    border-radius: 14px;
    box-shadow: none;
}

.faq-one-accrodion .accrodion.active {
    background: rgba(12, 23, 40, 0.88);
    box-shadow: none;
}

.faq-one-accrodion .accrodion-title {
    background: rgba(12, 23, 40, 0.88);
    border-bottom: none !important;
}

.faq-one-accrodion .accrodion-title h4 {
    color: #e8edf6 !important;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
    background: rgba(95, 178, 255, 0.22);
}

.faq-one-accrodion .accrodion.active .accrodion-content {
    background: rgba(12, 23, 40, 0.88);
    border-top: none;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
    color: #f4f8ff;
}

.faq-one-accrodion .accrodion-title h4::before {
    color: var(--cyan);
    background: rgba(74, 230, 199, 0.15);
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    color: #f4f8ff;
    background: rgba(95, 178, 255, 0.25);
}

.faq-one-accrodion .accrodion-content {
    background: rgba(12, 23, 40, 0.88);
    padding: 0 40px 24px;
    border-top: none !important;
}

.faq-one-accrodion .accrodion.active .accrodion-content {
    background: rgba(12, 23, 40, 0.88);
}

.faq-one-accrodion .accrodion-content p {
    color: var(--muted);
}

.faq-one-accrodion hr {
    margin: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.aligned-image,
.aligned-image2 {
    width: 24%;
    max-width: 120px;
    margin: 0 0 10px 16px;
}

.accrodion-content img {
    max-width: 160px;
    height: auto;
}

.neo-media--half {
    width: 50%;
    display: block;
}

.neo-media--half {
    margin: 0 auto;
}

.accrodion-title {
    background: rgba(12, 23, 40, 0.9);
    border: 1px solid var(--stroke);
}

.accrodion-title h4 {
    color: var(--text);
}

.accrodion-content {
    background: rgba(12, 23, 40, 0.8);
    border: 1px solid var(--stroke);
    border-top: none;
}

.accrodion-content p {
    color: var(--muted);
}
