:root {
    --primary: #0d5bd8;
    --primary-dark: #092f75;
    --secondary: #13c4d9;
    --accent: #ffbe5c;
    --light: #f4f8fd;
    --surface: #ffffff;
    --surface-soft: #f7fafe;
    --dark: #0f172a;
    --muted: #5f6b85;
    --line: rgba(15, 23, 42, 0.1);
    --line-strong: rgba(13, 91, 216, 0.16);
    --shadow-xs: 0 12px 30px -24px rgba(15, 23, 42, 0.4);
    --shadow-sm: 0 24px 60px -34px rgba(15, 23, 42, 0.3);
    --shadow-lg: 0 34px 80px -40px rgba(8, 29, 75, 0.48);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 30px;
    --transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--dark);
    background:
        radial-gradient(circle at top left, rgba(19, 196, 217, 0.08), transparent 32%),
        radial-gradient(circle at 90% 8%, rgba(13, 91, 216, 0.08), transparent 28%),
        linear-gradient(180deg, #edf4fb 0%, #f7fbff 28%, #f3f7fc 100%);
    line-height: 1.7;
    overflow-x: hidden;
}

.site-main {
    position: relative;
    overflow: clip;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

::selection {
    background: rgba(13, 91, 216, 0.18);
}

h1,
h2,
h3,
h4,
h5,
h6,
.fw-bold {
    font-family: "Sora", sans-serif;
    font-weight: 700 !important;
    color: var(--dark);
    letter-spacing: -0.03em;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}

p,
.text-muted {
    color: var(--muted) !important;
}

.text-warning {
    color: var(--accent) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.68) !important;
}

.text-light {
    color: rgba(255, 255, 255, 0.76) !important;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-out, visibility 0s linear 0.4s;
    z-index: 99999;
}

#spinner.show {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease-out, visibility 0s linear 0s;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 24px;
    bottom: 24px;
    z-index: 1025;
    width: 54px;
    height: 54px;
    border-radius: 18px !important;
    border: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
    box-shadow: 0 20px 40px -22px rgba(13, 91, 216, 0.7);
}

.btn {
    font-weight: 700;
    border-radius: 999px;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.btn-square {
    width: 42px;
    height: 42px;
}

.btn-sm-square {
    width: 36px;
    height: 36px;
}

.btn-lg-square {
    width: 54px;
    height: 54px;
}

.btn-primary,
.btn-light,
.btn-warning,
.btn-outline-primary {
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
}

.btn-primary {
    border-color: transparent;
    background: linear-gradient(135deg, var(--primary) 0%, #167be7 60%, var(--secondary) 100%);
    box-shadow: 0 16px 36px -22px rgba(13, 91, 216, 0.65);
}

.btn-primary:hover {
    border-color: transparent;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 58%, #11a8c9 100%);
}

.btn-light {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--primary);
    background: rgba(255, 255, 255, 0.92);
}

.btn-light:hover {
    color: var(--primary-dark);
    background: #ffffff;
}

.btn-outline-primary {
    border: 1px solid rgba(13, 91, 216, 0.2);
    color: var(--primary);
    background: rgba(255, 255, 255, 0.85);
}

.btn-outline-primary:hover {
    color: #ffffff;
    border-color: var(--primary);
    background: var(--primary);
}

.section-block {
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem !important;
    border: 1px solid rgba(13, 91, 216, 0.14) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    box-shadow: var(--shadow-xs);
    color: var(--primary) !important;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    pointer-events: none;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    box-shadow: none;
}

.sticky-top {
    top: 0;
    z-index: 1035;
}

.site-header {
    padding-top: 18px;
    transition: var(--transition);
}

.site-navbar {
    min-height: 84px;
    padding: 0.75rem 1.2rem;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(180deg, rgba(7, 21, 48, 0.42), rgba(7, 21, 48, 0.22));
    box-shadow: 0 24px 48px -32px rgba(4, 18, 45, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: var(--transition);
}

.site-header.is-sticky {
    padding-top: 10px;
}

.site-header.is-sticky .site-navbar {
    min-height: 76px;
    background: linear-gradient(180deg, rgba(5, 14, 30, 0.9), rgba(10, 28, 62, 0.78));
    box-shadow: 0 28px 60px -32px rgba(3, 12, 30, 0.68);
}

.site-brand-logo {
    width: 170px;
    transition: var(--transition);
}

.site-header.is-sticky .site-brand-logo {
    transform: scale(0.97);
}

.site-nav-links {
    gap: 0.35rem;
}

.navbar .navbar-nav .nav-link {
    position: relative;
    margin-right: 0;
    padding: 0.8rem 1rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.navbar .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    opacity: 0;
    transform: scale(0.88);
    transition: var(--transition);
    z-index: -1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #ffffff;
}

.navbar .navbar-nav .nav-link:hover::before,
.navbar .navbar-nav .nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link-cta {
    margin-left: 0.35rem;
    border-radius: 999px;
    color: var(--primary) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.96));
    box-shadow: 0 18px 35px -24px rgba(255, 255, 255, 0.7);
}

.nav-link-cta::before {
    display: none;
}

.nav-link-cta:hover,
.nav-link-cta.active {
    color: var(--primary-dark) !important;
}

.navbar .dropdown-toggle::after {
    border: 0;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 0.45rem;
}

.nav-dropdown {
    min-width: 270px;
    padding: 0.6rem;
    border: 1px solid rgba(13, 91, 216, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px);
}

.nav-dropdown .dropdown-item {
    border-radius: 14px;
    padding: 0.7rem 0.9rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dark);
}

.nav-dropdown .dropdown-item:hover,
.nav-dropdown .dropdown-item.active {
    background: rgba(13, 91, 216, 0.08);
    color: var(--primary);
}

.site-navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 0.55rem 0.7rem;
    box-shadow: none !important;
}

.hero-shell {
    position: relative;
    margin-top: -110px;
    padding: 145px 0 60px;
    background: linear-gradient(160deg, #0a1f4e 0%, #0d4ab5 100%);
    border-bottom: 3px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.hero-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-container,
.hero-grid {
    position: relative;
    z-index: 1;
}

.hero-grid {
    --bs-gutter-y: 1.5rem;
}

.hero-copy {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.85rem;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #67f0a9;
    flex-shrink: 0;
}

.hero-slogan {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    overflow: hidden;
    padding: 0.24rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.76rem, 1.25vw, 0.9rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px -22px rgba(255, 255, 255, 0.8);
    animation:
        hero-slogan-focus 3.8s ease-in-out infinite,
        hero-slogan-float 5.5s ease-in-out infinite;
}

.hero-slogan::before {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: #d9f99d;
    box-shadow: 0 0 0 0 rgba(217, 249, 157, 0.5);
    animation: hero-slogan-pulse 3.8s ease-in-out infinite;
}

.hero-slogan::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 42%, transparent 68%);
    transform: translateX(-130%);
    pointer-events: none;
    animation: hero-slogan-sweep 3.8s ease-in-out infinite;
}

.hero-slogan span {
    position: relative;
    z-index: 1;
    animation: hero-slogan-word 3.8s ease-in-out infinite;
}

.hero-slogan span:nth-of-type(2) {
    animation-delay: 0.22s;
}

.hero-slogan span:nth-of-type(3) {
    animation-delay: 0.44s;
}

@keyframes hero-slogan-focus {
    0%,
    100% {
        color: rgba(255, 255, 255, 0.78);
        border-color: rgba(255, 255, 255, 0.32);
        background: rgba(255, 255, 255, 0.12);
    }

    50% {
        color: #ffffff;
        border-color: rgba(217, 249, 157, 0.62);
        background: rgba(255, 255, 255, 0.2);
    }
}

@keyframes hero-slogan-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

@keyframes hero-slogan-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(217, 249, 157, 0);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(217, 249, 157, 0.18);
    }
}

@keyframes hero-slogan-sweep {
    0%,
    35% {
        transform: translateX(-130%);
    }

    65%,
    100% {
        transform: translateX(130%);
    }
}

@keyframes hero-slogan-word {
    0%,
    100% {
        color: rgba(255, 255, 255, 0.78);
        text-shadow: none;
    }

    42%,
    58% {
        color: #fef9c3;
        text-shadow: 0 0 10px rgba(254, 249, 195, 0.34);
    }
}

.hero-title {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.1;
    color: #ffffff;
    font-weight: 700;
}

.hero-subtitle {
    max-width: 560px;
    font-size: 0.95rem;
    opacity: 0.88;
}

.btn-hero-cta,
.btn-newsletter-cta {
    padding: 0.65rem 1.4rem !important;
    border-radius: 4px !important;
}

.btn-hero-cta {
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    color: #0d4ab5 !important;
    background: #ffffff !important;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.btn-hero-cta:hover {
    color: #ffffff !important;
    background: transparent !important;
    border-color: #ffffff !important;
}

.hero-breadcrumb-wrap .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0;
    background: none;
    border: none;
}

.hero-breadcrumb-wrap .breadcrumb-item,
.hero-breadcrumb-wrap .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.88rem;
    font-weight: 500;
}

.hero-breadcrumb-wrap .breadcrumb-item a:hover {
    color: #ffffff !important;
}

.hero-breadcrumb-wrap .breadcrumb-item.active {
    color: #ffffff !important;
}

.hero-breadcrumb-wrap .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.hero-media-column {
    display: flex;
    justify-content: center;
}

.hero-media-home {
    justify-content: flex-end;
}

.hero-media-page {
    justify-content: center;
}

.hero-media-frame {
    width: min(100%, 420px);
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 48px rgba(2, 10, 28, 0.55);
}

.hero-image {
    width: 100%;
    max-height: 340px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(5, 20, 53, 0.35));
}

.hero-media-page .hero-image {
    max-height: 260px;
}

.about-section,
.services-section,
.faq-section,
.testimonial-section {
    position: relative;
}

.about-copy-panel,
.service-intro-panel,
.testimonial-intro-panel,
.faq-shell {
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 254, 0.92));
    box-shadow: var(--shadow-sm);
}

.about-copy-panel,
.service-intro-panel,
.testimonial-intro-panel {
    padding: clamp(1.6rem, 4vw, 2.3rem);
}

.about-visual-card,
.feature-visual-card {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 253, 0.75));
    box-shadow: var(--shadow-lg);
}

.about-img img,
.feature-image,
.main-content img {
    width: 100%;
    border-radius: 24px;
    padding: 5px 15px;
}

.about-check-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 66px;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(13, 91, 216, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-xs);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
}

.about-check-item:hover {
    transform: translateY(-3px);
    border-color: rgba(13, 91, 216, 0.18);
}

.about-check-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
}

.services-section {
    background:
        radial-gradient(circle at 100% 0, rgba(19, 196, 217, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.88));
}

.service-intro-panel {
    position: sticky;
    top: 118px;
}

.service-card {
    position: relative;
    padding: 2rem 1.45rem;
    border: 1px solid rgba(13, 91, 216, 0.08);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.94));
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0d5bd8 0%, #1478e8 54%, #13c4d9 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

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

.service-card .service-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 1.3rem;
    border-radius: 22px;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(13, 91, 216, 0.12), rgba(19, 196, 217, 0.14));
}

.service-card:hover .service-icon {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.service-card h5 {
    font-size: 1rem;
    line-height: 1.55;
}

.service-card:hover h5 {
    color: #ffffff;
}

.service-card a.btn {
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    background: rgba(13, 91, 216, 0.08);
    color: var(--primary);
}

.service-card:hover a.btn {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.feature-section {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 26%),
        linear-gradient(135deg, #081f4d 0%, #0d5bd8 52%, #13c4d9 100%);
    overflow: hidden;
}

.feature-section::before {
    content: "";
    position: absolute;
    width: 32rem;
    height: 32rem;
    top: -16rem;
    right: -11rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 72%);
}

.feature-content-panel {
    padding: clamp(1.8rem, 4vw, 2.6rem);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(7, 26, 61, 0.28), rgba(9, 31, 70, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 32px 70px -38px rgba(1, 8, 22, 0.8);
    backdrop-filter: blur(18px);
}

.feature-content-panel h2,
.feature-content-panel p {
    color: #ffffff !important;
}

.feature-check-row {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 0.85rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.feature-check-row:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.12);
}

.feature-check-circle {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 1.2rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feature-stat-box:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
}

.feature-visual-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 42px 80px -44px rgba(2, 10, 28, 0.85);
}

.faq-shell {
    padding: clamp(1.5rem, 4vw, 2.6rem);
}

.faq-intro {
    margin-bottom: 2rem;
}

.faq-column {
    display: grid;
    gap: 1rem;
}

.accordion .accordion-item {
    border: 0;
    margin-bottom: 0;
    border-radius: 20px !important;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-xs);
}

.accordion .accordion-button {
    background: #ffffff;
    border-radius: 20px !important;
    padding: 1.2rem 1.25rem;
    font-size: 0.97rem;
    font-weight: 700 !important;
    color: var(--dark);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
}

.accordion .accordion-button:focus {
    box-shadow: none;
}

.accordion .accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion .accordion-body {
    padding: 0 1.25rem 1.25rem !important;
    background: #ffffff;
    color: var(--muted);
}

.testimonial-carousel-shell {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 254, 0.92));
    box-shadow: var(--shadow-lg);
}

.testimonial-carousel {
    position: relative;
}

.testimonial-item.enhanced {
    height: 100%;
    margin: 0;
    padding: 2rem;
    border-radius: 26px;
    border: 1px solid rgba(13, 91, 216, 0.08);
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    box-shadow: var(--shadow-xs);
}

.testimonial-item.enhanced:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.testimonial-quote-mark {
    opacity: 0.26;
}

.testimonial-item.enhanced .fs-4 {
    font-size: 1rem !important;
    line-height: 1.8;
    color: var(--muted);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #f59e0b;
    font-size: 0.82rem;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: -72px;
    right: 6px;
    left: auto;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 0.65rem;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    width: 44px;
    height: 44px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(13, 91, 216, 0.12);
    border-radius: 14px;
    background: #ffffff;
    color: var(--primary);
    transition: var(--transition);
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.testimonial-carousel .owl-dots {
    margin-top: 1.35rem;
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.testimonial-carousel .owl-dot {
    width: 12px;
    height: 12px;
    margin-right: 0;
    border-radius: 999px;
    border: 0;
    background: rgba(13, 91, 216, 0.2);
    transition: var(--transition);
}

.testimonial-carousel .owl-dot.active {
    width: 34px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.newsletter-section {
    position: relative;
}

.newsletter-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(1.6rem, 4vw, 2.6rem);
    border-radius: 32px;
    background:
        radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.12), transparent 24%),
        linear-gradient(135deg, #081f4d 0%, #0d5bd8 52%, #13c4d9 100%);
    box-shadow: var(--shadow-lg);
}

.newsletter-panel::before,
.newsletter-panel::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-panel::before {
    width: 22rem;
    height: 22rem;
    top: -12rem;
    right: -8rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 72%);
}

.newsletter-panel::after {
    width: 16rem;
    height: 16rem;
    bottom: -10rem;
    left: -4rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 74%);
}

.newsletter-copy,
.newsletter-action {
    position: relative;
    z-index: 1;
}

.newsletter-copy h3 {
    color: #ffffff;
}

.newsletter-copy p {
    color: rgba(255, 255, 255, 0.78) !important;
}

.newsletter-action {
    text-align: center;
}

.btn-newsletter-cta {
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 42px -28px rgba(2, 10, 28, 0.45);
}

.btn-newsletter-cta:hover {
    color: var(--primary) !important;
    background: #ffffff !important;
}

.modal-content {
    border: 1px solid rgba(13, 91, 216, 0.08);
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    box-shadow: 0 42px 90px -42px rgba(8, 29, 75, 0.5);
    overflow: hidden;
}

.modal-header {
    padding: 1.2rem 1.5rem;
    border-bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.modal-header .modal-title {
    color: #ffffff;
}

.modal-header .btn-close {
    filter: invert(1) brightness(200%);
    opacity: 1;
}

.modal-body {
    padding: 1.5rem;
}

.inquiry-form-shell {
    border-radius: 24px !important;
    border-color: rgba(13, 91, 216, 0.12) !important;
    background: #ffffff;
    box-shadow: none !important;
}

.form-group label {
    margin-bottom: 0.45rem;
    font-weight: 700;
    color: var(--dark);
}

.form-control {
    min-height: 52px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    color: var(--dark);
}

.form-control:focus {
    border-color: rgba(13, 91, 216, 0.4);
    box-shadow: 0 0 0 0.22rem rgba(13, 91, 216, 0.12);
}

textarea.form-control {
    min-height: 156px;
    resize: vertical;
}

.modal-footer {
    padding: 1.15rem 1.5rem 1.5rem;
    border-top: 0;
}

.inquiry-dismiss-btn,
.inquiry-submit-btn {
    min-width: 120px;
}

.footer {
    position: relative;
    margin-top: 2rem;
    background:
        radial-gradient(circle at 0 0, rgba(19, 196, 217, 0.18), transparent 26%),
        linear-gradient(180deg, #061326 0%, #040c18 100%);
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%);
    pointer-events: none;
}

.footer-panel {
    position: relative;
    height: 100%;
    padding: 1.55rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.footer-brand-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.footer-contact-item,
.footer p,
.footer a,
.footer .copyright,
.footer .copyright a {
    color: rgba(255, 255, 255, 0.68) !important;
}

.footer .btn.btn-social {
    width: 44px;
    height: 44px;
    margin-right: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    background: #ffffff;
}

.footer .btn.btn-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
    padding: 0;
    text-align: left;
    font-weight: 600;
}

.footer .btn.btn-link::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.footer .btn.btn-link:hover {
    color: #ffffff !important;
    transform: translateX(4px);
    box-shadow: none;
}

.site-footer-bar {
    padding: 1.45rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .footer-menu a {
    margin-right: 1rem;
    padding-right: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.main-content p {
    text-align: justify;
}

.main-content img {
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.82);
}

.main-content h4 {
    margin: 1.75rem 0 0.75rem;
    font-size: 1.18rem;
}

.main-content ul,
.main-content ol {
    color: var(--muted);
    padding-left: 1.25rem;
}

.case-item img {
    transition: var(--transition);
}

.case-item:hover img {
    transform: scale(1.06);
}

.case-overlay {
    position: absolute;
    inset: 0;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.88));
}

.team-item {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.team-item:hover {
    transform: translateY(-6px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-sm);
}

.feature-icon,
.pricing-card,
.stats-item,
.faq-item,
.testimonial-card {
    transition: var(--transition);
}


@media (max-width: 991.98px) {
    .site-header {
        padding-top: 12px;
    }

    .site-navbar {
        padding: 0.85rem 1rem;
    }

    .site-nav-links {
        gap: 0.25rem;
        padding-top: 1rem;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0.85rem 0.95rem;
    }

    .nav-link-cta {
        margin-left: 0;
        margin-top: 0.35rem;
        text-align: center;
    }

    .nav-dropdown {
        margin-top: 0.35rem !important;
        box-shadow: none;
        border-radius: 18px;
    }

    .service-intro-panel {
        position: static;
    }

    .hero-shell {
        margin-top: -102px;
        padding: 136px 0 52px;
    }

    .hero-copy {
        margin: 0 auto;
    }

    .hero-media-home,
    .hero-media-page {
        justify-content: center;
    }

    .hero-media-frame {
        margin: 0 auto;
        width: min(100%, 380px);
    }

    .hero-title {
        font-size: clamp(1.9rem, 5vw, 2.8rem);
    }

    .feature-content-panel,
    .about-copy-panel,
    .service-intro-panel,
    .testimonial-intro-panel,
    .faq-shell,
    .newsletter-panel {
        padding: 1.5rem;
    }

    .testimonial-carousel .owl-nav {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-shell {
        padding: 128px 0 48px;
    }

    .hero-badge,
    .section-badge {
        font-size: 0.68rem;
    }

    .hero-breadcrumb-wrap .breadcrumb {
        font-size: 0.82rem;
    }

    .hero-title {
        font-size: clamp(1.7rem, 7.5vw, 2.4rem);
    }

    .hero-media-frame {
        width: min(100%, 300px);
        padding: 0.6rem;
        border-radius: 6px;
    }

    .hero-image,
    .hero-media-page .hero-image {
        max-height: 220px;
    }

    .about-check-item {
        min-height: auto;
    }

    .testimonial-item.enhanced {
        padding: 1.5rem;
    }

    .footer .footer-menu a {
        margin-right: 0.6rem;
        padding-right: 0.6rem;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* ===== Digital Product Section ===== */
.digital-product-section {
    background-color: #f8f9fa;
}

.digital-product-card {
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.digital-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
}

.digital-product-icon {
    height: 140px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8edff 100%);
    transition: background 0.3s ease;
}

.digital-product-card:hover .digital-product-icon {
    background: linear-gradient(135deg, #e0e8ff 0%, #d0dcff 100%);
}
