:root {
    --bg-dark: #0b0f18;
    --bg-dark-2: #0a0d14;
    --soft: #f3f5f7;

    --accent: #b7ff00;

    --text: #121826;
    --muted: #6b7280;

    --radius-lg: 18px;
    --radius-xl: 26px;

    --shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
body {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Arial,
        sans-serif;
    color: var(--text);
    scroll-behavior: smooth;
    margin: 0;
}

.fw-800 {
    font-weight: 800;
}
.fw-700 {
    font-weight: 700;
}
.text-accent {
    color: var(--accent) !important;
}

.section-pad {
    padding: 96px 0;
}
.section-dark {
    background:
        radial-gradient(
            1200px 600px at 20% 10%,
            rgba(183, 255, 0, 0.12),
            transparent 50%
        ),
        var(--bg-dark);
}
.section-soft {
    background: var(--soft);
}

.box-shadow {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.topbar {
    background: #070a10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.navbar .nav-link {
    color: #012125;
    font-weight: 600;
    padding: 0.75rem 0.9rem;
}
.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: #c1f430;
}

.brand-logo {
    height: 64px;
    width: auto;
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #0a0d14;
    font-weight: 400;
}
.btn-accent:hover {
    filter: brightness(0.95);
    color: #0a0d14;
}

.link-accent {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
}
.link-accent:hover {
    text-decoration: underline;
}
.top-contact-btn {
    background: #c9ff57;
    color: #042023;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 0;
    border: 1px solid #acfb02;
    letter-spacing: 0.04em;
    text-decoration: none;
}
.top-contact-btn:hover {
    background: #b8f0474b;
    color: #032428;
    border: 1px solid #032428;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.hero-section {
    position: relative;
    padding: 90px 0 130px;
    background:
        linear-gradient(
            180deg,
            rgba(7, 10, 16, 0.75) 0%,
            rgba(7, 10, 16, 0.65) 45%,
            rgba(10, 13, 20, 0.85) 100%
        ),
        url("../images/hero.jpg") center / cover no-repeat;
    background-color: var(--bg-dark-2);
    overflow: hidden;
    min-height: calc(100vh - 96px);
}
.hero-content {
    padding-top: 0px;
}
.hero-section h2 {
    max-width: 560px;
}
.hero-section .lead {
    max-width: 520px;
    margin-top: 30%;
}
.hero-section .btn-accent {
    min-width: 220px;
}
.hero-trusted {
    position: absolute;
    right: 40px;
    bottom: -5px;
    max-width: 320px;
    margin-top: 0;
    padding-left: 0;
}
.hero-trusted .small {
    font-size: 16px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            900px 500px at 12% 10%,
            rgba(183, 255, 0, 0.16),
            transparent 55%
        ),
        radial-gradient(
            900px 500px at 85% 30%,
            rgba(255, 255, 255, 0.06),
            transparent 55%
        ),
        linear-gradient(180deg, #070a10 0%, var(--bg-dark-2) 60%);
    pointer-events: none;
}
.hero-badge {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    margin-bottom: 14px;
}
.hero-section h1 {
    color: #fff;
    font-size: 72px;
}
.hero-section .lead {
    max-width: 560px;
}
.hero-contact-btn {
    background: #c9ff57;
    color: #042023;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 0;
    letter-spacing: 0.04em;
}
.hero-contact-btn:hover {
    background: #b8f0474b;
    color: #b8f047;
    border: 1px solid #b8f047;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}
.btn-outline-light {
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 0;
    letter-spacing: 0.04em;
}

.trusted li {
    color: rgba(255, 255, 255, 0.78);
}

.hero-art {
    position: relative;
    border-radius: var(--radius-xl);
    min-height: 420px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.hero-art img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-card {
    position: absolute;
    left: 22px;
    bottom: 22px;
    width: min(320px, calc(100% - 44px));
    padding: 16px;
    border-radius: var(--radius-lg);
    background: rgba(10, 13, 20, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: #fff;
}

.icon-pill {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(183, 255, 0, 0.16);
    border: 1px solid rgba(183, 255, 0, 0.25);
    color: var(--accent);
    font-size: 18px;
}

.section-title .kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 100;
    font-size: 12px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 500;
    color: #0a0d14;
}

.stack-cards .mini-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    margin-bottom: 12px;
}
.mini-ill {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(183, 255, 0, 0.18);
}

.feature-card {
    padding: 18px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(183, 255, 0, 0.375);
    background: rgba(183, 255, 0, 0.092);
    height: 100%;
}
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(183, 255, 0, 0.375);
    color: #0a0d14;
    margin-bottom: 10px;
    font-size: 18px;
}
.about-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #06363a;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}
.about-card-carousel {
    position: relative;
}
.about-card-slide {
    height: auto;
}
.about-card-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 14px 0 0;
}
.about-card-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(6, 54, 58, 0.25);
    opacity: 1;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}
.about-card-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
    transform: scale(1.05);
}
.about-card-dot:focus-visible {
    outline: 2px solid rgba(183, 255, 0, 0.7);
    outline-offset: 3px;
}
.about-card-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}
.about-card-body {
    padding: 22px 24px 28px;
    color: rgba(255, 255, 255, 0.85);
}
.about-card-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.about-contact-btn {
    background: #c9ff57;
    color: #042023;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 0;
    letter-spacing: 0.04em;
}
.about-contact-btn:hover {
    background: #b8f047;
    color: #042023;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.about-lower {
    margin-top: 28px;
    display: grid;
    grid-template-columns: minmax(200px, 1fr) minmax(240px, 1.2fr);
    gap: 20px;
    align-items: center;
}
.about-years-value {
    font-size: 88px;
    line-height: 0.9;
    font-weight: 800;
    color: #0a2f33;
}
.about-years-label {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #4b5563;
}
.about-lower-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    display: block;
}

.counter-card {
    background: #06363a;
    border: 1px solid #001618;
    border-radius: 24px;
    text-align: center;
    padding: 30px 18px;
    height: 100%;
    position: relative;
}
.counter-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent) !important;
    line-height: 1;
    margin: 0;
}
.counter-suffix {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent) !important;
    margin: 0;
}
.counter-label {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

.service-card {
    height: 100%;
    padding: 22px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.section-dark#services {
    position: relative;
    background:
        radial-gradient(
            700px 420px at 85% 20%,
            rgba(183, 255, 0, 0.08),
            transparent 60%
        ),
        radial-gradient(
            900px 520px at 15% 70%,
            rgba(255, 255, 255, 0.04),
            transparent 65%
        ),
        linear-gradient(180deg, #052b2f 0%, #032428 100%);
    overflow: hidden;
}
.section-dark#services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/shape-bg.png") center / cover no-repeat;
    opacity: 0.35;
    pointer-events: none;
}
.services-accordion {
    margin-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.services-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 26px 0;
}
.services-item:hover {
    cursor: pointer;
}
.services-item .services-panel {
    display: grid;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    transition:
        max-height 0.6s ease,
        opacity 0.4s ease,
        transform 0.45s ease;
}
.services-item.is-active .services-panel {
    max-height: 420px;
    opacity: 1;
    transform: translateY(0);
}
.services-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.services-row h3 {
    color: #fff;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    margin: 0;
}
.services-arrow {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    display: inline-flex;
    transition:
        transform 0.2s ease,
        color 0.2s ease;
}
.services-arrow.is-open {
    color: var(--accent);
}
.services-item.is-active .services-arrow {
    transform: rotate(90deg);
}
.services-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 24px;
    margin-top: 18px;
    align-items: center;
}
.services-panel-text {
    max-width: 520px;
}
.services-panel-text .btn {
    margin-top: 14px;
}
.services-panel-media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}
.service-top {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}
.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(183, 255, 0, 0.16);
    border: 1px solid rgba(183, 255, 0, 0.25);
    color: var(--accent);
}

.process-contact-btn {
    background: #c9ff57;
    color: #042023;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 0;
    letter-spacing: 0.04em;
}
.process-contact-btn:hover {
    background: #b8f047;
    color: #042023;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.process-card {
    padding: 32px 36px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: none;
    height: 100%;
    position: relative;
}
.process-card:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}
.process-num {
    font-weight: 900;
    color: rgba(17, 24, 39, 0.08);
    font-size: 72px;
    line-height: 1;
    margin-bottom: 10px;
}
.process-card:hover > .process-num {
    color: #b8f047;
}

.process-section .section-divider {
    height: 1px;
    background: rgba(17, 24, 39, 0.08);
    margin: 18px 0 28px;
}
.process-card-wide {
    padding: 36px 40px 40px;
}
.process-card-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    gap: 24px;
    align-items: start;
    margin-bottom: 18px;
}
.process-card-wide p {
    margin-left: 0;
}
.process-card-head h5 {
    margin: 0;
    font-size: 28px;
    color: #0a2f33;
}
.process-card-media img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.process-card-wide .process-num {
    position: absolute;
    left: 36px;
    bottom: 28px;
    font-size: 72px;
    color: rgba(17, 24, 39, 0.08);
    pointer-events: none;
}

@media (max-width: 991px) {
    .process-card-wide .process-num {
        position: static;
        margin-top: 16px;
        font-size: 56px;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .process-card-wide p {
        margin-left: 230px;
    }
}

@media (max-width: 575px) {
    .process-card-wide .process-num {
        font-size: 48px;
    }
}
.process-illustration {
    padding: 22px;
    background: #fff;
    display: grid;
    place-items: center;
    max-width: calc(100vw - 15%);
}
.process-illustration img {
    width: 100%;
    height: auto;
    max-width: 420px;
}

.btn-filter {
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid rgba(17, 24, 39, 0.16);
}
.btn-filter.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #0a0d14;
}

.portfolio-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.1);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}
.portfolio-card img {
    width: 100%;
    height: auto;
    display: block;
}
.portfolio-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 14px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}
.portfolio-card a {
    position: relative;
    display: block;
}

.portfolio-section {
    position: relative;
    background: linear-gradient(180deg, #052b2f 0%, #032428 100%);
    overflow: hidden;
}
.portfolio-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/office-building.jpg") center / cover no-repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}
.portfolio-swiper {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.portfolio-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
    width: 100%;
}
.portfolio-nav {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
}
.portfolio-button {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: #b7ff00;
    color: #062c2f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease;
}
.portfolio-controls .swiper-button-prev,
.portfolio-controls .swiper-button-next {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    margin: 0;
}
.portfolio-button::after,
.portfolio-button::before {
    content: none;
}
.portfolio-button:hover {
    background: var(--accent);
    color: #052b2f;
    border-color: transparent;
    transform: translateY(-1px);
}
.portfolio-button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}
.portfolio-button.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}
.portfolio-swiper .swiper-wrapper {
    align-items: stretch;
}

.portfolio-slide {
    height: auto;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.portfolio-swiper .swiper-slide-active {
    opacity: 1;
    pointer-events: auto;
}
.portfolio-media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
}
.portfolio-content {
    height: 520px;
    margin-left: 36px;
}
.portfolio-content .kicker {
    margin-bottom: 12px;
}
.portfolio-content h2 {
    margin-bottom: 18px;
}
.case-summary {
    margin: 16px 0 22px;
    color: rgba(255, 255, 255, 0.75);
    display: grid;
    gap: 18px;
}
.case-block h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.case-block p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
}
.case-list {
    list-style: none;
    margin: 0;
    padding: 0 0 0 18px;
    display: grid;
    gap: 8px;
    font-size: 18px;
    line-height: 1.7;
}
.case-list li {
    position: relative;
}
.case-list li::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
}
.portfolio-quote {
    font-size: 72px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}
.portfolio-content p {
    font-size: 16px;
    line-height: 1.8;
}
.portfolio-author {
    margin-top: 18px;
}
.portfolio-pagination {
    position: static;
    display: flex;
    gap: 10px;
    justify-content: end;
    flex: 0 0 auto;
}
.portfolio-pagination .swiper-pagination-bullet {
    width: 28px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
}
.portfolio-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 34px;
}

.team-card,
.blog-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.1);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}
.team-card:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}
.team-card img,
.blog-card img {
    width: 100%;
    height: auto;
    display: block;
}
.team-photo {
    position: relative;
    overflow: hidden;
}
.team-photo img {
    transition: transform 0.35s ease;
}
.team-brief {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0) 0%,
        rgba(15, 23, 42, 0.65) 40%,
        rgba(15, 23, 42, 0.92) 100%
    );
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}
.team-card:hover .team-photo img {
    transform: scale(1.03);
}
.team-card:hover .team-brief {
    opacity: 1;
    transform: translateY(0);
}
.team-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.team-linkedin {
    color: #0a66c2;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(10, 102, 194, 0.3);
    background: rgba(10, 102, 194, 0.08);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}
.team-linkedin:hover {
    transform: translateY(-1px);
    background: rgba(10, 102, 194, 0.16);
    box-shadow: 0 6px 14px rgba(10, 102, 194, 0.2);
}

.contact-section {
    background: #062c2f;
    color: #fff;
}
.contact-panel {
    padding: 80px 72px;
    max-width: 720px;
    margin: 0 auto;
}
.contact-kicker {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
}
.contact-panel h2 {
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 800;
    margin-bottom: 28px;
}
.contact-input {
    background: #0b3a3f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e9f3f2;
    padding: 14px 18px;
    height: 56px;
}
.contact-input::placeholder,
.contact-input option :disabled {
    color: rgba(233, 243, 242, 0.6);
}
.contact-input:focus {
    background: #0e4247;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: none;
}
.contact-textarea {
    height: auto;
    min-height: 140px;
    resize: vertical;
}
.contact-submit {
    background: #c9ff57;
    color: #042023;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 0;
    letter-spacing: 0.04em;
}
.contact-submit:hover {
    background: #b8f047;
    color: #042023;
}
.contact-map {
    position: relative;
    min-height: 520px;
    height: 100%;
}
.contact-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 991px) {
    .contact-panel {
        padding: 56px 32px;
    }
    .contact-map {
        min-height: 380px;
    }
}

@media (max-width: 991px) {
    body {
        padding-top: 0;
    }

    .section-pad {
        padding: 72px 0;
    }

    .hero-section {
        padding: 64px 0 80px;
        min-height: auto;
    }
    .hero-section h1 {
        font-size: 64px;
    }
    .hero-section h2 {
        font-size: 36px;
    }
    .hero-section .lead {
        margin-top: 0;
        max-width: 100%;
    }
    .hero-trusted {
        position: static;
        max-width: 100%;
        margin-top: 24px;
    }
    .hero-section .btn-accent {
        min-width: auto;
    }

    .portfolio-content {
        height: auto;
        margin-left: 0;
    }
    .portfolio-media img {
        height: auto;
    }
}

@media (max-width: 575px) {
    .section-pad {
        padding: 60px 0;
    }
    .hero-section h1 {
        font-size: 48px;
    }
    .hero-section h2 {
        font-size: 30px;
    }
    .portfolio-media img {
        height: 240px;
    }
}

.footer-cta {
    position: relative;
    padding: 90px 0;
    color: #fff;
    background: #0b2b2f url("../images/footer-bg.jpg") center/cover no-repeat;
    overflow: hidden;
}
.footer-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(3, 32, 35, 0.72);
}
.footer-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}
.footer-cta-kicker {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}
.footer-cta h2 {
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 22px;
}
.footer-cta-btn {
    background: #c9ff57;
    color: #042023;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 0;
    letter-spacing: 0.04em;
}
.footer-cta-btn:hover {
    background: #b8f047;
    color: #042023;
}

.footer-info {
    background: #052b2f;
    color: #fff;
    padding: 30px 0 26px;
}
.footer-info-grid {
    margin-bottom: 18px;
}
.footer-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(8, 52, 56, 0.85);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    height: 90px;
}
.footer-info-card:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}
.footer-info-card i {
    font-size: 28px;
    color: #fff;
}
.footer-info-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}
.footer-info-value {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.footer-info-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 10px 0 16px;
}
.footer-info-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}
.footer-info-links {
    display: flex;
    gap: 24px;
}
.footer-info-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
}
.footer-info-links a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .footer-info-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.blog-section {
    padding: 80px 0;
    background: #f7faf9;
}
.blog-intro {
    padding-right: 20px;
}
.blog-kicker {
    font-size: 13px;
    letter-spacing: 0.22em;
    font-weight: 700;
    color: #51636a;
    margin-bottom: 14px;
}
.blog-intro h2 {
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 800;
    color: #072e33;
    margin-bottom: 16px;
}
.blog-intro p {
    color: #4e5f66;
    line-height: 1.7;
    margin-bottom: 24px;
}
.blog-cta {
    background: #c9ff57;
    color: #042023;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 0;
    letter-spacing: 0.04em;
}
.blog-cta:hover {
    background: #b8f047;
    color: #042023;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.blog-tile {
    display: grid;
    gap: 12px;
    background-color: #fcfff5;
    height: 150px;
    border: none;
    border: 1px solid #c9ff57;
    padding: 18px;
}
.blog-tile:hover {
    background-color: #f6ffe1;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}
.blog-tile img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}
.blog-meta {
    color: #6c7c82;
    font-size: 14px;
    font-weight: 600;
}
.blog-tile h3 {
    font-size: 18px;
    font-weight: 800;
    color: #072e33;
    margin: 0;
}
.blog-link {
    color: #072e33;
    font-weight: 700;
    text-decoration: none;
}
.blog-link:hover {
    color: #80b020;
}

@media (max-width: 991px) {
    .blog-section {
        padding: 64px 0;
    }
    .blog-intro {
        padding-right: 0;
    }
    .blog-tile img {
        height: 200px;
    }
}
.tag {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    font-weight: 800;
    font-size: 11px;
}

.testi-card {
    padding: 26px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}
.avatar {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-box {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}
.footer-widget {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}
.footer-link {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-weight: 700;
}
.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.form-dark {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
}
.form-dark::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.mini-contact {
    display: flex;
    gap: 12px;
    padding: 14px;
    border-radius: var(--radius-lg);
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}
.mini-contact i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
}

.social {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
.social:hover {
    color: #fff;
    border-color: rgba(183, 255, 0, 0.35);
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid #4f6f00;
    background: #b7ff00;
    color: #042023;
    display: none;
    place-items: center;
    z-index: 999;
}
.back-to-top.show {
    display: grid;
}

@media (max-width: 991.98px) {
    .section-pad {
        padding: 72px 0;
    }
    .hero-section {
        padding: 96px 0 70px;
    }
    .hero-content {
        padding-top: 0;
    }
    .hero-section .lead {
        margin-top: 18px;
    }
    .hero-trusted {
        margin-top: 28px;
        padding-left: 0;
    }
    .about-lower {
        grid-template-columns: 1fr;
    }
    .about-lower-img img {
        height: 220px;
    }
    .services-panel {
        grid-template-columns: 1fr;
    }
    .services-panel-media img {
        height: 220px;
    }
    .process-card-head {
        grid-template-columns: 1fr;
    }
    .process-card-media img {
        height: 160px;
    }
    .process-card-wide .process-num {
        position: static;
        margin-top: 14px;
    }
}

* {
    border-radius: 0 !important;
}

/* SweetAlert2 theme */
.swal2-popup {
    border-radius: var(--radius-lg) !important;
    background: #fcfff5;
    color: #042023;
    box-shadow: var(--shadow);
    border: 1px solid rgba(183, 255, 0, 0.35);
}
.swal2-title {
    color: #042023;
    font-weight: 800;
}
.swal2-html-container,
.swal2-content {
    color: #072e33;
}
.swal2-styled.swal2-confirm {
    background: var(--accent) !important;
    color: #0a0d14 !important;
    border: 1px solid rgba(10, 13, 20, 0.1) !important;
    border-radius: 0 !important;
    box-shadow: 0 10px 24px rgba(183, 255, 0, 0.25);
    padding: 12px 26px !important;
    font-weight: 700;
}
.swal2-styled.swal2-confirm:focus {
    box-shadow: 0 0 0 3px rgba(183, 255, 0, 0.35);
}
.swal2-icon.swal2-error,
.swal2-icon.swal2-success {
    border-color: #0a0d14;
    color: #0a0d14;
}
