:root {
    --navy-deep: #020f20;
    --navy: #061a32;
    --navy-medium: #0b2848;
    --navy-card: #0d2742;
    --blue: #173f70;
    --gold: #e4a719;
    --gold-bright: #f6ba31;
    --gold-light: #ffd66f;
    --green: #20d675;
    --white: #ffffff;
    --off-white: #f5f7fa;
    --text: #17253a;
    --muted: #69778a;
    --border: #dfe4eb;
    --shadow: 0 24px 70px rgba(2, 15, 32, 0.16);
    --container: 1380px;
    --radius: 20px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 56px), var(--container));
    margin: 0 auto;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(2, 15, 32, 0.97);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 126px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 20px;
}

.brand-symbol {
    width: 108px;
    height: 108px;
    display: block;
    flex: 0 0 auto;

    padding: 7px;
    border-radius: 22px;

    object-fit: contain;
    object-position: center;

    background: #ffffff;
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.28),
        inset 0 0 0 1px rgba(7, 26, 51, 0.06);
}

.brand-divider {
    width: 1px;
    height: 88px;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.55);
}

.brand-identity {
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: 1;
}

.brand-name {
    color: var(--white);
    font-size: 39px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 0.95;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.28);
}

.brand-webs-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 6px;
}

.brand-webs-row span {
    width: 48px;
    height: 3px;
    background: var(--gold-bright);
    border-radius: 3px;
}

.brand-webs-row strong {
    color: var(--gold-bright);
    font-size: 23px;
    letter-spacing: 10px;
    line-height: 1;
}

.brand-identity small {
    display: inline-block;
    width: fit-content;
    align-self: flex-start;

    margin-top: 8px;
    padding-top: 6px;

    border-top: 2px solid rgba(255,255,255,.9);

    color: rgba(255,255,255,.94);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 43px;
}

.main-navigation a {
    position: relative;
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    font-weight: 700;
    transition: color 0.25s ease;
}

.main-navigation a:not(.navigation-cta)::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 3px;
    border-radius: 4px;
    content: "";
    background: var(--gold-bright);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: var(--gold-bright);
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    transform: scaleX(1);
}

.navigation-cta {
    padding: 14px 29px !important;
    border: 2px solid var(--gold-bright);
    border-radius: 999px;
    color: var(--gold-bright) !important;
}

.navigation-cta:hover {
    color: var(--navy-deep) !important;
    background: var(--gold-bright);
}

.mobile-menu-button {
    width: 48px;
    height: 48px;
    display: none;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    cursor: pointer;
}

.mobile-menu-button span {
    width: 100%;
    height: 2px;
    display: block;
    margin: 6px 0;
    border-radius: 4px;
    background: var(--white);
}

/* Hero */

.hero-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(
            circle at 92% 12%,
            rgba(228, 167, 25, 0.25),
            transparent 28%
        ),
        linear-gradient(115deg, #03152c 0%, #06213f 52%, #03162d 100%);
}

.hero-section::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.13;
    background-image:
        linear-gradient(
            30deg,
            transparent 48%,
            rgba(255, 255, 255, 0.13) 49%,
            rgba(255, 255, 255, 0.13) 50%,
            transparent 51%
        ),
        linear-gradient(
            -30deg,
            transparent 48%,
            rgba(255, 255, 255, 0.09) 49%,
            rgba(255, 255, 255, 0.09) 50%,
            transparent 51%
        );
    background-size: 170px 170px;
}

.hero-glow {
    position: absolute;
    top: -160px;
    right: -100px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(228, 167, 25, 0.11);
    filter: blur(70px);
}

.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(420px, 0.9fr) minmax(620px, 1.1fr);
    align-items: center;
    gap: 52px;
    padding-top: 64px;
    padding-bottom: 64px;
}

.hero-content {
    min-width: 0;
}

.eyebrow,
.section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--gold-bright);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 670px;
    margin: 0;
    color: var(--white);
    font-size: clamp(48px, 4.5vw, 68px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.hero-content h1 span {
    display: block;
    color: var(--gold-bright);
}

.hero-description {
    max-width: 630px;
    margin: 23px 0 0;
    color: rgba(255, 255, 255, 0.89);
    font-size: 18px;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    margin-top: 31px;
}

.button {
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 29px;
    border: 2px solid transparent;
    border-radius: 11px;
    font-size: 17px;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: #06162a;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-bright));
    box-shadow: 0 14px 32px rgba(228, 167, 25, 0.24);
}

.button-primary:hover {
    background: var(--white);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.85);
    color: var(--white);
    background: rgba(255, 255, 255, 0.025);
}

.button-secondary:hover {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
}

.button-icon {
    font-size: 18px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    margin-top: 39px;
}

.hero-benefits > div {
    display: flex;
    align-items: center;
    gap: 11px;
}

.benefit-icon {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border: 2px solid var(--gold-bright);
    border-radius: 50%;
    color: var(--gold-bright);
    font-size: 18px;
}

.hero-benefits strong {
    font-size: 15px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(580px, 1.15fr);
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.14;
    letter-spacing: -1.8px;
}

.about-content p {
    max-width: 590px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

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

.about-feature-card {
    min-height: 230px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(7, 26, 51, 0.07);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.about-feature-card:hover {
    border-color: rgba(228, 167, 25, 0.65);
    box-shadow: 0 22px 45px rgba(7, 26, 51, 0.12);
    transform: translateY(-5px);
}

.about-feature-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--navy);
    background: rgba(228, 167, 25, 0.17);
    font-size: 12px;
    font-weight: 900;
}

.about-feature-card h3 {
    margin: 28px 0 10px;
    color: var(--navy);
    font-size: 20px;
}

.about-feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

/* Dashboard */

.hero-visual {
    min-width: 0;
}

.dashboard-window {
    width: 100%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: rgba(5, 24, 44, 0.96);
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(255, 255, 255, 0.03);
}

.dashboard-topbar {
    min-height: 63px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(2, 15, 27, 0.9);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-controls span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.window-controls span:nth-child(1) {
    background: #f46762;
}

.window-controls span:nth-child(2) {
    background: #f6bd36;
}

.window-controls span:nth-child(3) {
    background: #31bf65;
}

.dashboard-top-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
}

.dashboard-top-actions > span:first-child {
    padding: 9px 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.035);
}

.dashboard-top-actions strong {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.dashboard-layout {
    min-height: 470px;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 22px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
}

.dashboard-home-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: var(--gold-bright);
    background: rgba(228, 167, 25, 0.18);
}

.dashboard-main {
    min-width: 0;
    padding: 24px 24px 26px;
}

.dashboard-heading h3 {
    margin: 0;
    font-size: 20px;
}

.dashboard-heading p {
    margin: 3px 0 0;
    color: rgba(255, 255, 255, 0.61);
    font-size: 12px;
}

.dashboard-stat-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
    margin-top: 19px;
}

.dashboard-stat-cards article {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    background: linear-gradient(
        140deg,
        rgba(19, 53, 84, 0.95),
        rgba(9, 35, 60, 0.95)
    );
    box-shadow: 0 13px 22px rgba(0, 0, 0, 0.17);
}

.dashboard-stat-cards small,
.dashboard-stat-cards strong,
.dashboard-stat-cards span {
    display: block;
}

.dashboard-stat-cards small {
    color: rgba(255, 255, 255, 0.86);
    font-size: 11px;
}

.dashboard-stat-cards strong {
    margin-top: 5px;
    font-size: 24px;
}

.dashboard-stat-cards span {
    margin-top: 2px;
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
}

.stat-card-icon {
    width: 43px;
    height: 43px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--gold-bright);
    background: rgba(228, 167, 25, 0.12);
    font-size: 23px;
}

.stat-card-icon.green {
    color: var(--green);
    background: rgba(32, 214, 117, 0.12);
}

.dashboard-lower-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.75fr);
    gap: 14px;
    margin-top: 15px;
}

.performance-panel,
.activity-panel {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    background: rgba(13, 39, 66, 0.78);
}

.performance-panel h4,
.activity-panel h4 {
    margin: 0 0 12px;
    font-size: 12px;
}

.chart-area {
    position: relative;
    height: 205px;
    overflow: hidden;
}

.chart-grid-line {
    position: absolute;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.chart-grid-line.line-one {
    top: 30%;
}

.chart-grid-line.line-two {
    top: 55%;
}

.chart-grid-line.line-three {
    top: 80%;
}

.performance-chart {
    position: absolute;
    inset: 9px 0 25px;
    width: 100%;
    height: calc(100% - 34px);
}

.chart-line {
    fill: none;
    stroke: var(--gold-bright);
    stroke-width: 4;
}

.chart-fill {
    fill: url("#chartFill");
}

.chart-days {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.67);
    font-size: 9px;
}

.activity-panel {
    display: flex;
    flex-direction: column;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 10px;
}

.activity-icon {
    width: 26px;
    height: 26px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: rgba(32, 214, 117, 0.13);
    font-size: 10px;
}

.activity-icon.purple {
    color: #ae7cff;
    background: rgba(174, 124, 255, 0.14);
}

.activity-icon.blue {
    color: #52a9ff;
    background: rgba(82, 169, 255, 0.14);
}

.activity-item div {
    min-width: 0;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
}

.activity-item strong {
    font-size: 9px;
    white-space: nowrap;
}

.activity-item small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 8px;
    white-space: nowrap;
}

/* Achievement strip */

.achievement-strip {
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

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

.achievement-grid article {
    min-height: 150px;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 27px 34px;
    border-right: 1px solid var(--border);
}

.achievement-grid article:last-child {
    border-right: 0;
}

.achievement-icon {
    width: 67px;
    height: 67px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--gold);
    background: var(--off-white);
    font-size: 30px;
}

.achievement-grid strong {
    display: block;
    color: var(--navy);
    font-size: 26px;
    line-height: 1.2;
}

.achievement-grid p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

/* Existing sections */

.section {
    padding: 105px 0;
}

.section-light {
    position: relative;
    background: var(--off-white);
}

.section-light::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    background: linear-gradient(
        90deg,
        transparent,
        rgba(228, 167, 25, 0.45),
        transparent
    );
}

.two-column {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.two-column h2,
.section-heading h2,
.contact-section h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.16;
    letter-spacing: -1.8px;
}

.section-copy {
    color: var(--muted);
    font-size: 17px;
}

.section-copy p:first-child {
    margin-top: 0;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 13px;
    color: var(--blue);
    font-weight: 800;
}

.text-link span {
    color: var(--gold);
}

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

.section-heading p {
    max-width: 650px;
    margin: 19px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.card-grid,
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.services-section {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.services-section::before {
    position: absolute;
    top: -180px;
    right: -180px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(228, 167, 25, 0.15);
    border-radius: 50%;
    content: "";
}

.services-heading {
    position: relative;
    z-index: 2;
}

.services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    position: relative;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    padding: 31px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 13px 35px rgba(7, 26, 51, 0.06);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card::after {
    position: absolute;
    right: -48px;
    bottom: -55px;
    width: 135px;
    height: 135px;
    border: 1px solid rgba(228, 167, 25, 0.2);
    border-radius: 50%;
    content: "";
}

.service-card:hover {
    border-color: rgba(228, 167, 25, 0.7);
    box-shadow: 0 24px 55px rgba(7, 26, 51, 0.13);
    transform: translateY(-7px);
}

.card-number {
    display: block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
}

.service-card h3,
.product-card h3 {
    margin: 45px 0 13px;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.3;
}

.service-card p,
.product-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.service-card-featured {
    color: var(--white);
    min-height:245px;
    border-color: rgba(228, 167, 25, 0.55);
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(228, 167, 25, 0.22),
            transparent 28%
        ),
        linear-gradient(135deg, #061a32 0%, #0b2b4d 100%);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-number {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.7px;
}

.service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    flex: 0 0 54px;
    place-items: center;

    border: 1px solid rgba(228, 167, 25, 0.12);
    border-radius: 16px;

    color: var(--gold);
    background: rgba(228, 167, 25, 0.12);

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.service-icon svg {
    width: 27px;
    height: 27px;
    display: block;
    stroke-width: 1.9;
}

.service-card:hover .service-icon {
    color: var(--navy);
    background: var(--gold-light);
    transform: translateY(-2px);
}

.service-card-featured .service-icon {
    color: var(--navy);
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--gold-light);
}

.service-card-featured:hover .service-icon {
    color: var(--navy);
    background: #ffd976;
}

.service-card h3 {
    margin: 42px 0 13px;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.28;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.service-card-featured h3 {
    color: var(--white);
}

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

.service-card-featured .service-icon {
    color: var(--navy);
    background: var(--gold-light);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    padding-top: 24px;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 800;
}

.service-link span {
    transition: transform 0.2s ease;
}

.service-link:hover span {
    transform: translateX(4px);
}
.section-dark {
    color: var(--white);
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(228, 167, 25, 0.13),
            transparent 26%
        ),
        var(--navy);
}

.section-heading-light h2 {
    color: var(--white);
}

.section-heading-light p {
    color: rgba(255, 255, 255, 0.66);
}


/* =========================================================
   PRODUCTS SECTION
========================================================= */

.products-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 8%,
            rgba(228, 167, 25, 0.08),
            transparent 25%
        ),
        #f7f9fc;
}

.products-section::before {
    position: absolute;
    top: 110px;
    right: -140px;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(228, 167, 25, 0.13);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.products-heading {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-bottom: 38px;
}

.product-group-heading {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.product-group-heading-upcoming {
    margin-top: 48px;
}

.product-group-heading > div {
    display: flex;
    align-items: center;
    gap: 13px;
}

.product-group-icon {
    width: 44px;
    height: 44px;
    display: grid;
    flex: 0 0 44px;
    place-items: center;
    border-radius: 13px;
    color: #147544;
    background: rgba(24, 156, 88, 0.12);
}

.product-group-heading-upcoming .product-group-icon {
    color: #986700;
    background: rgba(228, 167, 25, 0.16);
}

.product-group-icon svg {
    width: 21px;
    height: 21px;
    stroke-width: 2;
}

.product-group-heading > div > div > span {
    display: block;
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.product-group-heading h3 {
    margin: 2px 0 0;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.2;
}

.product-group-heading > p {
    max-width: 450px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    text-align: right;
}

.products-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: stretch;
    gap: 20px;
}

.products-grid-live {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.product-card {
    --product-accent: var(--gold);
    --product-tint: rgba(228, 167, 25, 0.1);

    position: relative;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-top: 3px solid var(--product-accent);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(7, 26, 51, 0.07);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.product-card:hover {
    border-color: var(--product-accent);
    box-shadow: 0 18px 42px rgba(7, 26, 51, 0.13);
    transform: translateY(-5px);
}

.product-courier {
    --product-accent: #1565cf;
    --product-tint: rgba(21, 101, 207, 0.1);
}

.product-school {
    --product-accent: #6f2a96;
    --product-tint: rgba(111, 42, 150, 0.1);
}

.product-mosque {
    --product-accent: #318b36;
    --product-tint: rgba(49, 139, 54, 0.1);
}

.product-inventory {
    --product-accent: #147744;
    --product-tint: rgba(20, 119, 68, 0.1);
}

.product-clinic {
    --product-accent: #d10b1a;
    --product-tint: rgba(209, 11, 26, 0.09);
}

.product-crm {
    --product-accent: #078b98;
    --product-tint: rgba(7, 139, 152, 0.1);
}

.product-legal {
    --product-accent: #d49a1b;
    --product-tint: rgba(212, 154, 27, 0.11);
}

.product-card-header {
    position: absolute;
    z-index: 4;
    top: 12px;
    right: 12px;
}

.product-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.6px;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 5px 13px rgba(7, 26, 51, 0.08);
}

.product-status-live {
    color: #11683a;
    background: #dcf6e7;
}

.product-status-live > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1aa15a;
}

.product-status-coming {
    color: #805c00;
    background: #fff0c4;
}

.product-logo-wrap {
    position: relative;
    height: 178px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 31px 22px 17px;
    overflow: hidden;
    border-bottom: 1px solid color-mix(in srgb, var(--product-accent) 32%, var(--border));
    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.98),
            rgba(255, 255, 255, 0.66) 56%,
            transparent 82%
        ),
        linear-gradient(135deg, var(--product-tint), rgba(255, 255, 255, 0.92));
}

.product-logo-wrap::before,
.product-logo-wrap::after {
    position: absolute;
    border: 1px solid var(--product-accent);
    border-radius: 50%;
    content: "";
    opacity: 0.22;
}

.product-logo-wrap::before {
    top: -58px;
    right: -52px;
    width: 125px;
    height: 125px;
}

.product-logo-wrap::after {
    bottom: -52px;
    left: -47px;
    width: 108px;
    height: 108px;
}

.product-logo {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 265px;
    max-height: 140px;
    display: block;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
}

.product-card:hover .product-logo {
    transform: scale(1.04);
}

.product-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px 20px 20px;
}

.product-category {
    display: block;
    color: var(--product-accent);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.75px;
    line-height: 1.35;
    text-transform: uppercase;
}

.product-card-content h3,
.product-card h3 {
    margin: 7px 0;
    color: var(--navy);
    font-size: 21px;
    line-height: 1.2;
}

.product-card-content > p,
.product-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.product-features {
    display: grid;
    gap: 7px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: var(--text);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
}

.product-features svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    margin-top: 1px;
    color: var(--product-accent);
    stroke-width: 3;
}

.product-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 16px;
    color: var(--product-accent);
    font-size: 12px;
    font-weight: 900;
}

.product-link svg {
    width: 15px;
    height: 15px;
    transition: transform 0.2s ease;
}

.product-link:hover svg {
    transform: translateX(4px);
}

.products-grid-upcoming .product-logo-wrap {
    height: 148px;
    padding: 28px 18px 14px;
}

.products-grid-upcoming .product-logo {
    max-width: 215px;
    max-height: 112px;
}

.products-grid-upcoming .product-card-content {
    padding: 15px 16px 17px;
}

.products-grid-upcoming .product-card-content h3 {
    margin: 6px 0;
    font-size: 18px;
}

.products-grid-upcoming .product-card-content > p {
    font-size: 12px;
    line-height: 1.5;
}

.products-grid-upcoming .product-features {
    gap: 6px;
    margin-top: 12px;
}

.products-grid-upcoming .product-features li {
    font-size: 10px;
}

.products-pipeline-message {
    position: relative;
    z-index: 1;
    width: fit-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 22px auto 0;
    padding: 13px 22px;
    border: 1px solid var(--border);
    border-radius: 13px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 22px rgba(7, 26, 51, 0.05);
    font-size: 13px;
    font-weight: 800;
}

.products-pipeline-message svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: var(--gold);
}

/* =========================================================
   WHY CHOOSE IT SPIDER WEBS
========================================================= */

.why-choose-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 95% 5%,
            rgba(229, 169, 30, 0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #061a32 0%,
            #0b294d 55%,
            #123d6d 100%
        );
}

.why-choose-section .container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.why-choose-heading {
    max-width: 820px;
    margin-bottom: 38px;
}

.why-choose-heading .section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #e5a91e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.why-choose-heading h2 {
    max-width: 760px;
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
}

.why-choose-heading p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.75;
}

/* Four boxes per row on desktop */

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.why-choose-card {
    position: relative;
    min-width: 0;
    min-height: 280px;
    padding: 24px;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.why-choose-card:hover {
    border-color: rgba(229, 169, 30, 0.7);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.25);
    transform: translateY(-6px);
}

.why-choose-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 27px;
}

.why-choose-number {
    color: rgba(255, 255, 255, 0.38);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.why-choose-icon {
    width: 50px;
    height: 50px;
    display: grid;
    flex: 0 0 50px;
    place-items: center;

    border: 1px solid rgba(229, 169, 30, 0.35);
    border-radius: 14px;

    color: #f4bd39;
    background: rgba(229, 169, 30, 0.13);
}

.why-choose-icon svg {
    width: 25px;
    height: 25px;
    stroke-width: 2;
}

.why-choose-card h3 {
    margin: 0 0 11px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.3;
}

.why-choose-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.7;
}

/* Highlight support card */

.why-choose-card-featured {
    border-color: rgba(229, 169, 30, 0.65);
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(229, 169, 30, 0.22),
            transparent 35%
        ),
        rgba(255, 255, 255, 0.09);
}

.why-choose-card-featured .why-choose-icon {
    color: #071c35;
    background: #f4bd39;
}

.support-points {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.support-points span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
    font-weight: 700;
}

.support-points svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    color: #f4bd39;
    stroke-width: 3;
}

/* Bottom confidence banner */

.why-choose-confidence {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;

    margin-top: 24px;
    padding: 25px 28px;

    border: 1px solid rgba(229, 169, 30, 0.45);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.why-choose-confidence-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;

    border-radius: 17px;
    color: #071c35;
    background: linear-gradient(135deg, #ffd66a, #e5a91e);
}

.why-choose-confidence-icon svg {
    width: 31px;
    height: 31px;
}

.why-choose-confidence-content span {
    color: #f4bd39;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.why-choose-confidence-content h3 {
    margin: 4px 0 6px;
    color: #ffffff;
    font-size: 23px;
}

.why-choose-confidence-content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.65;
}

.why-choose-confidence .button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;

    border-radius: 10px;

    color: #071c35;
    background: #f4bd39;

    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.why-choose-confidence .button:hover {
    background: #ffd66a;
}

.contact-section {
    padding: 90px 0;
    color: var(--white);
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(228, 167, 25, 0.22),
            transparent 30%
        ),
        var(--blue);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 70px;
    align-items: center;
}

.contact-section h2 {
    color: var(--white);
}

.contact-section p {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
}

.contact-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.button-light {
    color: var(--navy);
    background: var(--white);
}

.button-light:hover {
    background: var(--gold-light);
}

.contact-action span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
}

/* Footer */

.site-footer {
    padding: 75px 0 24px;
    color: rgba(255, 255, 255, 0.66);
    background: var(--navy-deep);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 55px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--white);
    font-size: 22px;
    font-weight: 900;
}

.footer-grid p {
    max-width: 380px;
    font-size: 13px;
}

.footer-grid h3 {
    margin: 0 0 17px;
    color: var(--white);
    font-size: 14px;
}

.footer-grid a:not(.footer-brand) {
    display: block;
    margin: 9px 0;
    font-size: 13px;
}

.footer-grid a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 55px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 12px;
}

/* Responsive */

@media (max-width: 1250px) {
    .container {
        width: min(calc(100% - 40px), var(--container));
    }

    .brand-symbol {
        width: 88px;
        height: 88px;
        padding: 6px;
        border-radius: 18px;
    }

    .brand-divider {
        height: 72px;
    }

    .brand-identity {
        width: 260px;
    }

    .brand-name {
        font-size: 31px;
        line-height: 1;
    }
    .brand-webs-row {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        margin-top: 6px;
    }

    .brand-webs-row span {
        width: 42px;
        height: 3px;
        flex: 0 0 42px;
    }

    .brand-webs-row strong {
        font-size: 19px;
        letter-spacing: 8px;
    }

    .brand-identity small {
        display: inline-block;
        width: fit-content;
        align-self: flex-start;

        margin-top: 7px;
        padding-top: 5px;

        font-size: 8px;
    }

    .main-navigation {
        gap: 25px;
    }

    .hero-grid {
        grid-template-columns:
            minmax(390px, 0.85fr)
            minmax(590px, 1.15fr);
        gap: 38px;
    }
}

@media (max-width: 1050px) {
    .header-inner {
        min-height: 102px;
    }

    .mobile-menu-button {
        display: block;
    }

    .main-navigation {
        position: absolute;
        top: 102px;
        right: 20px;
        left: 20px;
        display: none;
        padding: 17px;
        border: 1px solid rgba(255, 255, 255, 0.11);
        border-radius: 15px;
        background: var(--navy);
        box-shadow: var(--shadow);
    }

    .main-navigation.is-open {
        display: grid;
        gap: 4px;
    }

    .main-navigation a {
        padding: 12px;
        border-radius: 9px;
        font-size: 14px;
    }

    .main-navigation a::after {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .navigation-cta {
        margin-top: 6px;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .hero-content {
        max-width: 760px;
    }

    .hero-visual {
        width: 100%;
        max-width: 900px;
    }

    .achievement-grid,
    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .achievement-grid article:nth-child(2) {
        border-right: 0;
    }

    .achievement-grid article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .two-column,
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products-grid-live,
    .products-grid-upcoming {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-group-heading {
        align-items: flex-start;
    }

    .product-group-heading > p {
        max-width: 340px;
    }

    .products-grid-upcoming .product-logo-wrap {
        height: 160px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-choose-confidence {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .why-choose-confidence .button {
        grid-column: 1 / -1;
        width: fit-content;
        margin-left: 84px;
    }

}

@media (max-width: 700px) {
    html {
        scroll-padding-top: 85px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .header-inner {
        min-height: 82px;
        gap: 12px;
    }

    .brand {
        gap: 10px;
    }

    .brand-symbol {
        width: 58px;
        height: 58px;
        padding: 4px;
        border-radius: 13px;
    }

    .brand-divider {
        height: 50px;
    }

    .brand-identity {
        width: 184px;
    }

    .brand-name {
        font-size: 22px;
    }

    .brand-webs-row {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
        margin-top: 4px;
    }

    .about-content h2 {
        font-size: 35px;
        letter-spacing: -1.2px;
    }

    .about-content p {
        font-size: 16px;
    }

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

    .about-feature-card {
        min-height: auto;
    }
    .brand-webs-row span {
        width: 28px;
        height: 2px;
        flex: 0 0 28px;
    }

    .brand-webs-row strong {
        font-size: 13px;
        letter-spacing: 5px;
    }

    .brand-identity small {
        display: inline-block;
        width: fit-content;
        align-self: flex-start;

        margin-top: 5px;
        padding-top: 4px;

        font-size: 5px;
    }
    .main-navigation {
        top: 82px;
        right: 14px;
        left: 14px;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-grid {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .eyebrow {
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 39px;
        line-height: 1.1;
        letter-spacing: -1.3px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .dashboard-window {
        border-radius: 13px;
    }

    .dashboard-topbar {
        min-height: 48px;
        padding: 0 13px;
    }

    .dashboard-top-actions {
        gap: 8px;
    }

    .dashboard-top-actions > span:first-child {
        display: none;
    }

    .dashboard-layout {
        min-height: 340px;
        grid-template-columns: 45px minmax(0, 1fr);
    }

    .dashboard-sidebar {
        gap: 19px;
        padding: 14px 7px;
        font-size: 13px;
    }

    .dashboard-home-icon {
        width: 31px;
        height: 31px;
    }

    .dashboard-main {
        padding: 15px 9px;
    }

    .dashboard-heading h3 {
        font-size: 15px;
    }

    .dashboard-stat-cards {
        gap: 6px;
    }

    .dashboard-stat-cards article {
        padding: 9px 7px;
    }

    .dashboard-stat-cards small {
        font-size: 7px;
    }

    .dashboard-stat-cards strong {
        font-size: 14px;
    }

    .dashboard-stat-cards span {
        font-size: 7px;
    }

    .stat-card-icon {
        display: none;
    }

    .dashboard-lower-grid {
        grid-template-columns: 1fr;
    }

    .activity-panel {
        display: none;
    }

    .chart-area {
        height: 150px;
    }

    .achievement-grid,
    .card-grid,
    .product-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .achievement-grid article {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .section {
        padding: 78px 0;
    }

    .two-column {
        gap: 34px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 14px;
    }

    .service-icon svg {
        width: 24px;
        height: 24px;
    }

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

    .service-card h3 {
        margin-top: 34px;
    }
    .service-card,
    .product-card {
        min-height: auto;
        padding: 27px;
    }

    .contact-section {
        padding: 70px 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 4px;
    }

    .product-group-heading {
        display: block;
        margin-top: 40px;
    }

    .product-group-heading > div {
        align-items: center;
    }

    .product-group-heading > p {
        max-width: none;
        margin-top: 12px;
        text-align: left;
    }

    .products-grid-live,
    .products-grid-upcoming {
        grid-template-columns: 1fr;
    }

    .product-logo-wrap,
    .products-grid-upcoming .product-logo-wrap {
        height: 165px;
        padding: 31px 18px 15px;
    }

    .product-logo,
    .products-grid-upcoming .product-logo {
        max-width: 245px;
        max-height: 132px;
    }

    .product-card-content,
    .products-grid-upcoming .product-card-content {
        padding: 18px 19px;
    }

    .product-card-content h3,
    .products-grid-upcoming .product-card-content h3 {
        font-size: 20px;
    }

    .product-card-content > p,
    .products-grid-upcoming .product-card-content > p {
        font-size: 13px;
    }

    .product-features li,
    .products-grid-upcoming .product-features li {
        font-size: 11px;
    }

    .products-pipeline-message {
        align-items: flex-start;
        padding: 13px 16px;
        font-size: 12px;
    }

    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-section .container {
        width: min(100% - 28px, 1180px);
    }

    .why-choose-heading {
        margin-bottom: 28px;
    }

    .why-choose-heading h2 {
        font-size: 30px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-choose-card {
        min-height: auto;
        padding: 22px;
    }

    .why-choose-confidence {
        grid-template-columns: 1fr;
        gap: 17px;
        padding: 22px;
    }

    .why-choose-confidence-icon {
        width: 56px;
        height: 56px;
    }

    .why-choose-confidence .button {
        grid-column: auto;
        width: 100%;
        margin-left: 0;
        white-space: normal;
        text-align: center;
    }

}

@media (max-width: 420px) {
    .brand-identity {
        width: 157px;
    }

    .brand-name {
        font-size: 19px;
    }

    .brand-webs-row {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 5px;
    }

    .brand-webs-row span {
        width: 20px;
        height: 2px;
        flex: 0 0 20px;
    }

    .brand-webs-row strong {
        font-size: 11px;
        letter-spacing: 4px;
    }

    .brand-identity small {
        display: inline-block;
        width: fit-content;
        align-self: flex-start;

        margin-top: 4px;
        padding-top: 3px;

        font-size: 5px;
    }
    .brand-symbol {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }

    .brand-divider {
        height: 45px;
    }
    .hero-content h1 {
        font-size: 35px;
    }
}
/* =========================================================
   WHY CHOOSE — PREMIUM ANIMATIONS
========================================================= */

/* Animated gold heading line */

.why-choose-heading {
    position: relative;
    padding-bottom: 22px;
}

.why-choose-heading::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 4px;
    border-radius: 999px;
    content: "";
    background: linear-gradient(
        90deg,
        var(--gold-bright),
        var(--gold-light)
    );
    box-shadow: 0 0 18px rgba(246, 186, 49, 0.42);
    transform-origin: left center;
    animation: whyChooseHeadingLine 1.2s ease both;
}

@keyframes whyChooseHeadingLine {
    from {
        opacity: 0;
        transform: scaleX(0);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Card entrance animation */

.why-choose-card {
    opacity: 0;
    transform: translateY(30px);
}

.why-choose-card.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

/* Staggered card delays */

.why-choose-card:nth-child(1).is-visible {
    transition-delay: 0.05s;
}

.why-choose-card:nth-child(2).is-visible {
    transition-delay: 0.12s;
}

.why-choose-card:nth-child(3).is-visible {
    transition-delay: 0.19s;
}

.why-choose-card:nth-child(4).is-visible {
    transition-delay: 0.26s;
}

.why-choose-card:nth-child(5).is-visible {
    transition-delay: 0.05s;
}

.why-choose-card:nth-child(6).is-visible {
    transition-delay: 0.12s;
}

.why-choose-card:nth-child(7).is-visible {
    transition-delay: 0.19s;
}

.why-choose-card:nth-child(8).is-visible {
    transition-delay: 0.26s;
}

/* Premium hover glow */

.why-choose-card::before {
    position: absolute;
    z-index: 0;
    inset: -2px;
    border-radius: inherit;
    content: "";
    opacity: 0;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(246, 186, 49, 0.28),
            transparent 52%
        );
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.why-choose-card:hover::before {
    opacity: 1;
}

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

/* Icon movement */

.why-choose-icon {
    transition:
        transform 0.28s ease,
        color 0.28s ease,
        background 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.why-choose-card:hover .why-choose-icon {
    border-color: rgba(246, 186, 49, 0.75);
    background: rgba(246, 186, 49, 0.2);
    box-shadow: 0 10px 25px rgba(246, 186, 49, 0.17);
    transform: translateY(-3px) scale(1.08);
}

.why-choose-card-featured:hover .why-choose-icon {
    color: var(--navy-deep);
    background: var(--gold-light);
}

/* Icon SVG movement */

.why-choose-icon svg {
    transition: transform 0.28s ease;
}

.why-choose-card:hover .why-choose-icon svg {
    transform: rotate(-4deg) scale(1.05);
}

/* Featured support card glow */

.why-choose-card-featured {
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.22),
        0 0 28px rgba(246, 186, 49, 0.08);
}

.why-choose-card-featured:hover {
    box-shadow:
        0 26px 55px rgba(0, 0, 0, 0.3),
        0 0 38px rgba(246, 186, 49, 0.18);
}

/* Confidence banner entrance */

.why-choose-confidence {
    opacity: 0;
    transform: translateY(28px);
}

.why-choose-confidence.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.why-choose-confidence:hover {
    border-color: rgba(246, 186, 49, 0.8);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.24),
        0 0 32px rgba(246, 186, 49, 0.1);
}

/* Stronger consultation button */

.why-choose-confidence .button-primary {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 14px 30px rgba(246, 186, 49, 0.23),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.why-choose-confidence .button-primary::before {
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    content: "";
    background: linear-gradient(
        100deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.why-choose-confidence .button-primary:hover::before {
    left: 145%;
}

.why-choose-confidence .button-primary:hover {
    box-shadow:
        0 18px 38px rgba(246, 186, 49, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
    .why-choose-card,
    .why-choose-card.is-visible,
    .why-choose-confidence,
    .why-choose-confidence.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .why-choose-heading::after {
        animation: none;
    }

    .why-choose-card:hover .why-choose-icon,
    .why-choose-card:hover .why-choose-icon svg {
        transform: none;
    }
}

/*==================================================
  CONTACT SECTION
==================================================*/

.contact-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: linear-gradient(135deg, #173d72 0%, #214b80 100%);
}

.contact-section::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at top right,
            rgba(255,255,255,0.06),
            transparent 42%),
        radial-gradient(circle at bottom left,
            rgba(246,186,49,0.08),
            transparent 38%);
    pointer-events: none;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-heading {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.contact-heading h2 {
    margin: 18px 0 22px;
    color: #ffffff;
    font-size: clamp(2.5rem,5vw,4rem);
    line-height: 1.1;
}

.contact-heading p {
    max-width: 720px;
    margin: auto;
    color: rgba(255,255,255,.85);
    font-size: 1.15rem;
    line-height: 1.8;
}

/*==========================
Office Cards
==========================*/

.contact-office-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 35px;
    margin-top: 55px;
}

.contact-office-card {
    padding: 38px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
    transition: all .35s ease;
}

.contact-office-card:hover {
    transform: translateY(-8px);
    border-color: rgba(246,186,49,.55);
    box-shadow: 0 22px 45px rgba(0,0,0,.25);
}

.contact-office-card-head {
    border-color: rgba(246,186,49,.45);
}

.office-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #f6ba31;
    color: #0f2c56;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-office-card h3 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 1.7rem;
}

.office-address {
    margin-bottom: 28px;
    color: rgba(255,255,255,.9);
    line-height: 1.8;
}

.office-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f6ba31;
    font-weight: 600;
    text-decoration: none;
    transition: .25s;
}

.office-contact-link:hover {
    color: #ffffff;
}

.office-contact-link svg {
    width: 20px;
    height: 20px;
}

/*==========================
Email Button
==========================*/

.contact-email-row {
    margin-top: 60px;
    text-align: center;
}

.contact-email-row .button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 34px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
}

.contact-email-row svg {
    width: 20px;
    height: 20px;
}

/*==========================
Responsive
==========================*/

@media (max-width: 900px){

.contact-office-grid{
    grid-template-columns:1fr;
}

.contact-office-card{
    padding:30px;
}

.contact-heading{
    text-align:left;
}

.contact-email-row{
    text-align:left;
}

}

/* =========================================================
   IT SPIDER WEBS — FINAL FOOTER
========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.72);
    background:
        radial-gradient(
            circle at 5% 5%,
            rgba(246, 186, 49, 0.08),
            transparent 26%
        ),
        linear-gradient(
            145deg,
            #06162c 0%,
            #092442 52%,
            #06172d 100%
        );
}

.site-footer::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.18;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
    pointer-events: none;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(280px, 1.15fr)
        minmax(470px, 1.7fr);
    gap: 68px;
    padding-top: 68px;
    padding-bottom: 58px;
}

/* Company area */

.footer-company {
    align-self: start;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 68px;
    height: 68px;
    padding: 4px;
    border-radius: 17px;
    object-fit: contain;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.footer-logo > span {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-logo strong {
    color: #ffffff;
    font-size: 1.3rem;
    line-height: 1.2;
}

.footer-logo small {
    max-width: 235px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.67rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-company > p {
    max-width: 410px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.92rem;
    line-height: 1.8;
}

.footer-specialities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.footer-specialities span {
    padding: 7px 10px;
    border: 1px solid rgba(246, 186, 49, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(246, 186, 49, 0.06);
    font-size: 0.69rem;
    font-weight: 700;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 27px;
    color: var(--gold-bright) !important;
    font-size: 0.92rem;
    font-weight: 800;
    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.footer-cta:hover {
    gap: 14px;
    color: #ffffff !important;
}

.footer-cta svg {
    width: 17px;
    height: 17px;
}

/* Navigation */

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3,
.footer-offices > h3 {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 12px;
    color: #ffffff;
    font-size: 0.95rem;
}

.footer-column h3::after,
.footer-offices > h3::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    border-radius: 99px;
    content: "";
    background: var(--gold-bright);
}

.footer-column a {
    margin-bottom: 11px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    transition:
        color 0.22s ease,
        transform 0.22s ease;
}

.footer-column a:hover {
    color: var(--gold-bright);
    transform: translateX(4px);
}

.footer-column .footer-product-featured {
    color: var(--gold-bright);
    font-weight: 800;
}

/* Offices */

.footer-offices {
    grid-column: 1 / -1;
    padding-top: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-office-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.footer-office-card {
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.035);
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.footer-office-card:hover {
    border-color: rgba(246, 186, 49, 0.38);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.footer-office-head {
    border-color: rgba(246, 186, 49, 0.25);
}

.footer-office-label {
    display: inline-flex;
    margin-bottom: 13px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #0a2443;
    background: var(--gold-bright);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.footer-office-label-branch {
    color: var(--gold-bright);
    background: rgba(246, 186, 49, 0.11);
}

.footer-office-card h4 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 0.98rem;
}

.footer-office-card address {
    margin: 0 0 15px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    font-style: normal;
    line-height: 1.75;
}

.footer-office-card > a,
.footer-email-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.83rem;
    font-weight: 700;
    transition: color 0.22s ease;
}

.footer-office-card > a:hover,
.footer-email-link:hover {
    color: var(--gold-bright);
}

.footer-office-card svg,
.footer-email-link svg {
    width: 17px;
    height: 17px;
    color: var(--gold-bright);
}

.footer-email-link {
    margin-top: 22px;
}

/* Regional strip */

.footer-regions {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
}

.footer-regions-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-regions-inner > span {
    color: var(--gold-bright);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.footer-regions-inner > div {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-regions strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
}

.footer-regions svg {
    width: 16px;
    height: 16px;
    color: var(--gold-bright);
}

/* Bottom bar */

.footer-bottom-bar {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.13);
}

.footer-bottom {
    min-height: 70px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 26px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.71rem;
}

.footer-bottom > p:last-child {
    text-align: right;
}

.footer-bottom p a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

.footer-bottom p a:hover {
    color: var(--gold-bright);
}

.footer-legal {
    display: flex;
    gap: 18px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.71rem;
}

.footer-legal a:hover {
    color: var(--gold-bright);
}

/* Tablet */

@media (max-width: 1050px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .footer-company {
        max-width: 640px;
    }
}

/* Small tablet */

@media (max-width: 760px) {
    .footer-navigation {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px;
    }

    .footer-office-grid {
        grid-template-columns: 1fr;
    }

    .footer-regions-inner {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 21px;
        padding-bottom: 21px;
    }

    .footer-regions-inner > div {
        justify-content: flex-start;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 11px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer-bottom > p:last-child {
        text-align: left;
    }
}

/* Mobile */

@media (max-width: 520px) {
    .footer-content {
        gap: 40px;
        padding-top: 52px;
        padding-bottom: 46px;
    }

    .footer-logo img {
        width: 58px;
        height: 58px;
    }

    .footer-logo strong {
        font-size: 1.12rem;
    }

    .footer-logo small {
        font-size: 0.58rem;
    }

    .footer-navigation {
        grid-template-columns: 1fr;
    }

    .footer-office-card {
        padding: 22px;
    }

    .footer-regions-inner > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .footer-legal {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

/* =========================================================
   FINAL FOOTER POLISH
========================================================= */

/* Slightly reduce overall footer height */

.footer-content {
    gap: 55px;
    padding-top: 58px;
    padding-bottom: 48px;
}

/* Make the company logo and name clearer */

.footer-logo img {
    width: 72px;
    height: 72px;
}

.footer-logo strong {
    font-size: 1.4rem;
}

.footer-logo small {
    font-size: 0.72rem;
}

/* Improve company text readability */

.footer-company > p {
    font-size: 0.96rem;
    line-height: 1.75;
}

/* Make navigation links easier to read */

.footer-column h3,
.footer-offices > h3 {
    font-size: 1rem;
}

.footer-column a {
    margin-bottom: 12px;
    font-size: 0.88rem;
}

/* Improve speciality badges */

.footer-specialities span {
    padding: 7px 12px;
    font-size: 0.72rem;
}

/* Office card refinements */

.footer-offices {
    padding-top: 34px;
}

.footer-office-card {
    padding: 25px 28px;
}

.footer-office-card h4 {
    font-size: 1.02rem;
}

.footer-office-card address {
    font-size: 0.87rem;
    line-height: 1.7;
}

.footer-office-card > a,
.footer-email-link {
    font-size: 0.88rem;
}

/* Reduce space between office cards and email */

.footer-email-link {
    margin-top: 18px;
}

/* Make regional coverage more readable */

.footer-regions-inner {
    min-height: 66px;
}

.footer-regions-inner > span {
    font-size: 0.74rem;
}

.footer-regions strong {
    font-size: 0.82rem;
}

/* Improve bottom legal bar */

.footer-bottom {
    min-height: 64px;
}

.footer-bottom p,
.footer-legal a {
    font-size: 0.75rem;
}