:root {
    --ink: #102033;
    --muted: #627084;
    --line: #dfe6ef;
    --paper: #ffffff;
    --surface: #f5f7fb;
    --navy: #111d2e;
    --blue: #2454a6;
    --teal: #0e9384;
    --green: #16a34a;
    --amber: #f59e0b;
    --coral: #ef6f59;
    --shadow: 0 18px 48px rgba(16, 32, 51, 0.12);
    --radius: 8px;
    --header-height: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    letter-spacing: 0;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    transform: translateY(-160%);
    background: var(--paper);
    color: var(--ink);
    padding: 10px 14px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

.container.narrow {
    width: min(840px, calc(100% - 40px));
    text-align: center;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(223, 230, 239, 0.82);
    backdrop-filter: blur(16px);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 28px rgba(16, 32, 51, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.site-nav-wrap {
    width: min(1160px, calc(100% - 40px));
    height: var(--header-height);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.brand-mark {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.brand strong,
.footer-brand span {
    display: block;
    font-size: 18px;
    line-height: 1;
    color: var(--ink);
}

.brand small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.site-nav a {
    padding: 10px 12px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--blue);
    background: rgba(36, 84, 166, 0.08);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.link-muted {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.link-muted:hover {
    color: var(--blue);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
    color: #ffffff;
    background: var(--blue);
    box-shadow: 0 14px 30px rgba(36, 84, 166, 0.22);
}

.btn-primary:hover {
    background: #1e478f;
}

.btn-light {
    color: var(--ink);
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline {
    color: var(--blue);
    background: #ffffff;
    border-color: rgba(36, 84, 166, 0.28);
}

.btn-outline:hover {
    border-color: var(--blue);
    box-shadow: 0 12px 28px rgba(36, 84, 166, 0.12);
}

.btn-small {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
}

.hero {
    min-height: 690px;
    padding: calc(var(--header-height) + 74px) 0 72px;
    color: #ffffff;
    background-image: linear-gradient(90deg, rgba(17, 29, 46, 0.92), rgba(17, 29, 46, 0.68) 52%, rgba(14, 147, 132, 0.58)), var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
    gap: 54px;
    align-items: center;
}

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

.eyebrow {
    margin: 0 0 12px;
    color: var(--teal);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero .eyebrow,
.page-hero .eyebrow,
.cta-band .eyebrow {
    color: #6ee7d8;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.08;
    letter-spacing: 0;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 86px);
    max-width: 720px;
}

.hero-lead {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 12px;
    max-width: 620px;
    margin: 40px 0 0;
}

.hero-metrics div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
}

.hero-metrics dt {
    font-size: 28px;
    font-weight: 900;
}

.hero-metrics dd {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
}

.service-preview,
.pos-preview {
    width: 100%;
    min-height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
    padding: 24px;
}

.preview-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.preview-top span {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 800;
}

.preview-top strong {
    font-size: 26px;
}

.preview-bars {
    height: 190px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: end;
    gap: 12px;
    padding: 30px 0;
}

.preview-bars span {
    min-height: 38px;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, #6ee7d8, #0e9384);
}

.preview-table {
    display: grid;
    gap: 10px;
}

.preview-table div,
.ops-row,
.ledger-row,
.summary-line {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.preview-table div {
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.preview-table span {
    color: rgba(255, 255, 255, 0.72);
}

.preview-table strong {
    color: #8bf2a3;
}

.preview-table .warn {
    color: #ffd27a;
}

.strip {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
}

.strip-grid span {
    min-height: 76px;
    display: grid;
    place-items: center;
    color: var(--muted);
    font-weight: 900;
    text-align: center;
}

.section {
    padding: 86px 0;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading.compact {
    margin-bottom: 30px;
}

.section-heading h2,
.split h2,
.cta-band h2,
.form-heading h2 {
    font-size: clamp(30px, 4vw, 48px);
}

.section-heading p:not(.eyebrow),
.split p,
.page-hero p,
.feature-card p,
.principle-grid p,
.steps p,
.timeline p,
.contact-side p,
.summary-note {
    color: var(--muted);
}

.feature-grid,
.pricing-grid,
.principle-grid,
.steps,
.timeline {
    display: grid;
    gap: 18px;
}

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

.feature-card,
.price-card,
.principle-grid article,
.steps article,
.timeline article,
.form-panel,
.contact-side article,
.summary-panel,
.ops-panel,
.ledger-panel {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 26px rgba(16, 32, 51, 0.06);
}

.feature-card {
    padding: 26px;
}

.service-name-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-name-grid .feature-card {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
}

.service-name-grid .feature-card h3 {
    margin-top: 0;
}

.feature-card h3,
.steps h3,
.timeline h3,
.principle-grid h3 {
    margin-top: 16px;
    font-size: 20px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 0;
    position: relative;
    background: transparent !important;
    box-shadow: none !important;
}

.feature-icon::before,
.feature-icon::after {
    content: "";
    position: absolute;
}

.feature-icon.sale {
    background: rgba(36, 84, 166, 0.11);
}

.feature-icon.sale::before {
    width: 22px;
    height: 18px;
    border: 3px solid var(--blue);
    border-top-width: 6px;
    border-radius: 4px;
}

.feature-icon.stock {
    background: rgba(245, 158, 11, 0.14);
}

.feature-icon.stock::before {
    width: 21px;
    height: 21px;
    border: 3px solid var(--amber);
    transform: rotate(45deg);
}

.feature-icon.books {
    background: rgba(14, 147, 132, 0.12);
}

.feature-icon.books::before {
    width: 23px;
    height: 28px;
    border: 3px solid var(--teal);
    border-radius: 4px;
}

.feature-icon.books::after {
    width: 14px;
    height: 3px;
    background: var(--teal);
    top: 18px;
    left: 15px;
}

.feature-icon.users {
    background: rgba(239, 111, 89, 0.13);
}

.feature-icon.users::before {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--coral);
    top: 10px;
    left: 16px;
}

.feature-icon.users::after {
    width: 24px;
    height: 12px;
    border-radius: 12px 12px 3px 3px;
    background: var(--coral);
    bottom: 9px;
    left: 10px;
}

.feature-icon.report {
    background: rgba(22, 163, 74, 0.12);
}

.feature-icon.report::before {
    width: 26px;
    height: 22px;
    border-left: 3px solid var(--green);
    border-bottom: 3px solid var(--green);
    left: 10px;
    bottom: 10px;
}

.feature-icon.report::after {
    width: 22px;
    height: 12px;
    border-top: 3px solid var(--green);
    border-right: 3px solid var(--green);
    transform: skewY(-28deg);
    right: 9px;
    top: 15px;
}

.feature-icon.lock {
    background: rgba(36, 84, 166, 0.11);
}

.feature-icon.lock::before {
    width: 24px;
    height: 18px;
    border-radius: 4px;
    background: var(--blue);
    bottom: 9px;
    left: 10px;
}

.feature-icon.lock::after {
    width: 16px;
    height: 14px;
    border: 3px solid var(--blue);
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
    top: 9px;
    left: 14px;
}

.feature-icon.web {
    background: rgba(36, 84, 166, 0.11);
}

.feature-icon.web::before {
    width: 24px;
    height: 18px;
    border: 3px solid var(--blue);
    border-radius: 4px;
    left: 10px;
    top: 12px;
}

.feature-icon.web::after {
    width: 18px;
    height: 3px;
    background: var(--blue);
    left: 13px;
    bottom: 10px;
}

.feature-icon.code {
    background: rgba(245, 158, 11, 0.14);
}

.feature-icon.code::before,
.feature-icon.code::after {
    width: 12px;
    height: 12px;
    border-left: 3px solid var(--amber);
    border-top: 3px solid var(--amber);
    top: 16px;
}

.feature-icon.code::before {
    left: 11px;
    transform: rotate(-45deg);
}

.feature-icon.code::after {
    right: 11px;
    transform: rotate(135deg);
}

.feature-icon.cloud {
    background: rgba(14, 147, 132, 0.12);
}

.feature-icon.cloud::before {
    width: 28px;
    height: 16px;
    border-radius: 14px;
    background: var(--teal);
    left: 8px;
    top: 18px;
}

.feature-icon.cloud::after {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--teal);
    left: 15px;
    top: 12px;
}

.feature-icon.shield {
    background: rgba(239, 111, 89, 0.13);
}

.feature-icon.shield::before {
    width: 24px;
    height: 28px;
    clip-path: polygon(50% 0, 88% 14%, 82% 70%, 50% 100%, 18% 70%, 12% 14%);
    background: var(--coral);
    left: 10px;
    top: 8px;
}

.feature-icon.network {
    background: rgba(22, 163, 74, 0.12);
}

.feature-icon.network::before {
    width: 26px;
    height: 18px;
    border: 3px solid var(--green);
    border-radius: 4px;
    left: 9px;
    top: 9px;
}

.feature-icon.network::after {
    width: 18px;
    height: 3px;
    background: var(--green);
    left: 13px;
    bottom: 10px;
}

.feature-icon.camera {
    background: rgba(36, 84, 166, 0.11);
}

.feature-icon.camera::before {
    width: 26px;
    height: 18px;
    background: var(--blue);
    border-radius: 5px;
    left: 8px;
    top: 14px;
}

.feature-icon.camera::after {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    left: 17px;
    top: 19px;
}

.feature-icon.mobile {
    background: rgba(245, 158, 11, 0.14);
}

.feature-icon.mobile::before {
    width: 18px;
    height: 28px;
    border: 3px solid var(--amber);
    border-radius: 6px;
    left: 13px;
    top: 8px;
}

.feature-icon.mobile::after {
    width: 6px;
    height: 3px;
    border-radius: 999px;
    background: var(--amber);
    left: 19px;
    bottom: 10px;
}

.feature-icon.managed {
    background: rgba(14, 147, 132, 0.12);
}

.feature-icon.managed::before {
    width: 24px;
    height: 24px;
    border: 3px solid var(--teal);
    border-radius: 50%;
    left: 10px;
    top: 10px;
}

.feature-icon.managed::after {
    width: 16px;
    height: 16px;
    border: 3px solid var(--teal);
    border-radius: 4px;
    left: 14px;
    top: 14px;
    transform: rotate(45deg);
}

.band {
    background: #ffffff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    gap: 50px;
    align-items: center;
}

.check-list {
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--ink);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 8px;
    border-left: 3px solid var(--teal);
    border-bottom: 3px solid var(--teal);
    transform: rotate(-45deg);
}

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

.ops-panel,
.ledger-panel {
    padding: 20px;
}

.ops-row,
.ledger-row {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.ops-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.ops-row strong {
    color: var(--teal);
}

.ledger-row span {
    width: 33.33%;
}

.ledger-row span:not(:first-child) {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.ops-head,
.ledger-head {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ops-total,
.ledger-total {
    margin-top: 18px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-radius: var(--radius);
    color: #ffffff;
    background: var(--teal);
}

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

.steps article,
.timeline article,
.principle-grid article {
    padding: 28px;
}

.steps span,
.timeline span {
    color: var(--teal);
    font-size: 13px;
    font-weight: 900;
}

.cta-band {
    padding: 54px 0;
    color: #ffffff;
    background: linear-gradient(90deg, var(--navy), #18385c 56%, #0d6f68);
}

.cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.partners-section {
    padding: 58px 0;
    background: #ffffff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.partners-title {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.partner-logo-wall {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.partners-static {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: nowrap;
    padding-inline: 12px;
}

.partners-marquee {
    width: 100%;
    overflow: hidden;
}

.partners-track {
    display: flex;
    width: max-content;
    gap: 22px;
    will-change: transform;
    animation: partnerMarqueeRtl 34s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    width: 88px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--surface);
    font-weight: 900;
}

.partner-logo i {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0;
}

.partner-logo img {
    width: 60px;
    height: 34px;
    object-fit: contain;
    display: block;
}

@keyframes partnerMarqueeRtl {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

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

.testimonial-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(16, 32, 51, 0.06);
}

.rating {
    color: var(--amber);
    letter-spacing: 0.08em;
    font-size: 14px;
    margin-bottom: 16px;
}

.testimonial-card p {
    margin: 0;
    color: var(--muted);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.testimonial-author span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--blue);
    background: rgba(36, 84, 166, 0.1);
    font-size: 12px;
    font-weight: 900;
}

.testimonial-author strong,
.testimonial-author small {
    display: block;
}

.testimonial-author small {
    margin-top: 2px;
    color: var(--muted);
}

.page-hero {
    padding: calc(var(--header-height) + 70px) 0 78px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--navy), #18385c 58%, #0d6f68);
}

.about-hero {
    background-image: linear-gradient(90deg, rgba(17, 29, 46, 0.92), rgba(17, 29, 46, 0.78)), var(--hero-image);
    background-size: cover;
    background-position: center;
}

.page-hero h1 {
    font-size: clamp(38px, 6vw, 66px);
}

.page-hero p:not(.eyebrow) {
    max-width: 720px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
}

.billing-toggle {
    width: max-content;
    max-width: 100%;
    margin: 28px auto 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
}

.billing-toggle button {
    width: 58px;
    height: 32px;
    padding: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
}

.billing-toggle button span {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    transition: transform 0.2s ease;
}

.billing-toggle button[aria-pressed="true"] span {
    transform: translateX(26px);
}

.billing-toggle strong {
    color: #9cf2a9;
    font-size: 12px;
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.price-card {
    position: relative;
    padding: 28px;
}

.price-card.featured {
    border-color: rgba(36, 84, 166, 0.55);
    box-shadow: var(--shadow);
}

.tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--coral);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.price-head p {
    margin: 0 0 12px;
    color: var(--muted);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price-head h2 {
    display: flex;
    align-items: end;
    gap: 5px;
    font-size: 48px;
}

.price-head h2::before {
    content: "$";
    font-size: 24px;
    color: var(--muted);
    align-self: flex-start;
    margin-top: 8px;
}

.price-head small {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 14px;
}

.price-note {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.price-card .btn {
    margin-top: 28px;
}

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

.included-grid span {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    font-weight: 800;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    padding: 20px;
    border: 0;
    background: #ffffff;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.faq-item button::after {
    content: "+";
    color: var(--blue);
    font-size: 22px;
    line-height: 1;
}

.faq-item.is-open button::after {
    content: "-";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.24s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}

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

.stat-grid div {
    min-height: 136px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.stat-grid strong {
    display: block;
    color: var(--blue);
    font-size: 40px;
    line-height: 1;
}

.stat-grid span {
    display: block;
    color: var(--muted);
    font-weight: 800;
}

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

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

.contact-grid,
.register-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
    gap: 30px;
    align-items: start;
}

.form-panel {
    padding: 30px;
}

.form-heading {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-grid input,
.contact-grid select,
.contact-grid textarea {
    font-weight: 400;
}

.feedback-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    gap: 22px;
    align-items: start;
}

.feedback-panel {
    padding: 24px;
}

.feedback-note {
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 13px;
}

.feedback-form-title {
    font-size: 18px;
}

.feedback-main-title {
    font-size: 15px !important;
    line-height: 1.35;
}

.feedback-panel input,
.feedback-panel select,
.feedback-panel textarea {
    font-size: 14px;
    font-weight: 400;
}

.feedback-alert {
    padding: 14px 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-weight: 700;
}

.feedback-alert-success {
    color: #166534;
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.22);
}

.feedback-alert-error {
    color: #991b1b;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.22);
}

.feedback-field-error {
    color: #dc2626;
    font-size: 13px;
    font-weight: 700;
}

.feedback-empty {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--muted);
}

.feedback-stars {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.feedback-star {
    margin: 0;
    cursor: pointer;
    position: relative;
    display: block;
    gap: 0;
    margin-bottom: 0;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.feedback-star input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.feedback-star span {
    min-height: 58px;
    display: grid;
    place-items: center;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--muted);
    font-size: 18px;
    font-weight: 900;
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.feedback-star input:checked + span {
    border-color: var(--blue);
    background: rgba(36, 84, 166, 0.08);
    color: var(--blue);
}

.feedback-star:hover span {
    transform: translateY(-1px);
}

.feedback-info {
    display: grid;
    gap: 14px;
}

.feedback-info article {
    padding: 24px;
}

.feedback-info h2 {
    margin-bottom: 10px;
    font-size: 20px;
}

.feedback-reviews {
    display: grid;
    gap: 16px;
}

.compact-row {
    grid-template-columns: repeat(2, minmax(120px, 200px));
}

label {
    display: grid;
    gap: 7px;
    margin-bottom: 16px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--ink);
    padding: 13px 14px;
    outline: 0;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(36, 84, 166, 0.12);
}

.contact-side {
    display: grid;
    gap: 14px;
}

.contact-side article {
    padding: 24px;
}

.contact-side h2 {
    font-size: 20px;
}

.contact-side p {
    margin: 10px 0 0;
}

.choice-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.choice-card {
    margin: 0;
    cursor: pointer;
}

.choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-card span {
    min-height: 94px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 16px;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.choice-card strong {
    font-size: 18px;
}

.choice-card small {
    color: var(--muted);
}

.choice-card input:checked + span {
    border-color: var(--blue);
    background: rgba(36, 84, 166, 0.08);
}

.addon-fieldset {
    margin: 4px 0 20px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.addon-fieldset legend {
    padding: 0 8px;
    font-weight: 900;
}

.addon-fieldset label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 10px 0 0;
    color: var(--ink);
    font-weight: 700;
}

.addon-fieldset input {
    width: 18px;
    height: 18px;
    accent-color: var(--blue);
}

.addon-fieldset span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    margin-left: auto;
}

.summary-panel {
    position: sticky;
    top: calc(var(--header-height) + 22px);
    padding: 26px;
}

.summary-panel h2 {
    margin-bottom: 22px;
    font-size: 28px;
}

.summary-line {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.summary-line span {
    color: var(--muted);
}

.summary-total {
    margin-top: 22px;
    padding: 18px;
    border-radius: var(--radius);
    background: var(--navy);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.summary-total strong {
    font-size: 28px;
}

.summary-note {
    margin-bottom: 0;
    font-size: 13px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 34px;
}

.footer-brand .footer-logo {
    width: 220px;
    height: 56px;
    object-fit: contain;
    object-position: left center;
}

.site-footer .footer-brand {
    margin-bottom: 0;
}

.site-footer .footer-brand + p {
    margin-top: 0;
}

.footer-brand span {
    color: #ffffff;
}

.site-footer p {
    max-width: 380px;
    color: rgba(255, 255, 255, 0.62);
}

.site-footer h2 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-footer a:not(.footer-brand) {
    display: block;
    width: fit-content;
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.66);
}

.site-footer a:hover {
    color: #ffffff;
}

.footer-contact {
    margin: 8px 0 0;
}

.footer-bottom {
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 13px;
}

.toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    max-width: min(360px, calc(100% - 36px));
    padding: 14px 16px;
    border-radius: var(--radius);
    color: #ffffff;
    background: var(--teal);
    box-shadow: var(--shadow);
    transform: translateY(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Old Itekza front theme shell */
.site-header {
    background: rgba(10, 22, 40, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.36);
}

.brand strong,
.footer-brand span {
    color: #ffffff;
}

.brand small {
    color: var(--teal);
}

.site-nav a {
    color: rgba(255, 255, 255, 0.62);
    background: transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: #6ee7d8;
    background: transparent;
}

.site-nav a.is-active {
    box-shadow: inset 0 -2px 0 #6ee7d8;
}

.link-muted {
    color: rgba(255, 255, 255, 0.62);
}

.link-muted:hover {
    color: #6ee7d8;
}

.nav-toggle {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.07);
}

.nav-toggle span {
    background: #ffffff;
}

.btn-primary {
    background: #1a56db;
    box-shadow: 0 14px 30px rgba(26, 86, 219, 0.26);
}

.btn-primary:hover {
    background: #1e63f0;
}

.page-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1a3a6b 60%, #0d2e5a 100%);
}

.page-hero.about-hero {
    background-image: linear-gradient(135deg, rgba(10, 22, 40, 0.9), rgba(26, 58, 107, 0.78)), var(--hero-image);
}

.hero-slider {
    position: relative;
    min-height: 720px;
    color: #ffffff;
    overflow: hidden;
    background: var(--navy);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 70px) 0 116px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.36s ease, visibility 0.36s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide::before,
.hero-slide::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(78px);
    pointer-events: none;
}

.hero-slide::before {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -90px;
    background: rgba(97, 218, 251, 0.18);
}

.hero-slide::after {
    width: 280px;
    height: 280px;
    left: 8%;
    bottom: 110px;
    background: rgba(255, 255, 255, 0.09);
}

.hero-slide-blue {
    background: linear-gradient(135deg, #0a1628 0%, #1a3a6b 58%, #0d2e5a 100%);
}

.hero-slide-teal {
    background: linear-gradient(135deg, #0d1f3c 0%, #0a3d52 58%, #00607a 100%);
}

.hero-slide-purple {
    background: linear-gradient(135deg, #1a0a28 0%, #2e1065 58%, #1a3a6b 100%);
}

.hero-slide-green {
    background: linear-gradient(135deg, #0a1628 0%, #0d3d2e 58%, #0a5240 100%);
}

.hero-slide-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.45fr);
    align-items: center;
    gap: 42px;
}

.hero-slide-copy {
    max-width: 760px;
}

.hero-slide-copy h1 {
    font-size: clamp(42px, 6vw, 76px);
}

.hero-slide-copy p:not(.eyebrow) {
    max-width: 610px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
}

.hero-service-icon {
    justify-self: end;
    width: min(300px, 32vw);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    font-size: clamp(46px, 7vw, 92px);
    font-weight: 900;
    text-transform: uppercase;
}

.hero-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.hero-arrow::before {
    content: "";
    position: absolute;
    top: 15px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
}

.hero-arrow-prev {
    left: 24px;
}

.hero-arrow-prev::before {
    left: 17px;
    transform: rotate(-45deg);
}

.hero-arrow-next {
    right: 24px;
}

.hero-arrow-next::before {
    right: 17px;
    transform: rotate(135deg);
}

.hero-slider-footer {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.78);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
}

.hero-slider-footer-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.slider-dot.is-active {
    width: 26px;
    background: var(--teal);
}

.hero-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
}

.hero-stats div {
    padding: 0 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats dt {
    font-weight: 900;
    font-size: 18px;
}

.hero-stats dd {
    margin: 2px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.hero-counter {
    color: rgba(255, 255, 255, 0.38);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

@media (max-width: 980px) {
    .site-nav-wrap {
        gap: 14px;
    }

    .nav-toggle {
        display: inline-flex;
        order: 3;
    }

    .site-nav {
        position: absolute;
        top: var(--header-height);
        left: 20px;
        right: 20px;
        display: none;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #ffffff;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 13px 12px;
    }

    .nav-actions {
        margin-left: auto;
    }

    .hero-grid,
    .hero-slide-inner,
    .split,
    .contact-grid,
    .register-grid {
        grid-template-columns: 1fr;
    }

    .service-preview,
    .pos-preview,
    .summary-panel {
        position: static;
    }

    .feature-grid,
    .service-name-grid,
    .pricing-grid,
    .principle-grid,
    .testimonial-grid,
    .partner-logo-wall,
    .timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 700px) {
    :root {
        --header-height: 68px;
    }

    .container,
    .container.narrow,
    .site-nav-wrap {
        width: min(100% - 28px, 1160px);
    }

    .brand strong {
        font-size: 16px;
    }

    .brand small,
    .link-muted {
        display: none;
    }

    .btn-small {
        padding-inline: 12px;
    }

    .hero {
        min-height: 0;
        padding: calc(var(--header-height) + 46px) 0 46px;
    }

    .hero-slider {
        min-height: 660px;
    }

    .hero-slide {
        padding: calc(var(--header-height) + 38px) 0 140px;
    }

    .hero-service-icon,
    .hero-counter {
        display: none;
    }

    .hero-slider-footer-inner {
        min-height: auto;
        padding: 14px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-stats {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-stats div {
        padding: 8px 0;
        border-left: 0;
    }

    .hero-arrow {
        display: none;
    }

    .hero h1 {
        font-size: clamp(42px, 15vw, 58px);
    }

    .hero-metrics,
    .strip-grid,
    .feature-grid,
    .service-name-grid,
    .pricing-grid,
    .principle-grid,
    .testimonial-grid,
    .partner-logo-wall,
    .timeline,
    .stat-grid,
    .included-grid,
    .form-row,
    .choice-group,
    .two-column {
        grid-template-columns: 1fr;
    }

    .partners-static {
        gap: 10px;
        padding-inline: 0;
    }

    .partner-logo {
        width: 64px;
        height: 48px;
        border-radius: 6px;
    }

    .partner-logo i {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }

    .partner-logo img {
        width: 46px;
        height: 26px;
    }

    .section {
        padding: 62px 0;
    }

    .page-hero {
        padding: calc(var(--header-height) + 48px) 0 54px;
    }

    .billing-toggle {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-grid,
    .footer-bottom,
    .ops-total,
    .ledger-total,
    .summary-total {
        align-items: stretch;
        flex-direction: column;
    }

    .cta-actions,
    .hero-actions {
        width: 100%;
    }

    .cta-actions .btn,
    .hero-actions .btn {
        flex: 1 1 210px;
    }
}

@media (max-width: 980px) {
    .site-nav {
        background: rgba(10, 22, 40, 0.98);
        border-color: rgba(255, 255, 255, 0.12);
    }
}

/* ==========================================================
   INDEX PAGE REDESIGN � 2026
   ========================================================== */

/* -- Hero SaaS ------------------------------------------- */
.hero-saas {
    position: relative;
    min-height: 760px;
    padding: calc(var(--header-height) + 88px) 0 88px;
    color: #ffffff;
    background: linear-gradient(135deg, #060d1a 0%, #0f1f3d 45%, #071e3a 75%, #0a2b2b 100%);
    overflow: hidden;
}

.hs-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hs-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.hs-orb-1 { width: 520px; height: 520px; top: -150px; right: -100px; background: radial-gradient(circle, rgba(26,86,219,.3) 0%, transparent 68%); }
.hs-orb-2 { width: 380px; height: 380px; bottom: -80px; left: 6%;  background: radial-gradient(circle, rgba(14,147,132,.24) 0%, transparent 68%); }
.hs-orb-3 { width: 260px; height: 260px; top: 38%; left: 36%;      background: radial-gradient(circle, rgba(97,218,251,.14) 0%, transparent 68%); }

.hs-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
    background-size: 56px 56px;
}

.hs-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 56px;
}

.hs-copy { max-width: 720px; }

.hs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid rgba(110,231,216,.35);
    border-radius: 999px;
    background: rgba(14,147,132,.15);
    color: #6ee7d8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hs-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 10px #4ade80;
    animation: idxBadgePulse 2s ease-in-out infinite;
}

@keyframes idxBadgePulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: .35; }
}

.hs-copy h1 {
    font-size: clamp(42px, 5.4vw, 74px);
    line-height: 1.06;
    margin: 0 0 24px;
}

.hs-gradient-text {
    background: linear-gradient(90deg, #6ee7d8 0%, #60a5fa 55%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hs-lead {
    max-width: 630px;
    color: rgba(255,255,255,.72);
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.65;
    margin: 0 0 34px;
}

.hs-btn-ghost {
    color: rgba(255,255,255,.9);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(8px);
}

.hs-btn-ghost:hover {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.42);
}

.hs-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 46px;
    max-width: 540px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 12px;
    overflow: hidden;
}

.hs-metrics > div {
    flex: 1 1 120px;
    padding: 18px 20px;
    background: rgba(255,255,255,.06);
    border-right: 1px solid rgba(255,255,255,.1);
}

.hs-metrics > div:last-child { border-right: 0; }

.hs-metrics strong {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.hs-metrics span {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,.5);
    margin-top: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* Hero visual / panel */
.hs-visual { position: relative; }

.hs-panel {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 16px;
    backdrop-filter: blur(22px);
    box-shadow: 0 36px 90px rgba(0,0,0,.44);
    overflow: hidden;
}

.hs-panel-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 13px 18px;
    background: rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.hs-pb-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.hs-pb-dot.red   { background: #f87171; }
.hs-pb-dot.amber { background: #fbbf24; }
.hs-pb-dot.green { background: #4ade80; }

.hs-pb-title {
    margin-left: 10px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.45);
    letter-spacing: .05em;
}

.hs-panel-body { padding: 22px; }

.hs-monitor-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.hs-mr-label {
    width: 110px;
    flex-shrink: 0;
    font-size: 12px;
    color: rgba(255,255,255,.62);
    font-weight: 600;
}

.hs-mr-track {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,.1);
    border-radius: 999px;
    overflow: hidden;
}

.hs-mr-track span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #0e9384, #6ee7d8);
    border-radius: 999px;
    animation: idxBarFill 1.6s ease both;
}

@keyframes idxBarFill {
    from { width: 0 !important; }
}

.hs-mr-val {
    width: 56px;
    text-align: right;
    font-size: 12px;
    font-weight: 800;
    font-family: monospace;
    color: #4ade80;
}

.hs-sep {
    border: none;
    border-top: 1px solid rgba(255,255,255,.1);
    margin: 16px 0;
}

.hs-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.hs-tag {
    padding: 4px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
}

.hs-blue   { background: rgba(36,84,166,.35);  color: #93c5fd; }
.hs-teal   { background: rgba(14,147,132,.35); color: #6ee7d8; }
.hs-green  { background: rgba(22,163,74,.3);   color: #86efac; }
.hs-purple { background: rgba(124,58,237,.3);  color: #c4b5fd; }
.hs-amber  { background: rgba(245,158,11,.3);  color: #fde68a; }

.hs-alert-bar {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 14px;
    background: rgba(22,163,74,.14);
    border: 1px solid rgba(74,222,128,.28);
    border-radius: 9px;
    font-size: 12px;
    font-weight: 700;
    color: #86efac;
}

.hs-alert-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    animation: idxBadgePulse 1.6s ease-in-out infinite;
}

.hs-float {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(18px);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 28px rgba(0,0,0,.32);
    animation: idxFloatBob 4s ease-in-out infinite;
}

.hs-float-1 { bottom: 28px; left: -24px; animation-delay: .8s; }
.hs-float-2 { top: -18px;   right: -20px; }

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

/* -- Section light -------------------------------------- */
.idx-section-light { background: var(--surface); }

/* -- Services grid -------------------------------------- */
.idx-svc-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.idx-svc-card { grid-column: span 2; }
.idx-svc-card:nth-child(4) { grid-column: 2 / 4; }
.idx-svc-card:nth-child(5) { grid-column: 4 / 6; }

.idx-svc-card {
    position: relative;
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(16,32,51,.06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    overflow: hidden;
}

.idx-svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 14px 14px 0 0;
}

.idx-svc-blue::before   { background: linear-gradient(90deg, #1a56db, #60a5fa); }
.idx-svc-amber::before  { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.idx-svc-teal::before   { background: linear-gradient(90deg, #0e9384, #6ee7d8); }
.idx-svc-purple::before { background: linear-gradient(90deg, #7c3aed, #c4b5fd); }
.idx-svc-navy::before   { background: linear-gradient(90deg, #1a56db, #2454a6); }

.idx-svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 54px rgba(16,32,51,.14);
    border-color: rgba(36,84,166,.22);
}

.idx-svc-icon-wrap { margin-bottom: 20px; }

.idx-svc-card h3 {
    font-size: 20px;
    margin: 0 0 12px;
    color: var(--ink);
}

.idx-svc-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.68;
    margin: 0 0 20px;
}

.idx-svc-link {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .15s ease;
}

.idx-svc-link:hover { color: #1e478f; }

/* -- Included grid modern ------------------------------- */
.idx-igm-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.idx-igm-item {
    padding: 20px 18px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid transparent;
    transition: transform .2s ease;
}

.idx-igm-item:hover { transform: translateY(-3px); }

.idx-igm-blue   { background: rgba(36,84,166,.08);  border-color: rgba(36,84,166,.18); }
.idx-igm-teal   { background: rgba(14,147,132,.08); border-color: rgba(14,147,132,.18); }
.idx-igm-green  { background: rgba(22,163,74,.08);  border-color: rgba(22,163,74,.18); }
.idx-igm-amber  { background: rgba(245,158,11,.08); border-color: rgba(245,158,11,.18); }
.idx-igm-purple { background: rgba(124,58,237,.08); border-color: rgba(124,58,237,.18); }
.idx-igm-coral  { background: rgba(239,111,89,.08); border-color: rgba(239,111,89,.18); }

.idx-igm-item strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    margin-top: 8px;
}

.idx-igm-item span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}

/* -- Dark section (How we work) ------------------------- */
.idx-dark-section {
    background: linear-gradient(135deg, #060d1a 0%, #0f1f3d 55%, #071e3a 100%);
    color: #ffffff;
}

.idx-hww-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    counter-reset: none;
}

.idx-hww-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 14px;
    padding: 30px 26px;
    transition: background .22s ease, transform .22s ease;
}

.idx-hww-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-4px);
}

.idx-hww-num {
    font-size: 42px;
    font-weight: 900;
    color: rgba(110,231,216,.28);
    line-height: 1;
    margin-bottom: 16px;
    font-family: monospace;
}

.idx-hww-card h3 {
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 12px;
}

.idx-hww-card p {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    line-height: 1.68;
    margin: 0;
}

/* -- Testimonials modern -------------------------------- */
.idx-tcard {
    position: relative;
    padding: 34px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 10px 32px rgba(16,32,51,.07);
    transition: transform .22s ease, box-shadow .22s ease;
}

.idx-tcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(16,32,51,.13);
}

.idx-tcard-quote {
    font-size: 70px;
    line-height: .65;
    color: rgba(36,84,166,.1);
    font-weight: 900;
    margin-bottom: 16px;
    font-family: Georgia, serif;
    user-select: none;
}

.idx-tcard > p {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.72;
    margin: 0 0 18px;
    font-style: italic;
}

.idx-tcard-stars {
    color: var(--amber);
    letter-spacing: .1em;
    font-size: 15px;
    margin-bottom: 22px;
}

.idx-tcard-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #1a56db, #60a5fa);
    flex-shrink: 0;
}

.idx-av-teal  { background: linear-gradient(135deg, #0e9384, #6ee7d8) !important; }
.idx-av-green { background: linear-gradient(135deg, #16a34a, #86efac) !important; }

/* -- Responsive ----------------------------------------- */
@media (max-width: 980px) {
    .hs-inner              { grid-template-columns: 1fr; }
    .hs-visual             { display: none; }

    .idx-svc-grid          { grid-template-columns: repeat(2, 1fr); }
    .idx-svc-card          { grid-column: auto !important; }

    .idx-hww-grid          { grid-template-columns: repeat(2, 1fr); }
    .idx-igm-grid          { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 700px) {
    .hero-saas             { min-height: 0; padding-bottom: 64px; }

    .hs-metrics            { grid-template-columns: repeat(2, 1fr); display: grid; }
    .hs-metrics > div      { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
    .hs-metrics > div:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }

    .feedback-panel        { padding: 22px; }
    .feedback-stars        { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .feedback-star span    { min-height: 50px; font-size: 16px; }

    .footer-brand .footer-logo {
        width: 220px;
        height: 56px;
    }

    .idx-svc-grid          { grid-template-columns: 1fr; }
    .idx-svc-card          { grid-column: auto !important; }

    .idx-hww-grid          { grid-template-columns: 1fr; }
    .idx-igm-grid          { grid-template-columns: repeat(2, 1fr); }
}

/* -- Services pill row (icon + name only) --------------- */
.idx-svc-pill-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.idx-svc-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 4px 16px rgba(16,32,51,.07);
    transition: transform .2s ease, box-shadow .2s ease;
    cursor: default;
}

.idx-svc-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(16,32,51,.13);
}

.idx-svc-pill.idx-svc-blue   { border-color: rgba(36,84,166,.25);  }
.idx-svc-pill.idx-svc-amber  { border-color: rgba(245,158,11,.3);  }
.idx-svc-pill.idx-svc-teal   { border-color: rgba(14,147,132,.3);  }
.idx-svc-pill.idx-svc-purple { border-color: rgba(124,58,237,.25); }
.idx-svc-pill.idx-svc-navy   { border-color: rgba(17,29,46,.2);    }

.idx-svc-pill .feature-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
}

.idx-svc-pill .feature-icon::before,
.idx-svc-pill .feature-icon::after {
    transform-origin: center;
}

.idx-svc-pill span:last-child {
    line-height: 1.15;
}

/* Square icon tiles for the service pills */
.idx-svc-pill .feature-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 8px;
    background: rgba(36, 84, 166, 0.08) !important;
    box-shadow: inset 0 0 0 1px rgba(36, 84, 166, 0.08);
}

.idx-svc-pill.idx-svc-amber .feature-icon {
    background: rgba(245, 158, 11, 0.10) !important;
    box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.12);
}

.idx-svc-pill.idx-svc-teal .feature-icon {
    background: rgba(14, 147, 132, 0.10) !important;
    box-shadow: inset 0 0 0 1px rgba(14, 147, 132, 0.12);
}

.idx-svc-pill.idx-svc-purple .feature-icon {
    background: rgba(124, 58, 237, 0.09) !important;
    box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.12);
}

/* Match the reference: centered square cards */
.idx-svc-pill-row {
    justify-content: center;
}

.idx-svc-pill {
    width: 214px;
    min-height: 196px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    border-radius: 20px;
}

.idx-svc-pill .feature-icon {
    margin: 2px 0 28px;
}

.idx-svc-pill span:last-child {
    max-width: 100%;
    line-height: 1.35;
}

.idx-svc-pill .feature-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
}

.idx-svc-pill .feature-icon::before,
.idx-svc-pill .feature-icon::after {
    transform-origin: center;
}

@media (max-width: 600px) {
    .idx-svc-pill { font-size: 13px; padding: 11px 18px; }
}

/* ==========================================================
   ABOUT US PAGE � itekza
   ========================================================== */

/* Hero */
.abt-hero {
    background: linear-gradient(135deg, #060d1a 0%, #0f1f3d 55%, #071e3a 100%);
    color: #fff;
    padding: calc(var(--header-height) + 80px) 0 80px;
    text-align: center;
}
.abt-hero .eyebrow { color: #6ee7d8; }
.abt-hero h1 {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.12;
    margin: 16px 0 20px;
    color: #fff;
}
.abt-accent {
    background: linear-gradient(90deg, #6ee7d8 0%, #60a5fa 60%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.abt-lead {
    max-width: 660px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,.72);
}

/* Stats band */
.abt-stats-band {
    background: var(--blue);
    color: #fff;
    padding: 32px 0;
}
.abt-stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}
.abt-stat { text-align: center; }
.abt-stat strong {
    display: block;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}
.abt-stat span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    opacity: .8;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 4px;
}

/* Value cards grid */
.abt-value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.abt-value-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(16,32,51,.06);
}
.abt-vc-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: grid; place-items: center;
    font-size: 20px;
    margin-bottom: 14px;
}
.abt-value-card h3 { font-size: 16px; margin: 0 0 8px; }
.abt-value-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }

/* Services row */
.abt-svc-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}
.abt-svc-item {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(16,32,51,.05);
    transition: transform .2s ease, box-shadow .2s ease;
}
.abt-svc-item:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(16,32,51,.12); }
.abt-svc-item strong { display: block; font-size: 16px; margin: 14px 0 8px; }
.abt-svc-item p { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }

/* Process row */
.abt-process-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 16px;
}
.abt-process-step {
    flex: 1;
    padding: 28px 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
}
.abt-ps-num {
    font-size: 38px;
    font-weight: 900;
    color: rgba(36,84,166,.2);
    line-height: 1;
    margin-bottom: 12px;
    font-family: monospace;
}
.abt-process-step h3 { font-size: 18px; margin: 0 0 10px; }
.abt-process-step p  { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }
.abt-process-arrow {
    flex-shrink: 0;
    align-self: center;
    font-size: 24px;
    color: var(--blue);
    padding: 0 16px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 860px) {
    .abt-value-grid  { grid-template-columns: 1fr; }
    .abt-svc-row     { grid-template-columns: repeat(2, 1fr); }
    .abt-process-row { flex-direction: column; gap: 12px; }
    .abt-process-arrow { display: none; }
}
@media (max-width: 600px) {
    .abt-svc-row { grid-template-columns: 1fr; }
}

/* Brand SVG logo */
.brand-logo-svg { display:flex; align-items:center; flex-shrink:0; }

/* Hero sky background */
.hero-sky {
    background: linear-gradient(160deg, #0ea5e9 0%, #38bdf8 40%, #7dd3fc 75%, #e0f2fe 100%) !important;
    color: #0c1a2e;
}
.hero-sky .hs-gradient-text {
    background: linear-gradient(90deg, #0369a1 0%, #0284c7 60%, #0ea5e9 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sky .hs-lead { color: rgba(12,26,46,.72); }
.hero-sky .hs-orb-1 { background: radial-gradient(circle, rgba(255,255,255,.35) 0%, transparent 70%); }
.hero-sky .hs-orb-2 { background: radial-gradient(circle, rgba(14,147,132,.2) 0%, transparent 70%); }
.hero-sky .hs-orb-3 { background: radial-gradient(circle, rgba(255,255,255,.2) 0%, transparent 70%); }
.hero-sky .hs-grid-lines {
    background-image: linear-gradient(rgba(12,26,46,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(12,26,46,.06) 1px, transparent 1px);
}
.hero-sky .hs-btn-ghost {
    color: #0c1a2e;
    background: rgba(255,255,255,.35);
    border-color: rgba(12,26,46,.2);
}
.hero-sky .hs-btn-ghost:hover { background: rgba(255,255,255,.55); }

/* Hero banner image */
.hs-banner-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0,0,0,.18);
    display: block;
}

/* ==========================================================
   REDESIGN � LIGHT SOFT BLUE THEME
   ========================================================== */

/* -- Root palette refresh ------------------------------- */
:root {
    --ink:     #0f172a;
    --muted:   #475569;
    --line:    #e2e8f0;
    --paper:   #ffffff;
    --surface: #f8faff;
    --blue:    #2454a6;
    --teal:    #0e9384;
    --shadow:  0 8px 32px rgba(36,84,166,.10);
}

body { background: #f8faff; }

/* -- Header � solid white ------------------------------- */
.site-header {
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    backdrop-filter: none !important;
    box-shadow: 0 2px 12px rgba(36,84,166,.06) !important;
}
.site-header.is-scrolled {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(36,84,166,.10) !important;
}
.brand strong,
.footer-brand span { color: var(--ink) !important; }
.brand small        { color: var(--muted) !important; }
.site-nav a {
    color: #475569 !important;
    background: transparent !important;
}
.site-nav a:hover,
.site-nav a.is-active {
    color: var(--blue) !important;
    background: rgba(36,84,166,.07) !important;
}

/* -- Footer � rich blue --------------------------------- */
.site-footer {
    background: #1a3a6e !important;
    color: rgba(255,255,255,.78) !important;
}
.footer-brand span   { color: #ffffff !important; }
.footer-brand img {
    filter: brightness(0) invert(1);
}
.site-footer p       { color: rgba(255,255,255,.65) !important; }
.site-footer h2      { color: #ffffff !important; }
.site-footer a:not(.footer-brand) { color: rgba(255,255,255,.65) !important; }
.site-footer a:hover { color: #ffffff !important; }
.footer-bottom       { color: rgba(255,255,255,.45) !important; border-top-color: rgba(255,255,255,.12) !important; }

/* -- Hero light ----------------------------------------- */
.hero-light {
    background: linear-gradient(150deg, #eef4ff 0%, #f0f9ff 50%, #ecfdf5 100%);
    padding: calc(var(--header-height) + 72px) 0 72px;
    overflow: hidden;
}

.hl-inner {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    align-items: center;
    gap: 52px;
}

.hl-copy .eyebrow {
    color: var(--blue);
    margin-bottom: 16px;
}

.hl-h1 {
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.12;
    color: var(--ink);
    margin: 0 0 20px;
}

.hl-accent {
    color: var(--blue);
}

.hl-lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 540px;
    margin: 0 0 32px;
}

.hl-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hl-btn-outline {
    color: var(--blue);
    background: rgba(36,84,166,.07);
    border: 1.5px solid rgba(36,84,166,.25);
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: background .18s, border-color .18s;
}
.hl-btn-outline:hover {
    background: rgba(36,84,166,.13);
    border-color: rgba(36,84,166,.45);
}

/* SVG illustration */
.hl-visual { display: flex; align-items: center; justify-content: center; }
.hl-svg    { width: 100%; max-width: 500px; height: auto; filter: drop-shadow(0 16px 48px rgba(36,84,166,.14)); }

/* -- Section backgrounds lightened --------------------- */
.idx-section-light { background: #ffffff; }
.band              { background: #f0f4ff; }

/* -- Responsive ----------------------------------------- */
@media (max-width: 860px) {
    .hl-inner { grid-template-columns: 1fr; }
    .hl-visual { display: none; }
}

/* Hero background image override */
.hero-light {
    background: url('/front/hero-bg.jpg') center/cover no-repeat !important;
}

/* ==========================================================
   HERO � IMPROVED (hero-light)
   ========================================================== */

.hero-light {
    position: relative;
    min-height: 680px;
    padding: calc(var(--header-height) + 80px) 0 80px;
    background: url('/front/hero-bg.jpg') center/cover no-repeat !important;
    overflow: hidden;
}

/* Subtle overlay so text reads cleanly on any image */
.hl-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
        rgba(255,255,255,.82) 0%,
        rgba(240,247,255,.65) 45%,
        rgba(220,236,255,.30) 100%);
    backdrop-filter: blur(1px);
}

.hl-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 56px;
}

/* Eyebrow pill */
.hl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: rgba(36,84,166,.1);
    border: 1px solid rgba(36,84,166,.22);
    border-radius: 999px;
    color: #2454a6;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hl-h1 {
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.1;
    color: #0f172a;
    margin: 0 0 22px;
    font-weight: 900;
}

.hl-accent {
    color: #2454a6;
    position: relative;
}

.hl-lead {
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.75;
    color: #475569;
    max-width: 520px;
    margin: 0 0 34px;
}

.hl-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hl-btn-outline {
    color: #2454a6;
    background: rgba(36,84,166,.08);
    border: 1.5px solid rgba(36,84,166,.3);
    padding: 11px 26px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: background .18s, border-color .18s;
    display: inline-flex;
    align-items: center;
}
.hl-btn-outline:hover {
    background: rgba(36,84,166,.16);
    border-color: #2454a6;
}

/* Trust row */
.hl-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 32px;
}
.hl-trust-item {
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hl-trust-item::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2454a6;
    flex-shrink: 0;
}

/* Right image */
.hl-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hl-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 24px 64px rgba(36,84,166,.18);
    display: block;
    animation: hlImgFloat 5s ease-in-out infinite;
}

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

/* "How we work" � light section instead of dark */
.idx-dark-section {
    background: linear-gradient(135deg, #1a3a6e 0%, #2454a6 60%, #0e9384 100%) !important;
}
.idx-dark-section .section-heading .eyebrow { color: #6ee7d8 !important; }
.idx-dark-section .section-heading h2 { color: #ffffff !important; }
.idx-dark-section .section-heading p  { color: rgba(255,255,255,.68) !important; }

/* Responsive */
@media (max-width: 860px) {
    .hl-inner { grid-template-columns: 1fr; }
    .hl-visual { display: none; }
    .hl-overlay { background: linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(240,247,255,.75) 100%); }
}
@media (max-width: 540px) {
    .hl-actions { flex-direction: column; align-items: flex-start; }
}

/* Remove float animation from hero illustration */
.hl-img { animation: none !important; }

/* Hero � remove overlay, show original bg image */
.hl-overlay { display: none !important; }

/* Push illustration to the far right */
.hl-visual {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
}

.hl-img {
    width: 90% !important;
    max-width: 480px !important;
    margin-left: auto !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Header � blue background */
.site-header {
    background: #2454a6 !important;
    border-bottom: 1px solid rgba(255,255,255,.15) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,.18) !important;
}
.site-header.is-scrolled {
    background: #1a3f8f !important;
}
.site-nav a { color: rgba(255,255,255,.82) !important; }
.site-nav a:hover, .site-nav a.is-active {
    color: #ffffff !important;
    background: rgba(255,255,255,.15) !important;
}
.brand strong, .footer-brand span { color: #ffffff !important; }
.brand small { color: rgba(255,255,255,.65) !important; }

/* Final front header treatment: top contact strip + white main header */
:root {
    --topbar-height: 34px;
}

.top-contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    height: var(--topbar-height);
    background: #0b3c8a;
    color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.top-contact-inner {
    width: min(1160px, calc(100% - 40px));
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.top-contact-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
}

.top-contact-link {
    color: rgba(255, 255, 255, 0.9);
}

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

.top-divider {
    opacity: 0.65;
}

.top-social-links {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
}

.top-social svg {
    width: 12px;
    height: 12px;
    display: block;
    fill: currentColor;
}

.top-social:hover {
    background: rgba(255, 255, 255, 0.16);
}

.site-header {
    top: var(--topbar-height) !important;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(9, 54, 122, 0.14) !important;
    backdrop-filter: blur(10px);
}

.site-header.is-scrolled {
    background: #ffffff !important;
    box-shadow: 0 10px 24px rgba(9, 54, 122, 0.12) !important;
}

.site-nav a {
    color: #0b3c8a !important;
    font-weight: 700;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: #0b3c8a !important;
    background: rgba(11, 60, 138, 0.1) !important;
}

.site-nav a.is-active {
    box-shadow: inset 0 -2px 0 rgba(11, 60, 138, 0.55);
}

@media (max-width: 960px) {
    .top-contact-left {
        display: none;
    }

    .top-contact-inner {
        justify-content: flex-end;
    }

    .site-nav {
        top: calc(var(--header-height) + var(--topbar-height)) !important;
    }
}
.nav-toggle span { background: #ffffff !important; }

/* Hero lead font size */
.hl-lead { font-size: 13px !important; }

/* Shift illustration 10px further right */
.hl-visual { padding-left: 0 !important; transform: translateX(150px) !important; }

/* Hero h1 + lead � white text */
.hl-h1 { color: #083f97 !important; font-size: 22px !important; }
.hl-accent { color: #083f97 !important; }
.hl-eyebrow { color: rgba(255,255,255,.75) !important; }

/* Final hero fit: use the 1440x760 banner with less icon cropping */
.hero-light {
    min-height: 760px !important;
    background-color: #e9eff8 !important;
    background-image: url('/front/hero-bg.jpg') !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center top !important;
}

/* Move hero text/buttons slightly down */
.hl-inner {
    align-items: start !important;
    padding-top: 34px !important;
}

.hl-copy {
    margin-top: 16px !important;
}

@media (max-width: 1100px) {
    .hero-light {
        min-height: 700px !important;
        background-size: cover !important;
        background-position: center top !important;
    }

    .hl-inner {
        padding-top: 24px !important;
    }
}
