/* ===== Base Styles & Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #0066FF; /* Blue from logo (SEVEN) */
    --secondary-color: #00CC88; /* Green/Cyan from logo (CEPT) */
    --dark-bg: #0f1419; /* Dark background from logo */
    --text-color: #333333;
    --bg-color: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background: var(--bg-color);
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #0f1724;
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
    background: #0f1724;
}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 999px;
}

body::-webkit-scrollbar-thumb:hover,
html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #3385ff, #33dca0);
}

.navbar.bg-dark {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f2e 100%) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Navigation Links */
.nav-link-custom {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.3s ease;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    width: 100%;
}

.nav-link-custom:hover {
    color: var(--secondary-color) !important;
}

.nav-link-custom.active {
    color: var(--primary-color) !important;
}

/* Contact Button */
.btn-nav-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-nav-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
    color: #fff !important;
}

/* Mobile Toggle Button */
.navbar-toggler {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: none;
}

.navbar-toggler i {
    color: #fff;
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar-offcanvas {
        background: linear-gradient(180deg, rgba(15, 20, 33, 0.98) 0%, rgba(15, 31, 48, 0.98) 100%);
        backdrop-filter: blur(14px);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        width: min(88vw, 340px);
        padding: 0.5rem 0.25rem 1rem;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.32);
    }

    .navbar-offcanvas .offcanvas-header {
        padding: 1rem 1rem 0.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .navbar-offcanvas-brand {
        display: inline-flex;
        align-items: center;
        min-width: 0;
    }

    .navbar-offcanvas-logo {
        height: 34px;
        width: auto;
    }

    .navbar-offcanvas .offcanvas-body {
        padding-top: 0.25rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .navbar-offcanvas .navbar-nav {
        gap: 0.75rem !important;
        align-items: stretch !important;
    }

    .navbar-offcanvas .nav-item {
        border-bottom: none;
        padding-bottom: 0;
    }

    .navbar-offcanvas .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-offcanvas .nav-link-custom {
        padding: 0.4rem 0;
        font-size: 1rem;
    }

    .navbar-offcanvas .btn-nav-contact {
        width: 100%;
        text-align: center;
        margin-top: 0.25rem;
    }

    .navbar-offcanvas .btn-close {
        opacity: 1;
        box-shadow: none;
    }
}

/* ===== Company Section ===== */
.placeholder-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    min-height: 350px;
    border-radius: 1rem;
}

/* ===== Cards Hover Effects ===== */
.product-card, .service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover, .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

/* ===== Form Styles ===== */
.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Hero-first homepage styling */
.hero-section {
    min-height: 540px;
    height: 540px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(0, 204, 136, 0.22), transparent 28%),
        radial-gradient(circle at bottom right, rgba(0, 102, 255, 0.25), transparent 35%),
        linear-gradient(135deg, #09111d 0%, #0f1724 48%, #111b2b 100%);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 1rem 0;
}

.hero-shell {
    z-index: 2;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.85;
}

.hero-bg-orb-a {
    width: 320px;
    height: 320px;
    background: rgba(0, 204, 136, 0.18);
    top: -80px;
    left: -100px;
    animation: floatOrb 9s ease-in-out infinite;
}

.hero-bg-orb-b {
    width: 420px;
    height: 420px;
    background: rgba(0, 102, 255, 0.18);
    right: -120px;
    bottom: -160px;
    animation: floatOrb 11s ease-in-out infinite reverse;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    backdrop-filter: blur(8px);
}

.hero-kicker::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.05);
}

.hero-title {
    font-size: clamp(2.15rem, 3.35vw, 3.25rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
    font-weight: 800;
    margin-bottom: 0.9rem;
    max-width: 14ch;
    text-wrap: balance;
}

.hero-subtitle {
    max-width: 30rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.hero-copy .hero-points {
    margin-top: 0.85rem !important;
}

.hero-actions .btn {
    min-width: 162px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.hero-actions-mobile {
    display: none !important;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 0.9rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.88rem;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-points i {
    color: var(--secondary-color);
}

.hero-slider-wrap {
    position: relative;
    padding: 0.35rem;
}

.heroSwiper {
    overflow: hidden;
}

.heroSwiper .swiper-slide {
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.heroSwiper .swiper-slide-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-glow {
    position: absolute;
    inset: 24% 12% 16% 12%;
    background: radial-gradient(circle, rgba(0, 204, 136, 0.16), transparent 58%);
    filter: blur(20px);
}

.hero-slide-card {
    position: relative;
    height: 100%;
    min-height: 0;
    border-radius: 28px;
    padding: 0.75rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.06)),
        linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-visual {
    position: relative;
    margin-top: 0;
    min-height: 0;
    height: 100%;
}

.hero-visual-image-wrap {
    height: 100%;
    overflow: hidden;
    flex: 1 1 auto;
    padding: 0.35rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 28px;
}

.hero-visual-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.visual-frame {
    position: absolute;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.visual-frame-main {
    inset: 0 auto auto 0;
    width: 100%;
    min-height: 100%;
    transform: rotate(-4deg);
}

.visual-topbar {
    height: 12px;
    margin: 1rem 1rem 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
}

.visual-content {
    padding: 1.1rem;
}

.visual-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.visual-logo-img {
    width: auto;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.22));
}

.visual-logo-img.small {
    height: 30px;
}

.visual-mini-chips {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.visual-mini-chips span,
.visual-kpi,
.visual-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.42rem 0.7rem;
    color: #eef3ff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr;
    gap: 0.7rem;
}

.visual-block {
    min-height: 68px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(0, 102, 255, 0.5), rgba(0, 204, 136, 0.2));
    animation: pulseFloat 5s ease-in-out infinite;
}

.visual-block-large {
    grid-row: span 2;
    min-height: 146px;
}

.hero-visual-app,
.hero-visual-analytics {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 0.9rem;
    min-height: 280px;
    align-items: stretch;
}

.visual-phone,
.visual-dashboard,
.visual-brand-panel,
.visual-graph-panel {
    position: relative;
    min-height: 100%;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.visual-phone {
    padding: 1rem;
}

.visual-phone-head {
    height: 12px;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.08));
}

.visual-phone-body {
    height: calc(100% - 24px);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.42), rgba(0, 204, 136, 0.18));
}

.visual-dashboard {
    padding: 1rem;
}

.visual-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
    margin: 1rem 0;
}

.visual-stats-row span {
    height: 74px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.45), rgba(0, 204, 136, 0.18));
}

.visual-chart {
    height: 124px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at 30% 35%, rgba(0, 204, 136, 0.32), transparent 34%),
        radial-gradient(circle at 68% 55%, rgba(0, 102, 255, 0.42), transparent 28%);
}

.visual-pill {
    color: #fff;
}

.visual-note {
    margin-top: 0.9rem;
    padding: 1rem;
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.05);
    line-height: 1.5;
    font-weight: 500;
}

.visual-graph-panel {
    padding: 1rem;
}

.visual-lines {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.visual-lines span {
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.72), rgba(0, 204, 136, 0.26));
}

.visual-lines span:nth-child(2) {
    width: 80%;
}

.visual-lines span:nth-child(3) {
    width: 58%;
}

.visual-graph {
    height: calc(100% - 58px);
    min-height: 150px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at 26% 35%, rgba(0, 204, 136, 0.38), transparent 32%),
        radial-gradient(circle at 70% 62%, rgba(0, 102, 255, 0.42), transparent 28%);
}

.swiper-pagination {
    display: none;
}

@keyframes floatingChip {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(18px) scale(1.05); }
}

@keyframes pulseFloat {
    0%, 100% { transform: translateY(0); opacity: 0.8; }
    50% { transform: translateY(-8px); opacity: 1; }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        height: auto;
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
    }

    .hero-title {
        max-width: none;
    }

    .hero-actions-desktop {
        display: none !important;
    }

    .hero-actions-mobile {
        display: flex !important;
        margin-top: 0.25rem;
    }

    .hero-slide-card {
        height: auto;
        min-height: 380px;
        padding: 0.7rem;
    }

    .mockup-grid,
    .hero-visual-app,
    .hero-visual-analytics {
        grid-template-columns: 1fr;
    }

    .hero-visual-image-wrap {
        height: 250px;
    }

    .visual-frame-main {
        transform: rotate(0deg);
    }

    .visual-block-large,
    .visual-block {
        min-height: 70px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 9vw, 2.9rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions .btn {
        min-width: 100%;
    }

    .hero-points {
        gap: 0.8rem;
    }

    .hero-slide-card {
        padding: 0.65rem;
        min-height: 350px;
    }

    .hero-visual-image-wrap {
        height: 220px;
    }

    .visual-brand-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .visual-grid,
    .visual-stats-row {
        grid-template-columns: 1fr;
    }

    .visual-graph {
        min-height: 120px;
    }
}

/* ===== Homepage Sections ===== */
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.section-title {
    color: #0f1724;
    font-size: clamp(2rem, 3.2vw, 3.1rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 1rem;
}

.section-text {
    color: #5a6474;
    font-size: 1rem;
    line-height: 1.75;
}

.section-heading {
    max-width: 720px;
}

.bg-soft {
    background: #f5f8fc;
}

.section-padding {
    padding-top: 96px;
    padding-bottom: 96px;
}

.bg-dark-section {
    background:
        radial-gradient(circle at top left, rgba(0, 204, 136, 0.16), transparent 32%),
        linear-gradient(135deg, #0f1724 0%, #111b2b 100%);
}

.about-section,
.products-section,
.solutions-section {
    background: #fff;
}

.about-points {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.about-points span {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: #172033;
    font-weight: 700;
}

.about-points i {
    color: var(--secondary-color);
}

.about-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.about-panel-card,
.home-card,
.product-showcase-card,
.success-card,
.insight-card {
    border-radius: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-panel-card {
    min-height: 300px;
    padding: 1.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
}

.about-panel-card::before {
    content: '';
    position: absolute;
    inset: -30% -20% auto auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.about-panel-card.primary {
    background: linear-gradient(145deg, var(--primary-color), #153c88);
}

.about-panel-card.secondary {
    background: linear-gradient(145deg, #0f1724, var(--secondary-color));
    margin-top: 2rem;
}

.about-panel-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-panel-card h3,
.home-card h3,
.product-showcase-card h3,
.success-card h3,
.insight-card h3,
.site-footer h3 {
    font-size: 1.12rem;
    font-weight: 800;
}

.home-card {
    height: 100%;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e7edf6;
    box-shadow: 0 12px 34px rgba(15, 23, 36, 0.07);
}

.card-visual-img,
.product-visual-img {
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.card-visual-img {
    height: 132px;
    margin-bottom: 1.1rem;
    background: #eef5ff;
}

.product-visual-img {
    height: 150px;
    margin-bottom: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-card:hover,
.product-showcase-card:hover,
.insight-card:hover,
.ai-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(15, 23, 36, 0.12);
}

.service-card-modern i {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #fff;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    font-size: 1.35rem;
}

.home-card p,
.product-showcase-card p,
.success-card p,
.insight-card p,
.site-footer p {
    color: #647084;
    line-height: 1.65;
    margin-bottom: 0;
}

.services-carousel-wrap {
    position: relative;
}

.servicesSwiper {
    overflow: hidden;
    padding-bottom: 3rem;
}

.servicesSwiper .swiper-slide {
    height: auto;
}

.service-slide-card {
    height: 100%;
    padding: 1.15rem 1.2rem 1.3rem;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid rgba(29, 78, 216, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 36, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-slide-card::before {
    content: '';
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.18), rgba(0, 204, 136, 0.14));
}

.service-slide-visual {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.35rem;
    padding: 1rem;
    min-height: 170px;
    border-radius: 24px;
    background: linear-gradient(135deg, #eff7ff 0%, #edfdf8 100%);
}

.service-slide-visual::after {
    content: '';
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(0, 204, 136, 0.16);
    filter: blur(2px);
}

.service-slide-image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(15, 23, 36, 0.12));
    animation: serviceFloat 7s ease-in-out infinite;
}

.service-slide-card h3 {
    margin-bottom: 0.8rem;
    color: #111827;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.service-slide-card p {
    margin-bottom: 1rem;
    color: #6b7280;
    line-height: 1.75;
    font-size: 1.05rem;
}

.service-slide-card ul {
    margin: 0;
    padding-left: 1.15rem;
    color: #334155;
}

.service-slide-card li {
    margin-bottom: 0.55rem;
}

.servicesSwiper .swiper-slide-active .service-slide-card {
    border-color: rgba(0, 102, 255, 0.14);
    box-shadow: 0 14px 32px rgba(15, 23, 36, 0.08);
    transform: translateY(-2px);
}

.services-pagination {
    bottom: 0 !important;
    display: block !important;
}

.services-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #b9c9df;
    opacity: 1;
}

.services-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

@keyframes serviceFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-6px) scale(1.02);
    }
}

.product-showcase-card {
    height: 100%;
    padding: 1.6rem;
    color: #fff;
    background: linear-gradient(145deg, #111b2b, #0f1724);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(15, 23, 36, 0.15);
}

.product-showcase-card span,
.insight-card span {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-showcase-card span {
    color: #dff8ee;
    background: rgba(0, 204, 136, 0.14);
}

.product-showcase-card p {
    color: rgba(255, 255, 255, 0.72);
}

.success-card {
    height: 100%;
    padding: 1.6rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    backdrop-filter: blur(10px);
}

.success-card strong {
    display: block;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 2.4rem;
    line-height: 1;
}

.success-card p {
    color: rgba(255, 255, 255, 0.72);
}

.ai-accelerators-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(0, 102, 255, 0.12), transparent 30%),
        radial-gradient(circle at 88% 70%, rgba(0, 204, 136, 0.14), transparent 32%),
        #f8fbff;
}

.ai-accelerators-section::before {
    content: '';
    position: absolute;
    inset: 56px 5% auto auto;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.18), rgba(0, 204, 136, 0.18));
    filter: blur(4px);
    animation: aiFloat 7s ease-in-out infinite;
}

.ai-accelerators-section .container {
    position: relative;
    z-index: 1;
}

.ai-card {
    height: 100%;
    padding: 1.35rem;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(15, 23, 36, 0.08);
    backdrop-filter: blur(14px);
}

.ai-card::after {
    content: '';
    position: absolute;
    inset: auto 1.35rem 1.35rem auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.12;
}

.ai-card h3 {
    color: #172033;
    font-size: 1.12rem;
    font-weight: 800;
}

.ai-card p {
    color: #647084;
    line-height: 1.65;
    margin-bottom: 0;
}

.ai-flow-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
    padding-top: 88px;
    padding-bottom: 64px;
}

.ai-flow-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(0, 204, 136, 0.12), transparent 28%),
        radial-gradient(circle at 82% 78%, rgba(0, 102, 255, 0.12), transparent 26%);
    opacity: 0.25;
    pointer-events: none;
}

.ai-flow-section::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 16px;
    width: 4px;
    height: 42%;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(0, 204, 136, 0), rgba(0, 204, 136, 0.9) 35%, rgba(0, 102, 255, 0.95) 75%, rgba(0, 102, 255, 0));
    box-shadow:
        0 0 16px rgba(0, 204, 136, 0.45),
        0 0 34px rgba(0, 102, 255, 0.32);
    opacity: 0;
    transform: translateX(-50%) translateY(28px) scaleY(0.15);
    transform-origin: bottom center;
    pointer-events: none;
}

.ai-flow-section .container {
    position: relative;
    z-index: 1;
}

.ai-flow-video-wrap {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.ai-flow-video-frame {
    position: relative;
    overflow: hidden;
    padding: 0.35rem;
    border-radius: 24px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        linear-gradient(160deg, #0c1422 0%, #12345c 100%);
    box-shadow: 0 22px 48px rgba(15, 23, 36, 0.16);
    opacity: 0;
    transform: translateY(22px) scale(0.9);
    transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.25s ease;
}

.ai-flow-video-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 20%, rgba(0, 204, 136, 0.16), transparent 26%),
                radial-gradient(circle at 82% 80%, rgba(0, 102, 255, 0.18), transparent 28%);
    pointer-events: none;
}

.ai-flow-video-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.04) 36%, rgba(255, 255, 255, 0.14) 50%, rgba(255, 255, 255, 0.04) 64%, transparent 100%);
    mix-blend-mode: screen;
    opacity: 0;
    transform: translateY(24px);
    pointer-events: none;
}

.ai-flow-section.is-inview .ai-flow-video-frame {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: aiFlowZoomIn 0.85s ease-out both;
}

.ai-flow-section.is-inview::after {
    opacity: 1;
    animation: aiFlowBeamRise 1.8s ease-out forwards;
}

.ai-flow-section.is-inview .ai-flow-video-frame::after {
    opacity: 1;
    animation: aiFlowSweep 2.4s ease-in-out infinite;
}

.ai-flow-section .ai-flow-heading {
    max-width: 760px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(16px) scale(0.96);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.ai-flow-section.is-inview .ai-flow-heading {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: aiFlowZoomIn 0.8s ease-out both;
}

.video-preview-video {
    display: block;
    width: 100%;
    height: clamp(210px, 26vw, 320px);
    min-height: 210px;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.ai-flow-video-wrap[data-eye-chase] {
    --eye-x: 50%;
    --eye-y: 50%;
}

.ai-flow-video-wrap[data-eye-chase]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--eye-x) var(--eye-y), rgba(0, 204, 136, 0.24), transparent 28%),
                radial-gradient(circle at 18% 18%, rgba(0, 102, 255, 0.22), transparent 22%);
    pointer-events: none;
    transition: background-position 0.08s linear;
}

.flow-node {
    animation: flowPulse 4.8s ease-in-out infinite;
}

.flow-node:nth-child(2) {
    animation-delay: 0.5s;
}

.flow-node:nth-child(3) {
    animation-delay: 1s;
}

@keyframes aiFlowFloat {
    0%, 100% { transform: translateY(0) scale(0.985); }
    50% { transform: translateY(-8px) scale(1); }
}

@keyframes aiFlowZoomIn {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.9);
    }
    60% {
        opacity: 1;
        transform: translateY(-2px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes aiFlowBeamRise {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(34px) scaleY(0.1);
    }
    55% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scaleY(1);
    }
    100% {
        opacity: 0.82;
        transform: translateX(-50%) translateY(-12px) scaleY(1.15);
    }
}

@keyframes aiFlowSweep {
    0%, 100% {
        opacity: 0.16;
        transform: translateY(18px);
    }
    50% {
        opacity: 0.38;
        transform: translateY(-8px);
    }
}

.solutions-section {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.solutions-section .container {
    position: relative;
    z-index: 1;
}

.solution-overview-card {
    height: 100%;
    padding: 2rem;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 26%),
        linear-gradient(145deg, #0f1724 0%, #12345c 100%);
    box-shadow: 0 20px 48px rgba(15, 23, 36, 0.14);
}

.solution-overview-card .section-kicker {
    color: var(--secondary-color);
    background: rgba(0, 204, 136, 0.12);
}

.solution-overview-card .section-title {
    color: #fff;
    margin-bottom: 1rem;
}

.solution-overview-card .section-text {
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 1.35rem;
}

.solution-mini-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.solution-mini-stats div {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.solution-mini-stats strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.6rem;
    line-height: 1;
    color: #fff;
}

.solution-mini-stats span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.solution-grid-modern {
    align-items: stretch;
}

.solution-chip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-height: 100%;
    padding: 1.15rem;
    color: #172033;
    text-decoration: none;
    font-weight: 700;
    border-radius: 22px;
    border: 1px solid #e5edf7;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 23, 36, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.solution-chip:hover {
    color: var(--primary-color);
    transform: translateY(-4px);
    border-color: rgba(0, 102, 255, 0.16);
    box-shadow: 0 18px 44px rgba(15, 23, 36, 0.12);
}

.solution-chip i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #fff;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 10px 24px rgba(0, 102, 255, 0.2);
}

.solution-chip-content {
    min-width: 0;
}

.solution-chip-content span {
    display: inline-flex;
    margin-bottom: 0.45rem;
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.solution-chip-content h3 {
    margin-bottom: 0.35rem;
    color: #172033;
    font-size: 1.06rem;
    font-weight: 800;
    line-height: 1.2;
}

.solution-chip-content p {
    margin-bottom: 0;
    color: #647084;
    line-height: 1.55;
    font-size: 0.96rem;
}

.solution-chip-detailed {
    border-radius: 24px;
    padding: 1.2rem 1.15rem;
}

.solution-chip-detailed:hover {
    box-shadow: 0 18px 42px rgba(15, 23, 36, 0.12);
}

.insight-card {
    height: 100%;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e7edf6;
    box-shadow: 0 12px 34px rgba(15, 23, 36, 0.07);
}

.insight-card span {
    color: var(--primary-color);
    background: rgba(0, 102, 255, 0.08);
}

.cta-section {
    background: #f8fbff;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    padding: 3rem;
    color: #fff;
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 14%, rgba(0, 204, 136, 0.26), transparent 28%),
        linear-gradient(135deg, #0f1724, #12345c 55%, #0f1724);
    box-shadow: 0 24px 60px rgba(15, 23, 36, 0.18);
}

.cta-panel::before {
    content: '';
    position: absolute;
    inset: -70px -70px auto auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.38), rgba(0, 204, 136, 0.32));
}

.cta-panel .row {
    position: relative;
    z-index: 1;
}

.cta-panel .section-kicker {
    color: var(--secondary-color);
    background: rgba(0, 204, 136, 0.12);
}

.cta-panel h2 {
    max-width: 620px;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.08;
}

.cta-panel p {
    max-width: 580px;
    margin-bottom: 1.7rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.cta-visual-img {
    display: block;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.site-footer {
    padding: 4rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.78);
    background: #0f1724;
}

.footer-logo {
    height: 42px;
    width: auto;
    margin-bottom: 1rem;
}

.site-footer h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.site-footer a:not(.btn) {
    display: block;
    margin-bottom: 0.65rem;
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--secondary-color);
}

.site-footer p {
    color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
}

/* ===== ABOUT PAGE ===== */
.page-hero-section {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding-top: 3rem;
    padding-bottom: 3rem;
    color: #fff;
    background:
        radial-gradient(circle at 10% 12%, rgba(0, 204, 136, 0.22), transparent 26%),
        radial-gradient(circle at 88% 18%, rgba(0, 102, 255, 0.24), transparent 28%),
        linear-gradient(135deg, #09111d 0%, #0f1724 50%, #111b2b 100%);
}

.page-hero-section::before,
.page-hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.8;
}

.page-hero-section::before {
    width: 280px;
    height: 280px;
    top: -80px;
    left: -80px;
    background: rgba(0, 204, 136, 0.16);
}

.page-hero-section::after {
    width: 360px;
    height: 360px;
    right: -120px;
    bottom: -160px;
    background: rgba(0, 102, 255, 0.16);
}

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

.page-hero-minimal {
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.breadcrumb-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.breadcrumb-pill i {
    color: var(--secondary-color);
}

.page-hero-minimal .breadcrumb-pill {
    margin-bottom: 0;
}

.page-hero-title {
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
    max-width: 13ch;
}

.page-hero-text {
    max-width: 36rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
    line-height: 1.75;
}

.hero-metrics,
.about-stat-grid,
.tech-group-grid {
    display: grid;
    gap: 1rem;
}

.hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.35rem;
}

.hero-metric,
.about-stat-card,
.tech-card,
.contact-info-card,
.mission-card,
.value-card,
.process-card,
.choose-card {
    border-radius: 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-metric {
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-metric strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.4rem;
    line-height: 1;
}

.hero-metric span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.about-hero-visual {
    position: relative;
    min-height: 520px;
    border-radius: 30px;
    padding: 1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)),
        rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.about-hero-visual::before {
    content: '';
    position: absolute;
    inset: 14% 10% auto 10%;
    height: 240px;
    border-radius: 28px;
    background: radial-gradient(circle at 30% 30%, rgba(0, 204, 136, 0.26), transparent 38%), radial-gradient(circle at 72% 62%, rgba(0, 102, 255, 0.3), transparent 32%);
    filter: blur(4px);
}

.about-hero-visual .about-hero-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.22));
}

.about-float-card {
    position: absolute;
    z-index: 2;
    padding: 0.95rem 1rem;
    min-width: 170px;
    color: #fff;
    border-radius: 18px;
    background: rgba(15, 23, 36, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.about-float-card strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.about-float-card span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.about-float-card.top {
    top: 1.5rem;
    right: 1.2rem;
}

.about-float-card.bottom {
    left: 1.2rem;
    bottom: 1.2rem;
}

.about-story-image {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 18px 44px rgba(15, 23, 36, 0.12);
}

.about-copy-panel {
    padding-left: 1rem;
}

.about-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.25rem;
}

.about-stat-card {
    padding: 1.15rem;
    background: #fff;
    border: 1px solid #e7edf6;
    box-shadow: 0 12px 34px rgba(15, 23, 36, 0.07);
}

.about-stat-card strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #0f1724;
    font-size: 1.6rem;
    line-height: 1;
}

.about-stat-card span {
    color: #647084;
    font-size: 0.95rem;
}

.mission-card,
.value-card,
.process-card,
.tech-card,
.contact-info-card,
.choose-card {
    height: 100%;
    padding: 1.4rem;
    background: #fff;
    border: 1px solid #e7edf6;
    box-shadow: 0 12px 34px rgba(15, 23, 36, 0.07);
}

.mission-card {
    position: relative;
    overflow: hidden;
}

.mission-card::after,
.value-card::after,
.process-card::after,
.tech-card::after,
.contact-info-card::after,
.choose-card::after {
    content: '';
    position: absolute;
    inset: auto 1rem 1rem auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.14), rgba(0, 204, 136, 0.14));
}

.mission-card h3,
.value-card h3,
.process-card h3,
.tech-card h3,
.contact-info-card h3,
.choose-card h3 {
    margin-bottom: 0.8rem;
    color: #0f1724;
    font-size: 1.2rem;
    font-weight: 800;
}

.mission-card p,
.value-card p,
.process-card p,
.tech-card p,
.contact-info-card p,
.choose-card p {
    color: #647084;
    margin-bottom: 0;
}

.value-card .value-icon,
.choose-card .choose-icon,
.process-card .process-number,
.contact-info-card .contact-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    font-size: 1.2rem;
    font-weight: 800;
}

.value-card ul,
.choose-card ul,
.contact-info-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: #334155;
}

.value-card li,
.choose-card li,
.contact-info-card li {
    margin-bottom: 0.5rem;
}

.choose-panel {
    border-radius: 30px;
    padding: 2rem;
    color: #fff;
    background:
        radial-gradient(circle at 10% 18%, rgba(0, 204, 136, 0.2), transparent 26%),
        linear-gradient(145deg, #0f1724 0%, #12345c 100%);
    box-shadow: 0 24px 60px rgba(15, 23, 36, 0.16);
}

.choose-panel .section-kicker {
    color: var(--secondary-color);
}

.choose-panel .section-title {
    color: #fff;
}

.choose-panel .section-text,
.choose-panel p,
.choose-panel li {
    color: rgba(255, 255, 255, 0.76);
}

.choose-badge-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.choose-badge {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.choose-badge strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #fff;
    font-size: 1.1rem;
}

.choose-badge span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.process-card {
    position: relative;
    overflow: hidden;
}

.process-card .process-number {
    margin-bottom: 0.95rem;
}

.process-card h3 {
    margin-bottom: 0.55rem;
}

.process-card p {
    position: relative;
    z-index: 1;
}

.tech-card {
    position: relative;
    overflow: hidden;
}

.tech-card span {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    color: var(--primary-color);
    background: rgba(0, 102, 255, 0.08);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tech-group-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tech-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    color: #172033;
    background: #f8fbff;
    border: 1px solid #e4edf8;
    font-weight: 700;
    text-align: center;
}

.contact-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 12%, rgba(0, 102, 255, 0.12), transparent 28%),
        radial-gradient(circle at 86% 78%, rgba(0, 204, 136, 0.14), transparent 30%),
        #f8fbff;
}

.contact-panel {
    position: relative;
    overflow: hidden;
    padding: 1.35rem 1.5rem;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 10% 14%, rgba(0, 204, 136, 0.22), transparent 26%),
        linear-gradient(135deg, #0f1724, #12345c 55%, #0f1724);
    box-shadow: 0 24px 60px rgba(15, 23, 36, 0.18);
}

.contact-panel .section-kicker {
    color: var(--secondary-color);
}

.contact-panel .section-title,
.contact-panel p,
.contact-panel .contact-info-card p {
    color: #fff;
}

.contact-panel .section-text {
    color: rgba(255, 255, 255, 0.78);
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    color: #fff;
}

.contact-info-card p,
.contact-info-card a {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--secondary-color);
}

.contact-panel .btn-light {
    color: #0f1724;
}

.section-offset-top {
    margin-top: -2rem;
}

body.js-scroll-ready main > section {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(3px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

body.js-scroll-ready main > section.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

body.js-scroll-ready main > section.is-visible .mission-card,
body.js-scroll-ready main > section.is-visible .value-card,
body.js-scroll-ready main > section.is-visible .choose-card,
body.js-scroll-ready main > section.is-visible .process-card,
body.js-scroll-ready main > section.is-visible .tech-card,
body.js-scroll-ready main > section.is-visible .contact-panel {
    animation: sectionPop 0.7s ease both;
}

@keyframes sectionPop {
    0% {
        transform: translateY(14px) scale(0.98);
        opacity: 0.7;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .about-panel {
        grid-template-columns: 1fr;
    }

    .about-panel-card.secondary {
        margin-top: 0;
    }

    .page-hero-section {
        min-height: 180px;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .page-hero-title {
        max-width: none;
    }

    .hero-metrics,
    .about-stat-grid,
    .tech-group-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-copy-panel {
        padding-left: 0;
    }

    .about-hero-visual {
        min-height: 420px;
    }

    .choose-panel,
    .contact-panel {
        padding: 1.2rem;
        border-radius: 22px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .card-visual-img,
    .product-visual-img {
        height: 150px;
    }

    .ai-flow-video-frame {
        padding: 0.4rem;
        border-radius: 20px;
    }

    .video-preview-video {
        height: 220px;
        min-height: 220px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .solution-overview-card {
        padding: 1.5rem;
        border-radius: 22px;
    }

    .solution-mini-stats {
        grid-template-columns: 1fr;
    }

    .solution-chip {
        padding: 1rem;
    }

    .solution-chip i {
        width: 48px;
        height: 48px;
    }

    .solution-chip-detailed {
        padding: 1rem;
    }

    .cta-panel {
        padding: 1.5rem;
        border-radius: 22px;
    }

    .cta-panel h2 {
        font-size: 2rem;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .hero-metrics,
    .about-stat-grid,
    .tech-group-grid,
    .choose-badge-grid {
        grid-template-columns: 1fr;
    }

    .page-hero-title {
        font-size: clamp(2.1rem, 9vw, 3rem);
    }

    .about-hero-visual {
        min-height: 360px;
    }

    .about-hero-visual .about-hero-image {
        min-height: 240px;
    }

    .about-float-card {
        min-width: 140px;
        padding: 0.8rem 0.9rem;
    }

    .page-hero-minimal {
        min-height: 120px;
    }

    .contact-panel {
        padding: 1.1rem;
    }
}

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

    .ai-flow-video-frame {
        opacity: 1;
        transform: none;
    }
}

/* ===== TRUSTED SECTION ===== */
.trusted-section {
    background: white;
}

.stat-card {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* ===== WHO WE ARE SECTION ===== */
.highlights {
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.highlight-item i {
    font-size: 1.2rem;
}

.about-image-placeholder {
    width: 100%;
    height: 350px;
    background: #e9ecef;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f1ff 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-list li {
    padding: 0.3rem 0;
    color: #666;
}

.service-list li:before {
    content: "✓ ";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.product-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
}

/* ===== DEVELOPMENT PROCESS ===== */
.process-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.process-step {
    flex: 0 1 130px;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h5 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.process-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex: 0 0 auto;
}

/* ===== WHY CHOOSE US ===== */
.why-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f1ff 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0 auto 1.5rem;
}

/* ===== INDUSTRIES ===== */
.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.industry-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.industry-card:hover i {
    color: white;
}

/* ===== TECHNOLOGIES ===== */
.tech-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.tech-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.tech-card p {
    margin: 0;
    font-size: 0.85rem;
}

/* ===== FEATURED PROJECTS ===== */
.portfolio-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f1ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    font-size: 0.9rem;
}

.client-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.client-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.2rem;
}

/* ===== COMPANY NUMBERS ===== */
.number-card {
    padding: 2rem 1rem;
}

.number-display {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.number-label {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* ===== FAQs ===== */
.accordion-button {
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 204, 136, 0.1) 100%);
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    background: #f9f9f9;
    color: #666;
}

/* ===== BLOG CARDS ===== */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 1.5rem;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.blog-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f1ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.blog-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
    padding: 5rem 0;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image-wrapper {
        display: none;
    }

    .process-timeline {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .process-step {
        flex: 0 1 100px;
        font-size: 0.85rem;
    }

    .number-display {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}