:root {
    --brand-primary: #6c63ff;
    --brand-primary-dark: #554bd8;
    --brand-secondary: #29d3b2;
    --brand-accent: #9f7aea;

    --dark-primary: #111225;
    --dark-secondary: #181a33;
    --dark-soft: #242744;

    --text-primary: #17182c;
    --text-secondary: #67697d;
    --text-light: #f7f7fb;

    --border-color: #e8e9f1;
    --surface-soft: #f7f8fc;
    --surface-white: #ffffff;

    --shadow-sm: 0 12px 35px rgba(27, 29, 58, 0.08);
    --shadow-md: 0 20px 60px rgba(27, 29, 58, 0.12);
    --shadow-lg: 0 30px 90px rgba(17, 18, 37, 0.2);

    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text-primary);
    background: var(--surface-white);
    font-family: "DM Sans", sans-serif;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-name {
    font-family: "Manrope", sans-serif;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 110px 0;
}

.bg-light-soft {
    background: var(--surface-soft);
}


/* Navbar */

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    padding: 12px 0;
    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        padding 0.3s ease;
}

.site-header.scrolled {
    padding: 6px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 30px rgba(17, 18, 37, 0.08);
    backdrop-filter: blur(18px);
}

.navbar-brand,
.footer-brand {
    display: inline-flex;
    gap: 11px;
    align-items: center;
}

.brand-name {
    color: #ffffff;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.site-header.scrolled .brand-name {
    color: var(--dark-primary);
}

.brand-symbol {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 38px;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        var(--brand-primary),
        var(--brand-secondary)
    );
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.3);
}

.brand-symbol span:first-child {
    position: absolute;
    top: 9px;
    left: 9px;
    width: 11px;
    height: 20px;
    border: 4px solid #ffffff;
    border-right: 0;
    border-radius: 6px 0 0 6px;
    transform: skewY(-18deg);
}

.brand-symbol span:last-child {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 11px;
    height: 20px;
    border: 4px solid #ffffff;
    border-left: 0;
    border-radius: 0 6px 6px 0;
    transform: skewY(-18deg);
}

.navbar-nav {
    gap: 7px;
}

.navbar .nav-link {
    position: relative;
    padding: 10px 14px !important;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
    font-weight: 600;
    transition: color 0.25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #ffffff;
}

.site-header.scrolled .navbar .nav-link {
    color: #55586f;
}

.site-header.scrolled .navbar .nav-link:hover,
.site-header.scrolled .navbar .nav-link.active {
    color: var(--brand-primary);
}

.navbar .nav-link.active::after {
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand-secondary);
    content: "";
    transform: translateX(-50%);
}

.dropdown-menu {
    min-width: 230px;
    padding: 12px;
    border-radius: 16px;
}

.dropdown-item {
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 600;
}

.dropdown-item:hover {
    color: var(--brand-primary);
    background: rgba(108, 99, 255, 0.08);
}

.navbar-toggler {
    color: #ffffff;
    font-size: 1.8rem;
}

.site-header.scrolled .navbar-toggler {
    color: var(--dark-primary);
}


/* Buttons */

.btn {
    border-radius: 12px;
    font-weight: 700;
}

.btn-brand {
    padding: 12px 21px;
    border: 1px solid var(--brand-primary);
    color: #ffffff;
    background: var(--brand-primary);
    box-shadow: 0 12px 28px rgba(108, 99, 255, 0.25);
}

.btn-brand:hover,
.btn-brand:focus {
    border-color: var(--brand-primary-dark);
    color: #ffffff;
    background: var(--brand-primary-dark);
    transform: translateY(-2px);
}

.btn-brand-lg {
    padding: 15px 25px;
}

.btn-outline-light-custom {
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.btn-outline-light-custom:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.btn-outline-brand {
    padding: 13px 22px;
    border: 1px solid rgba(108, 99, 255, 0.35);
    color: var(--brand-primary);
    background: transparent;
}

.btn-outline-brand:hover {
    border-color: var(--brand-primary);
    color: #ffffff;
    background: var(--brand-primary);
}


/* Hero */

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(108, 99, 255, 0.25),
            transparent 35%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(41, 211, 178, 0.16),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #101124 0%,
            #171932 50%,
            #111329 100%
        );
}

.hero-grid,
.cta-grid {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75),
        transparent
    );
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
}

.hero-orb-one {
    top: 16%;
    right: 8%;
    width: 300px;
    height: 300px;
    background: rgba(108, 99, 255, 0.12);
}

.hero-orb-two {
    bottom: -100px;
    left: 25%;
    width: 340px;
    height: 340px;
    background: rgba(41, 211, 178, 0.09);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.section-eyebrow {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--brand-primary);
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero-eyebrow {
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.05);
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-secondary);
    box-shadow: 0 0 0 6px rgba(41, 211, 178, 0.12);
}

.hero-title {
    max-width: 700px;
    margin-bottom: 25px;
    color: #ffffff;
    font-size: clamp(3rem, 5.5vw, 5.25rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.065em;
}

.hero-title span {
    color: transparent;
    background: linear-gradient(
        90deg,
        #a89fff,
        #57e4c9
    );
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-description {
    max-width: 620px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.11rem;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-trust {
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero-avatars {
    display: flex;
}

.hero-avatars span {
    display: grid;
    width: 36px;
    height: 36px;
    margin-left: -8px;
    border: 2px solid var(--dark-primary);
    border-radius: 50%;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--brand-primary),
        var(--brand-accent)
    );
    font-size: 0.66rem;
    font-weight: 800;
}

.hero-avatars span:first-child {
    margin-left: 0;
}

.hero-avatars span:last-child {
    background: var(--brand-secondary);
}

.hero-stars {
    color: #fbbf24;
    font-size: 0.75rem;
    line-height: 1;
}

.hero-trust p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.63);
    font-size: 0.82rem;
}

.hero-visual {
    position: relative;
    z-index: 2;
    padding: 90px 0 40px 20px;
    perspective: 1200px;
}

.dashboard-window {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background: #f7f8fc;
    box-shadow:
        0 45px 100px rgba(0, 0, 0, 0.42),
        0 0 0 8px rgba(255, 255, 255, 0.025);
    transform: rotateY(-6deg) rotateX(2deg);
}

.dashboard-topbar {
    display: flex;
    align-items: center;
    height: 46px;
    padding: 0 15px;
    border-bottom: 1px solid #e8e9f1;
    background: #ffffff;
}

.window-controls {
    display: flex;
    gap: 6px;
}

.window-controls span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dedfea;
}

.window-controls span:first-child {
    background: #ff6b6b;
}

.window-controls span:nth-child(2) {
    background: #fbbf24;
}

.window-controls span:last-child {
    background: #34d399;
}

.dashboard-address {
    margin: auto;
    padding: 4px 45px;
    border-radius: 6px;
    color: #9a9daf;
    background: #f5f6fa;
    font-size: 0.6rem;
}

.dashboard-user {
    color: #9295a9;
}

.dashboard-body {
    display: flex;
    min-height: 470px;
}

.dashboard-sidebar {
    display: flex;
    width: 64px;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding: 18px 10px;
    color: #8d90a3;
    background: #ffffff;
}

.dashboard-logo {
    display: grid;
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
    border-radius: 10px;
    place-items: center;
    color: #ffffff;
    background: var(--brand-primary);
    font-weight: 800;
}

.dashboard-sidebar > span {
    display: grid;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    place-items: center;
}

.dashboard-sidebar > span.active {
    color: var(--brand-primary);
    background: rgba(108, 99, 255, 0.1);
}

.dashboard-content {
    width: calc(100% - 64px);
    padding: 20px;
}

.dashboard-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 17px;
}

.dashboard-welcome small,
.dashboard-chart-card small,
.dashboard-progress-card small,
.dashboard-activity-card small {
    display: block;
    color: #989bad;
    font-size: 0.6rem;
}

.dashboard-welcome h4 {
    margin: 2px 0 0;
    color: var(--text-primary);
    font-size: 0.96rem;
}

.dashboard-welcome button {
    display: grid;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 9px;
    place-items: center;
    color: #797d91;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 13px;
}

.mini-stat {
    position: relative;
    padding: 13px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(27, 29, 58, 0.05);
}

.mini-stat-icon {
    display: grid;
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
    border-radius: 8px;
    place-items: center;
    color: var(--brand-primary);
    background: rgba(108, 99, 255, 0.1);
    font-size: 0.78rem;
}

.mini-stat small {
    display: block;
    color: #9a9daf;
    font-size: 0.53rem;
}

.mini-stat strong {
    display: block;
    margin: 2px 0;
    color: var(--text-primary);
    font-size: 0.88rem;
}

.mini-stat em {
    color: #16a67a;
    font-size: 0.54rem;
    font-style: normal;
    font-weight: 700;
}

.dashboard-chart-card {
    padding: 14px;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(27, 29, 58, 0.05);
}

.chart-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chart-card-header h5 {
    margin: 1px 0 0;
    color: var(--text-primary);
    font-size: 0.76rem;
}

.chart-card-header > span {
    padding: 4px 7px;
    border-radius: 6px;
    color: #85889d;
    background: #f5f6fa;
    font-size: 0.5rem;
}

.fake-chart {
    position: relative;
    height: 130px;
    margin-top: 8px;
    overflow: hidden;
}

.fake-chart svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.chart-area {
    fill: url("#chartGradient");
}

.chart-line {
    fill: none;
    stroke: var(--brand-primary);
    stroke-linecap: round;
    stroke-width: 3;
}

.chart-lines {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.chart-lines span {
    display: block;
    border-top: 1px dashed #ececf3;
}

.dashboard-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 13px;
}

.dashboard-progress-card,
.dashboard-activity-card {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    background: #ffffff;
}

.progress-circle {
    display: grid;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    place-items: center;
    background:
        radial-gradient(closest-side, #ffffff 77%, transparent 78% 99%),
        conic-gradient(var(--brand-primary) 78%, #ececf3 0);
}

.progress-circle span {
    color: var(--text-primary);
    font-size: 0.56rem;
    font-weight: 800;
}

.dashboard-progress-card strong,
.dashboard-activity-card strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.64rem;
}

.dashboard-activity-card > span {
    display: grid;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    place-items: center;
    color: #108a72;
    background: rgba(41, 211, 178, 0.14);
}

.floating-card {
    position: absolute;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 13px;
    background: rgba(24, 26, 51, 0.84);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(15px);
}

.floating-card > span {
    display: grid;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    place-items: center;
    color: var(--brand-secondary);
    background: rgba(41, 211, 178, 0.12);
}

.floating-card small {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.6rem;
}

.floating-card strong {
    color: #ffffff;
    font-size: 0.7rem;
}

.floating-card-one {
    top: 33%;
    left: -10px;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card-two {
    right: -20px;
    bottom: 12%;
    animation: floatCard 4s ease-in-out 1s infinite;
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    display: flex;
    gap: 8px;
    align-items: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
    transform: translateX(-50%);
}


/* Headings */

.section-heading {
    max-width: 720px;
    margin: 0 auto 55px;
}

.section-heading h2,
.section-title,
.process-intro h2 {
    color: var(--text-primary);
    font-size: clamp(2.2rem, 4vw, 3.35rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.section-heading p,
.section-description {
    color: var(--text-secondary);
    font-size: 1.03rem;
}


/* Feature Cards */

.feature-card {
    height: 100%;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(108, 99, 255, 0.28);
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.feature-icon,
.service-icon {
    display: grid;
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    border-radius: 16px;
    place-items: center;
    color: var(--brand-primary);
    background: rgba(108, 99, 255, 0.1);
    font-size: 1.45rem;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.16rem;
    font-weight: 800;
}

.feature-card p {
    margin-bottom: 18px;
    color: var(--text-secondary);
    font-size: 0.93rem;
}

.feature-card a,
.service-card a,
.product-card a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--brand-primary);
    font-size: 0.89rem;
    font-weight: 800;
}


/* Services */

.services-section {
    background: #ffffff;
}

.service-card {
    position: relative;
    display: flex;
    min-height: 340px;
    flex-direction: column;
    justify-content: space-between;
    padding: 38px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--surface-soft);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.service-number {
    position: absolute;
    top: 30px;
    right: 32px;
    color: #d8d9e5;
    font-family: "Manrope", sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
}

.service-card h3 {
    margin-bottom: 13px;
    font-size: 1.6rem;
    font-weight: 800;
}

.service-card p {
    max-width: 520px;
    color: var(--text-secondary);
}

.service-card-dark {
    border-color: transparent;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(108, 99, 255, 0.4),
            transparent 36%
        ),
        var(--dark-primary);
}

.service-card-dark .service-number {
    color: rgba(255, 255, 255, 0.14);
}

.service-card-dark .service-icon {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.service-card-dark p {
    color: rgba(255, 255, 255, 0.65);
}

.service-card-dark a {
    color: var(--brand-secondary);
}


/* Stats */

.stats-section {
    padding: 0 0 110px;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--dark-primary);
}

.stat-item {
    padding: 40px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item strong {
    display: block;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
}

.stat-item strong::after {
    color: var(--brand-secondary);
    content: "+";
}

.stat-item:last-child strong::after {
    content: "%";
}

.stat-item span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.86rem;
}


/* Products */

.product-section {
    background: var(--surface-soft);
}

.product-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.product-preview {
    min-height: 260px;
    padding: 28px;
}

.product-preview-health {
    background: linear-gradient(135deg, #665dff, #958eff);
}

.product-preview-facility {
    background: linear-gradient(135deg, #098d82, #38d5bd);
}

.product-preview-business {
    background: linear-gradient(135deg, #242744, #59607f);
}

.product-browser {
    display: flex;
    gap: 6px;
    height: 28px;
    padding: 10px 12px;
    border-radius: 12px 12px 0 0;
    background: rgba(255, 255, 255, 0.95);
}

.product-browser span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d8d9e5;
}

.product-screen {
    display: flex;
    min-height: 175px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 12px 12px;
    color: #ffffff;
    background: rgba(17, 18, 37, 0.18);
    backdrop-filter: blur(8px);
}

.product-screen i {
    margin-bottom: 12px;
    font-size: 2.5rem;
}

.product-screen strong {
    font-family: "Manrope", sans-serif;
    font-size: 1.35rem;
}

.product-screen small {
    color: rgba(255, 255, 255, 0.68);
}

.product-card-body {
    padding: 28px;
}

.product-category {
    color: var(--brand-primary);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 8px 0 12px;
    font-size: 1.4rem;
    font-weight: 800;
}

.product-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
}


/* Process */

.process-section {
    color: #ffffff;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(108, 99, 255, 0.3),
            transparent 35%
        ),
        var(--dark-primary);
}

.section-eyebrow-light {
    color: var(--brand-secondary);
}

.process-intro {
    position: sticky;
    top: 120px;
}

.process-intro h2 {
    color: #ffffff;
}

.process-intro p {
    max-width: 470px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.62);
}

.process-list {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.process-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.process-item > span {
    color: var(--brand-secondary);
    font-family: "Manrope", sans-serif;
    font-weight: 800;
}

.process-item h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
    font-weight: 800;
}

.process-item p {
    max-width: 590px;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
}


/* Testimonials */

.testimonial-card {
    height: 100%;
    padding: 32px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #ffffff;
}

.testimonial-card-featured {
    color: #ffffff;
    border-color: transparent;
    background: var(--brand-primary);
    box-shadow: 0 25px 60px rgba(108, 99, 255, 0.3);
}

.testimonial-stars {
    margin-bottom: 22px;
    color: #fbbf24;
    font-size: 0.8rem;
}

.testimonial-card blockquote {
    margin-bottom: 28px;
    color: var(--text-primary);
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.8;
}

.testimonial-card-featured blockquote {
    color: #ffffff;
}

.testimonial-author {
    display: flex;
    gap: 12px;
    align-items: center;
}

.testimonial-author > span {
    display: grid;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    place-items: center;
    color: #ffffff;
    background: var(--dark-primary);
    font-size: 0.72rem;
    font-weight: 800;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.76rem;
}

.testimonial-card-featured .testimonial-author small {
    color: rgba(255, 255, 255, 0.65);
}


/* CTA */

.cta-section {
    padding: 0 0 110px;
}

.cta-wrapper {
    position: relative;
    padding: 70px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            rgba(108, 99, 255, 0.98),
            rgba(82, 71, 208, 0.98)
        );
}

.cta-grid {
    opacity: 0.2;
    mask-image: none;
}

.cta-orb {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: rgba(41, 211, 178, 0.25);
    filter: blur(2px);
}

.cta-label {
    display: block;
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cta-wrapper h2 {
    max-width: 790px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.045em;
}

.btn-cta {
    padding: 16px 24px;
    color: var(--brand-primary);
}


/* Footer */

.site-footer {
    position: relative;
    padding: 90px 0 25px;
    overflow: hidden;
    color: #ffffff;
    background: #0d0e1d;
}

.footer-decoration {
    position: absolute;
    border-radius: 50%;
}

.footer-decoration-one {
    top: -180px;
    right: -130px;
    width: 400px;
    height: 400px;
    background: rgba(108, 99, 255, 0.1);
}

.footer-decoration-two {
    bottom: -220px;
    left: -170px;
    width: 420px;
    height: 420px;
    background: rgba(41, 211, 178, 0.06);
}

.brand-symbol-light {
    box-shadow: none;
}

.footer-intro {
    max-width: 360px;
    margin: 22px 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: grid;
    width: 39px;
    height: 39px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 11px;
    place-items: center;
    color: rgba(255, 255, 255, 0.7);
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.social-links a:hover {
    border-color: var(--brand-primary);
    color: #ffffff;
    background: var(--brand-primary);
}

.footer-heading {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 800;
}

.footer-links,
.footer-contact {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.88rem;
    transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--brand-secondary);
}

.footer-contact li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact i {
    margin-top: 4px;
    color: var(--brand-secondary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 65px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.footer-legal {
    display: flex;
    gap: 22px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal a:hover {
    color: #ffffff;
}


/* Scroll Top */

.scroll-top-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1020;
    display: grid;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 13px;
    place-items: center;
    color: #ffffff;
    background: var(--brand-primary);
    box-shadow: 0 15px 35px rgba(108, 99, 255, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Responsive */

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 4rem;
    }

    .floating-card-one {
        left: -5px;
    }

    .floating-card-two {
        right: -5px;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 85px 0;
    }

    .site-header {
        background: rgba(17, 18, 37, 0.95);
        backdrop-filter: blur(18px);
    }

    .site-header.scrolled {
        background: rgba(255, 255, 255, 0.97);
    }

    .navbar-collapse {
        margin-top: 12px;
        padding: 18px;
        border-radius: 18px;
        background: rgba(17, 18, 37, 0.98);
    }

    .site-header.scrolled .navbar-collapse {
        background: #ffffff;
        box-shadow: var(--shadow-md);
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .navbar .nav-link.active::after {
        display: none;
    }

    .navbar-action {
        margin-top: 10px;
    }

    .navbar-action .btn {
        width: 100%;
    }

    .hero-section {
        padding: 110px 0 60px;
    }

    .hero-section .min-vh-100 {
        min-height: auto !important;
    }

    .hero-content {
        padding-top: 30px;
        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        max-width: 720px;
        margin: auto;
        padding: 25px 20px 60px;
    }

    .dashboard-window {
        transform: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .process-intro {
        position: static;
    }

    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cta-wrapper {
        padding: 55px 40px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 3.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        align-items: flex-start;
        text-align: left;
    }

    .hero-visual {
        padding-right: 0;
        padding-left: 0;
    }

    .floating-card {
        display: none;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-body {
        min-height: 500px;
    }

    .mini-stat {
        display: grid;
        grid-template-columns: 35px 1fr auto;
        gap: 8px;
        align-items: center;
    }

    .mini-stat-icon {
        margin: 0;
    }

    .dashboard-bottom-row {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .service-card,
    .testimonial-card {
        padding: 25px;
    }

    .service-card {
        min-height: 310px;
    }

    .stats-wrapper {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:last-child {
        border-bottom: 0;
    }

    .process-item {
        grid-template-columns: 55px 1fr;
    }

    .cta-wrapper {
        padding: 42px 25px;
        border-radius: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.65rem;
    }

    .hero-trust {
        display: none;
    }

    .dashboard-sidebar {
        width: 48px;
        padding-right: 6px;
        padding-left: 6px;
    }

    .dashboard-content {
        width: calc(100% - 48px);
        padding: 12px;
    }

    .dashboard-address {
        padding-right: 20px;
        padding-left: 20px;
    }

    .dashboard-chart-card {
        display: none;
    }

    .product-preview {
        min-height: 220px;
        padding: 20px;
    }

    .product-screen {
        min-height: 150px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 6px;
    }
    
    .site-logo{
    height:52px;
    width:auto;
    transition:.3s;
}

.footer-logo{
    height:60px;
}

.site-header.scrolled .site-logo{
    height:48px;
}

/* =========================================================
   About Page
========================================================= */

.inner-hero {
    position: relative;
    padding: 180px 0 110px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 12% 22%,
            rgba(108, 99, 255, 0.27),
            transparent 34%
        ),
        radial-gradient(
            circle at 86% 70%,
            rgba(41, 211, 178, 0.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #101124 0%,
            #171932 55%,
            #111329 100%
        );
}

.inner-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );
    background-size: 58px 58px;
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.85),
        transparent
    );
}

.inner-hero-orb {
    position: absolute;
    border-radius: 50%;
}

.inner-hero-orb-one {
    top: 70px;
    right: 8%;
    width: 250px;
    height: 250px;
    background: rgba(108, 99, 255, 0.12);
    filter: blur(6px);
}

.inner-hero-orb-two {
    bottom: -120px;
    left: 30%;
    width: 320px;
    height: 320px;
    background: rgba(41, 211, 178, 0.08);
}

.custom-breadcrumb {
    margin-bottom: 24px;
}

.custom-breadcrumb .breadcrumb-item,
.custom-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.84rem;
}

.custom-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.35);
}

.inner-hero h1 {
    max-width: 800px;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.06em;
}

.inner-hero h1 span {
    color: transparent;
    background: linear-gradient(
        90deg,
        #aaa3ff,
        #52e0c4
    );
    background-clip: text;
    -webkit-background-clip: text;
}

.inner-hero p {
    max-width: 740px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 1.08rem;
    line-height: 1.85;
}

.inner-hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.about-hero-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(18px);
}

.about-hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 800;
}

.about-hero-card-header i {
    color: var(--brand-secondary);
    font-size: 1.3rem;
}

.about-hero-card-body {
    padding: 24px;
}

.about-summary-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-summary-item:last-child {
    border-bottom: 0;
}

.about-summary-icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 13px;
    place-items: center;
    color: var(--brand-secondary);
    background: rgba(41, 211, 178, 0.12);
}

.about-summary-item small {
    display: block;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.72rem;
}

.about-summary-item strong {
    color: #ffffff;
    font-size: 0.93rem;
}

.about-hero-card-footer {
    display: flex;
    gap: 9px;
    align-items: center;
    padding: 17px 24px;
    color: rgba(255, 255, 255, 0.58);
    background: rgba(0, 0, 0, 0.14);
    font-size: 0.76rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-secondary);
    box-shadow: 0 0 0 6px rgba(41, 211, 178, 0.12);
}

.about-overview-section {
    background: #ffffff;
}

.about-visual-panel {
    position: relative;
    min-height: 520px;
    padding: 55px;
    overflow: hidden;
    border-radius: 30px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(41, 211, 178, 0.24),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #181a33,
            #111225
        );
    box-shadow: var(--shadow-lg);
}

.about-visual-grid {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );
    background-size: 45px 45px;
}

.about-visual-main {
    position: relative;
    z-index: 2;
    max-width: 410px;
}

.about-visual-icon {
    display: grid;
    width: 68px;
    height: 68px;
    margin-bottom: 28px;
    border-radius: 19px;
    place-items: center;
    color: #ffffff;
    background: var(--brand-primary);
    font-size: 1.8rem;
    box-shadow: 0 20px 40px rgba(108, 99, 255, 0.3);
}

.about-visual-main > span {
    color: var(--brand-secondary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-visual-main h3 {
    margin: 15px 0;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
}

.about-visual-main p {
    color: rgba(255, 255, 255, 0.61);
}

.about-floating-badge {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 11px 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    font-size: 0.77rem;
    font-weight: 700;
}

.about-floating-badge i {
    color: var(--brand-secondary);
}

.badge-network {
    right: 32px;
    bottom: 155px;
}

.badge-security {
    right: 70px;
    bottom: 92px;
}

.badge-energy {
    right: 24px;
    bottom: 30px;
}

.about-lead {
    color: var(--text-primary);
    font-size: 1.16rem;
    font-weight: 600;
    line-height: 1.8;
}

.about-copy {
    color: var(--text-secondary);
}

.about-check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 20px;
    margin-top: 28px;
}

.about-check-list div {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.about-check-list i {
    margin-top: 4px;
    color: var(--brand-secondary);
}

.about-stats-section {
    padding-bottom: 110px;
}

.about-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background: var(--surface-soft);
}

.about-stat-item {
    padding: 35px 28px;
    border-right: 1px solid var(--border-color);
}

.about-stat-item:last-child {
    border-right: 0;
}

.about-stat-item strong {
    display: block;
    color: var(--brand-primary);
    font-family: "Manrope", sans-serif;
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1;
}

.about-stat-item:first-child strong::after {
    content: "+";
}

.about-stat-item span {
    display: block;
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.5;
}

.vision-mission-section {
    background: var(--surface-soft);
}

.purpose-card {
    position: relative;
    min-height: 410px;
    padding: 45px;
    overflow: hidden;
    border-radius: 28px;
}

.purpose-card-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.13;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px
        );
    background-size: 42px 42px;
}

.purpose-card-vision {
    color: #ffffff;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(41, 211, 178, 0.22),
            transparent 34%
        ),
        var(--dark-primary);
}

.purpose-card-mission {
    color: #ffffff;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 255, 255, 0.17),
            transparent 34%
        ),
        var(--brand-primary);
}

.purpose-card-icon,
.purpose-label,
.purpose-card h3 {
    position: relative;
    z-index: 2;
}

.purpose-card-icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    place-items: center;
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.6rem;
}

.purpose-label {
    display: block;
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.63);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.purpose-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.45;
}

.core-values-section {
    background: #ffffff;
}

.value-card {
    position: relative;
    height: 100%;
    min-height: 280px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.value-card:hover {
    border-color: rgba(108, 99, 255, 0.28);
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.value-number {
    position: absolute;
    top: 22px;
    right: 22px;
    color: #e3e4ec;
    font-family: "Manrope", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
}

.value-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 15px;
    place-items: center;
    color: var(--brand-primary);
    background: rgba(108, 99, 255, 0.1);
    font-size: 1.25rem;
}

.value-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
}

.value-card p {
    margin-bottom: 0;
    color: var(--text-secondary);
    font-size: 0.87rem;
}

.why-about-section {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(108, 99, 255, 0.33),
            transparent 34%
        ),
        var(--dark-primary);
}

.why-about-decoration {
    position: absolute;
    right: -180px;
    bottom: -220px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(41, 211, 178, 0.07);
}

.why-about-card {
    height: 100%;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}

.why-about-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
}

.why-about-card > span {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 21px;
    border-radius: 15px;
    place-items: center;
    color: var(--brand-secondary);
    background: rgba(41, 211, 178, 0.11);
    font-size: 1.25rem;
}

.why-about-card h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
}

.why-about-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.88rem;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.industry-card {
    display: flex;
    min-height: 135px;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    padding: 22px;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: var(--surface-soft);
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.industry-card:hover {
    border-color: rgba(108, 99, 255, 0.28);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.industry-card i {
    color: var(--brand-primary);
    font-size: 1.45rem;
}

.industry-card span {
    color: var(--text-primary);
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.4;
}

.future-section {
    padding-top: 0;
}

.future-wrapper {
    position: relative;
    padding: 70px;
    overflow: hidden;
    border-radius: 30px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(41, 211, 178, 0.2),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #171932,
            #111225
        );
}

.future-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );
    background-size: 50px 50px;
}

.future-wrapper h2 {
    max-width: 720px;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.future-wrapper p {
    max-width: 740px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.62);
}

.future-focus-list {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
}

.future-focus-list div {
    display: flex;
    gap: 11px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}

.future-focus-list div:last-child {
    border-bottom: 0;
}

.future-focus-list i {
    color: var(--brand-secondary);
}


/* About Responsive */

@media (max-width: 1199.98px) {
    .about-visual-panel {
        padding: 45px;
    }

    .value-card {
        min-height: 260px;
    }
}

@media (max-width: 991.98px) {
    .inner-hero {
        padding: 150px 0 90px;
    }

    .inner-hero h1 {
        font-size: 4rem;
    }

    .about-hero-card {
        max-width: 680px;
    }

    .about-visual-panel {
        min-height: 480px;
    }

    .about-stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stat-item:nth-child(2) {
        border-right: 0;
    }

    .about-stat-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border-color);
    }

    .purpose-card {
        min-height: 360px;
    }

    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .future-wrapper {
        padding: 55px 40px;
    }
}

@media (max-width: 767.98px) {
    .inner-hero {
        padding: 130px 0 75px;
    }

    .inner-hero h1 {
        font-size: 3.1rem;
    }

    .inner-hero-actions {
        flex-direction: column;
    }

    .inner-hero-actions .btn {
        width: 100%;
    }

    .about-visual-panel {
        min-height: auto;
        padding: 35px 28px 190px;
    }

    .about-floating-badge {
        right: auto;
        left: 28px;
    }

    .badge-network {
        bottom: 125px;
    }

    .badge-security {
        bottom: 75px;
    }

    .badge-energy {
        bottom: 25px;
    }

    .about-check-list {
        grid-template-columns: 1fr;
    }

    .about-stats-wrapper {
        grid-template-columns: 1fr;
    }

    .about-stat-item {
        border-right: 0;
        border-bottom: 1px solid var(--border-color);
    }

    .about-stat-item:last-child {
        border-bottom: 0;
    }

    .purpose-card {
        min-height: 340px;
        padding: 34px;
    }

    .purpose-card h3 {
        font-size: 1.45rem;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .future-wrapper {
        padding: 42px 25px;
        border-radius: 24px;
    }
}

@media (max-width: 575.98px) {
    .inner-hero h1 {
        font-size: 2.65rem;
    }

    .about-visual-main h3 {
        font-size: 1.65rem;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        min-height: 105px;
    }
    
    .about-overview-section {
    background: #f7f8fc;
}

.core-values-section {
    background: #f1f3f8;
}

.industries-section {
    background: #f7f8fc;
}

.vision-mission-section {
    background: #ffffff;
}

.value-card,
.industry-card {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(27, 29, 58, 0.05);
}

.about-overview-section {
    position: relative;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(108, 99, 255, 0.07),
            transparent 30%
        ),
        #f7f8fc;
}

.about-stats-section {
    padding: 90px 0;
    background: #111225;
}

.about-stats-wrapper {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.about-stat-item {
    border-color: rgba(255, 255, 255, 0.1);
}

.about-stat-item strong {
    color: var(--brand-secondary);
}

.about-stat-item span {
    color: rgba(255, 255, 255, 0.62);
}
}