/* ============================================================
   main.css – CrftByte Site Styles
   Colors: Black, White, Tomato Red, Green
   ============================================================ */

/* ---------- Design Tokens (CSS Custom Properties) ---------- */
:root {
    /* Fonts */
    --_fonts---primary: "Space Grotesk", sans-serif;
    --_fonts---body: Inter, sans-serif;

    /* Colors - CrftByte Theme: Black, White, Tomato Red, Green */
    --_color---base--primary: #ff6347;
    --_color---base--accent-green: #22c55e;
    --_color---base--text: #ffffff;
    --_color---base--text-secondary: #a3a3a3;
    --_color---base--text-tertiary: #737373;
    --_color---system--background: #000000;
    --_color---system--surface: #0a0a0a;
    --_color---border--border-frame: #262626;
    --_color---neutrals--light--base: #ffffff;
    --_color---button--dark: #000000;
    --_color---button--surface-secondary: #171717;
    --_color---neutral--neutral-600: #525252;

    /* Theme tokens */
    --_theme---system--background: var(--_color---system--background);
    --_theme---system--base-text: var(--_color---base--text);
    --_theme---system--text-tertiary: var(--_color---base--text-tertiary);
    --_theme---system--border-frame: var(--_color---border--border-frame);
    --_theme---button--button: var(--_color---base--primary);
    --_theme---button--text: var(--_theme---system--base-text);
    --color--system--transparent: transparent;

    /* Typography scale */
    --_typography---heading--h1: 56px;
    --_typography---heading--h2: 40px;
    --_typography---heading--h3: 40px;
    --_typography---heading--h4: 32px;
    --_typography---heading--h5: 24px;
    --_typography---body--regular: 16px;
    --_typography---body--lg: 18px;
    --_typography---button--lg: 14px;
    --_typography---button--sm: 14px;
    --_typography---caption--caption: 14px;

    /* Line heights */
    --_spacing---line--100: 1em;
    --_spacing---line--110: 1.1em;
    --_spacing---line--120: 1.2em;
    --_spacing---line--130: 1.3em;
    --_spacing---line--140: 1.4em;
    --_spacing---line--150: 1.5em;
    --_spacing---line--160: 1.6em;

    /* Spacing */
    --_spacing---section--space-x: 20px;
    --_spacing---section--space-y: 88px;
    --_spacing---section--space-frame: 40px;

    /* Border radius */
    --_roundness---rounded-xs: 4px;
    --_roundness---rounded-base: 8px;
    --_roundness---rounded-md: 12px;
    --_roundness---rounded-full: 100px;

    /* Container */
    --container: 1280px;
}

/* ---------- Global Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background-color: var(--_theme---system--background);
    font-family: var(--_fonts---body);
    color: var(--_theme---system--base-text);
    font-size: var(--_typography---body--regular);
    line-height: var(--_spacing---line--130);
}

img {
    border: 0;
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
}

a {
    color: var(--_theme---system--base-text);
    text-decoration: none;
}

p {
    margin-top: 0;
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0;
}

/* ---------- Utility ---------- */
.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

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

/* ---------- Scroll reveal ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.sticky-navbar {
    z-index: 555;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

/* Logo text styles */
.logo-text {
    font-family: var(--_fonts---primary);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.logo-accent {
    color: #ff6347;
}

.navbar-bg {
    z-index: -1;
    background-color: var(--_color---border--border-frame);
    display: none;
    position: fixed;
    inset: 0%;
}

.navbar {
    padding: 16px var(--_spacing---section--space-x);
    background-color: transparent;
    transition: background-color 300ms ease-in-out, backdrop-filter 300ms ease-in-out;
}

.sticky-navbar.active .navbar {
    background-color: rgba(15, 15, 15, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.navbar-container {
    max-width: var(--container);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    gap: 80px;
}

.navbar-logo {
    flex: none;
    width: 100%;
    max-width: 150px;
    height: 26px;
    display: block;
}

.navbar-logo-img {
    object-fit: contain;
    width: 100%;
    max-width: 100%;
    height: 100%;
}

.navbar-menu-right {
    display: flex;
    align-items: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.button {
    gap: 10px;
    border-radius: var(--_roundness---rounded-base);
    background-color: var(--_theme---button--button);
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    display: inline-flex;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

.button:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.button.button-secondary {
    --_theme---system--base-text: #0a0a0a;
    background-color: var(--_color---neutrals--light--base);
}

.button.is-del {
    background-color: var(--_color---base--primary);
    /* border-radius: var(--_roundness---rounded-full); */
    padding: 10px 20px;
}

.button-lg {
    font-family: var(--_fonts---primary);
    color: var(--_theme---system--base-text);
    font-size: var(--_typography---button--lg);
    line-height: var(--_spacing---line--160);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-weight: 500;
}

.button-lg.is-del {
    color: #fff;
}

.button-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex: none;
}

/* ============================================================
   SECTION LAYOUT PRIMITIVES
   ============================================================ */
.section {
    position: relative;
}

.section.banner-section {
    padding-left: 0;
    padding-right: 0;
    position: relative;
    overflow: clip;
}

.section.empower-section {
    background-color: #ffffff;
    /* override all inherited dark-theme tokens for this section */
    --_theme---system--background: #ffffff;
    --_theme---system--base-text: #0a0a0a;
    --_theme---system--text-tertiary: #6b6b6b;
    --_theme---system--border-frame: #e5e5e5;
    --_theme---button--button: var(--_color---base--primary);
    color: #0a0a0a;
}

.section-inner-space {
    padding-right: var(--_spacing---section--space-x);
    padding-left: var(--_spacing---section--space-x);
}

.section-frame {
    border-right: 1px solid var(--_theme---system--border-frame);
    border-left: 1px solid var(--_theme---system--border-frame);
}

.section-frame.section-frame-left {
    border-right-style: none;
}

.section-space-x {
    padding-left: var(--_spacing---section--space-x);
    padding-right: var(--_spacing---section--space-x);
}

.section-space-y {
    padding-top: var(--_spacing---section--space-y);
    padding-bottom: var(--_spacing---section--space-y);
}

.section-space-y.why-monks {
    padding-bottom: 56px;
}

.section-divider {
    background-color: var(--_theme---system--border-frame);
    width: 100%;
    height: 1px;
}

/* Dividers inside the empower section use the light border */
.empower-section .section-divider {
    background-color: #e5e5e5;
}

.section-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 80px;
    align-items: start;
}

.section-row.why-monks-row {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.section-header {
    display: flex;
    flex-flow: column;
    gap: 24px;
}

.section-header.testimonial-section-header {
    gap: 32px;
    justify-content: flex-start;
    align-items: flex-start;
}

.section-header.section-header-center {
    justify-content: flex-start;
    align-items: center;
}

.section-title-row {
    display: flex;
    flex-flow: column;
    max-width: 800px;
    gap: 16px;
}

.section-title-row.empower-title-row {
    max-width: 829px;
}

/* Body text variants used in sections */
/* .section-body removed as it was empty */

.section-body.workflow-grid {
    display: flex;
    flex-flow: row;
    gap: 24px;
    align-items: flex-start;
}

/* .section-body.why-monks-section-description removed as it was empty */

/* ============================================================
   CONTAINERS
   ============================================================ */
.w-layout-blockcontainer {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.container {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   TYPOGRAPHY CLASSES
   ============================================================ */
.caption {
    font-family: var(--_fonts---primary);
    color: var(--_theme---system--base-text);
    font-size: var(--_typography---caption--caption);
    line-height: var(--_spacing---line--150);
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}

.caption.empower-workflow-title {
    font-size: 12px;
}

.text-primary {
    color: var(--_color---base--primary);
}

.text-tertiary {
    color: var(--_color---base--text-tertiary);
}

.heading-h1 {
    font-family: var(--_fonts---primary);
    color: var(--_theme---system--base-text);
    font-size: var(--_typography---heading--h1);
    line-height: var(--_spacing---line--110);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}

.heading-h2 {
    font-family: var(--_fonts---primary);
    color: var(--_theme---system--base-text);
    font-size: var(--_typography---heading--h2);
    line-height: var(--_spacing---line--100);
    letter-spacing: -0.01em;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}

.heading-h3 {
    font-family: var(--_fonts---primary);
    color: var(--_theme---system--base-text);
    font-size: var(--_typography---heading--h3);
    line-height: var(--_spacing---line--110);
    letter-spacing: -0.05em;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}

.heading-h5 {
    font-family: var(--_fonts---primary);
    color: var(--_theme---system--base-text);
    font-size: var(--_typography---heading--h5);
    line-height: var(--_spacing---line--120);
    letter-spacing: -0.02em;
    font-weight: 700;
    margin: 0;
}

.body-regular {
    font-family: var(--_fonts---body);
    font-size: var(--_typography---body--regular);
    line-height: var(--_spacing---line--130);
}

.body-lg {
    font-family: var(--_fonts---body);
    font-size: var(--_typography---body--lg);
    line-height: var(--_spacing---line--130);
}

/* ============================================================
   BANNER / HERO SECTION
   ============================================================ */
.banner-section-space {
    padding-top: 142px;
    padding-bottom: 112px;
}

.banner-section-row {
    display: flex;
    flex-flow: column;
    gap: 80px;
}

.banner-header-row {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 765px;
    gap: 40px;
}

.banner-content-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-template-rows: auto;
    gap: 117px;
    max-width: 784px;
}

.banner-tags-row {
    display: flex;
    flex-flow: column;
    gap: 12px;
}

.banner-tags {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
}

.banner-tag {
    border: 1px solid var(--_color---border--border-frame);
    border-radius: var(--_roundness---rounded-full);
    padding: 6px 14px;
    font-size: 14px;
    color: var(--_color---base--text-tertiary);
    white-space: nowrap;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.banner-tag:hover {
    border-color: var(--_color---base--primary);
    color: var(--_color---base--primary);
}

.banner-bg-canvas-wrap {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.sparkle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ============================================================
   BRAND MARQUEE
   ============================================================ */
.brand-collection {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
    background-color: #ffffff;
}

.brand-collection::before,
.brand-collection::after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
}

.brand-collection::before {
    left: 0;
    /* background: linear-gradient(to right, var(--_color---system--background) 0%, transparent 100%); */
}

.brand-collection::after {
    right: 0;
    /* background: linear-gradient(to left, var(--_color---system--background) 0%, transparent 100%); */
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.brand-list {
    display: flex;
    flex: none;
    animation: marquee-scroll 55s linear infinite;
}

.brand-list:hover {
    animation-play-state: paused;
}

.brand-item {
    border-left: 1px;
    flex: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 28px;
    padding-right: 28px;
    height: 90px;
}

.brand-link {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-image {
    object-fit: contain;
    width: auto;
    height: 36px;
    max-width: 120px;
    opacity: 0.75;
    transition: opacity 0.25s ease;
}

.brand-link:hover .brand-image {
    opacity: 1;
}

/* ============================================================
   CARDS (shared)
   ============================================================ */
.card {
    border: 1px solid var(--_theme---system--border-frame);
    border-radius: var(--_roundness---rounded-md);
    overflow: hidden;
    position: relative;
}

.card-header {
    display: flex;
    flex-flow: column;
    gap: 12px;
}

/* ============================================================
   EMPOWER SECTION – AI Inside Our Process
   ============================================================ */
.empower-card {
    background-color: #141414;
    border-radius: var(--_roundness---rounded-md);
    border: none;
    overflow: hidden;
    display: flex;
    flex-flow: column;
    gap: 0;
    flex: 1 1 auto;
    min-width: 0;
    /* re-assert dark token so card text stays white inside the white section */
    --_theme---system--base-text: #fafafa;
    --_theme---system--text-tertiary: #a3a3a3;
    color: #fafafa;
}

.empower-card-header {
    padding: 28px 28px 0;
    gap: 12px;
    display: flex;
    flex-flow: column;
}

.empower-description {
    padding: 20px 28px 28px;
    display: flex;
    flex-flow: column;
    gap: 20px;
    align-items: flex-start;
}

.empower-file-upload {
    object-fit: contain;
    width: 150px;
}

.empower-workflow {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.empower-workflow-image {
    width: 100%;
    max-width: 356px;
}

.automation-image {
    border-radius: var(--_roundness---rounded-base);
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
    max-height: 460px;
    min-height: 320px;
}

/* ============================================================
   FEATURES GRID – Why Choose Us
   ============================================================ */
.features-grid {
    max-width: var(--container);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 0;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    display: flex;
    flex-flow: column;
    padding: 40px 32px;
    gap: 24px;
    background-color: #ffffff;
}

.feature-card .card-header {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
}

.feature-image {
    object-fit: contain;
    width: 100%;
    height: 150px;
    transition: transform 0.3s ease-in-out;
}

.feature-card-description {
    display: flex;
    flex-flow: column;
    gap: 8px;
    padding: 0;
}

/* Border between feature cards (applied via inline <style> in original, we replicate here) */
@media (min-width: 768px) {
    .feature-card:not(:last-child) {
        border-right: 1px solid var(--_theme---system--border-frame);
    }
}

@media (max-width: 767px) {
    .feature-card:not(:last-child) {
        border-bottom: 1px solid var(--_theme---system--border-frame);
    }
}

/* ============================================================
   STRATEGY PROMO SECTION
   ============================================================ */
.section.strategy-promo-section {
    background-color: #0f0f0f;
    color: var(--_color---base--text);
    position: relative;
    overflow: hidden;
    /* restore dark tokens scoped to this section */
    --_theme---system--background: #0f0f0f;
    --_theme---system--base-text: #fafafa;
    --_theme---system--text-tertiary: #a3a3a3;
    --_theme---system--border-frame: #292929;
}

/* Orange halftone radial dot decorations on the sides */
.strategy-deco {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 340px;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle, #ff6347 1.2px, transparent 1.2px);
    background-size: 16px 16px;
    /* fade out toward the centre */
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at center, transparent 10%, black 80%);
    mask-image: radial-gradient(ellipse 100% 100% at center, transparent 10%, black 80%);
    opacity: 0.55;
}

.strategy-deco-left {
    left: 0;
    /* additional left-edge fade */
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 0% 50%, black 30%, transparent 80%);
    mask-image: radial-gradient(ellipse 90% 80% at 0% 50%, black 30%, transparent 80%);
}

.strategy-deco-right {
    right: 0;
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 100% 50%, black 30%, transparent 80%);
    mask-image: radial-gradient(ellipse 90% 80% at 100% 50%, black 30%, transparent 80%);
}

/* Section content above the decorations */
.strategy-promo-section .section-space-x,
.strategy-promo-section .w-layout-blockcontainer {
    position: relative;
    z-index: 1;
}

/* Override to single-column centred layout */
.section-row.strategy-section-row {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 48px;
    text-align: center;
}

/* Reviews badge container */
.strategy-body {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 16px;
}

.strategy-reviews {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 10px;
}

.strategy-reviews-platform-link {
    display: block;
}

.strategy-reviews-platform-icon {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.strategy-reviews-card {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #1a1a1a;
    border: 1px solid #2d2d2d;
    border-radius: var(--_roundness---rounded-full);
    padding: 6px 14px;
    font-family: var(--_fonts---primary);
    font-size: 16px;
    font-weight: 600;
    color: #fafafa;
}

.strategy-reviews-card p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.strategy-reviews-card-rating {
    height: 18px;
    width: auto;
    object-fit: contain;
}

.strategy-tagline {
    color: var(--_color---base--text-tertiary);
}

/* Right col: heading + button */
.strategy-row {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 40px;
    max-width: 760px;
}

.strategy-row .heading-h2 {
    font-size: 32px;
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

/* CTA in strategy section keeps dark button look */
.strategy-promo-section .button.button-secondary {
    background-color: transparent;
    border: 1px solid var(--_color---border--border-frame);
    color: #fafafa;
    --_theme---system--base-text: #fafafa;
}

.strategy-promo-section .button.button-secondary .button-lg {
    color: #fafafa;
}

.strategy-promo-section .button.button-secondary:hover {
    border-color: #fafafa;
    opacity: 1;
}

/* ============================================================
   CAPABILITIES SECTION
   ============================================================ */
.section.capabilities-section {
    background-color: #0f0f0f;
    color: #fafafa;
    --_theme---system--background: #0f0f0f;
    --_theme---system--base-text: #fafafa;
    --_theme---system--text-tertiary: #a3a3a3;
    --_theme---system--border-frame: #262626;
}

.capabilities-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* Centred header block */
.capabilities-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    max-width: 680px;
    margin: 0 auto;
}

.capabilities-heading {
    font-family: var(--_fonts---primary);
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #fafafa;
    margin: 0;
    /* NOT uppercase — matches reference image */
    text-transform: none;
}

.capabilities-subtext {
    color: #a3a3a3;
    font-size: 15px;
    line-height: 1.6;
}

/* 3-column grid – 5 cards (last row: 2 cards left-aligned with auto margins) */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Individual capability card */
.cap-card {
    background-color: #161616;
    border: 1px solid #262626;
    border-radius: 10px;
    padding: 28px 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    transition: border-color 0.2s ease;
}

.cap-card:hover {
    border-color: #3a3a3a;
}

/* Card body */
.cap-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cap-card-title {
    font-family: var(--_fonts---primary);
    font-size: 15px;
    font-weight: 600;
    color: #fafafa;
    line-height: 1.4;
    margin: 0;
    letter-spacing: -0.01em;
}

.cap-card-desc {
    font-family: var(--_fonts---body);
    font-size: 13px;
    line-height: 1.6;
    color: #a3a3a3;
    margin: 0;
}

/* Bullet list */
.cap-card-list {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cap-card-list li {
    font-family: var(--_fonts---body);
    font-size: 13px;
    color: #c4c4c4;
    line-height: 1.5;
    padding-left: 14px;
    position: relative;
}

.cap-card-list li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: #ff6347;
    font-size: 18px;
    line-height: 1.1;
}

/* Card footer: "Related challenges:" + orange pills */
.cap-card-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid #262626;
}

.cap-related-label {
    font-family: var(--_fonts---body);
    font-size: 11px;
    color: #666;
    letter-spacing: 0.02em;
    text-transform: none;
}

.cap-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cap-tag {
    display: inline-block;
    font-family: var(--_fonts---body);
    font-size: 11px;
    font-weight: 500;
    color: #ff6347;
    background-color: rgba(232, 80, 2, 0.1);
    border: 1px solid rgba(232, 80, 2, 0.25);
    border-radius: 100px;
    padding: 3px 10px;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cap-tag:hover {
    background-color: rgba(232, 80, 2, 0.2);
    border-color: rgba(232, 80, 2, 0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media screen and (max-width: 991px) {
    .heading-h1 {
        font-size: 40px;
    }

    .heading-h2 {
        font-size: 32px;
    }

    .heading-h3 {
        font-size: 32px;
    }

    .banner-section-space {
        padding-top: 110px;
        padding-bottom: 80px;
    }

    .banner-content-row {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
    }

    .navbar-container {
        gap: 24px;
    }

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

    .section-row.why-monks-row {
        grid-template-columns: 1fr;
    }

    .section-body.workflow-grid {
        flex-flow: column;
    }

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

@media screen and (max-width: 767px) {
    .heading-h1 {
        font-size: 32px;
    }

    .heading-h2 {
        font-size: 28px;
    }

    .heading-h3 {
        font-size: 28px;
    }

    .heading-h5 {
        font-size: 20px;
    }

    .banner-section-space {
        padding-top: 88px;
        padding-bottom: 60px;
    }

    .banner-section-row {
        gap: 48px;
    }

    .banner-header-row {
        max-width: 100%;
        gap: 24px;
    }

    .banner-content-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-space-y {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .empower-card-header {
        padding: 20px 20px 0;
    }

    .empower-description {
        padding: 16px 20px 20px;
    }

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

    .feature-card {
        padding: 28px 20px;
    }
}

@media screen and (max-width: 479px) {
    .heading-h1 {
        font-size: 28px;
    }

    .banner-section-space {
        padding-top: 80px;
        padding-bottom: 48px;
    }

    .brand-item {
        padding-left: 16px;
        padding-right: 16px;
        height: 72px;
    }

    .brand-image {
        height: 28px;
    }
}

/* ============================================================
   NAVBAR – wide mega-menu variant
   ============================================================ */

/* Wider container for full-width nav */
.navbar-container--wide {
    max-width: 1440px;
    padding: 0 32px;
    gap: 0;
    justify-content: space-between;
}

/* Nav link list */
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

/* Base nav link style */
.nav-link {
    font-family: var(--_fonts---body);
    font-size: 14px;
    font-weight: 500;
    color: #d4d4d4;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: color 0.15s ease, background-color 0.15s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link--dropdown[aria-expanded="true"] {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.07);
}

/* Solutions – active orange */
#nav-solutions>.nav-link--dropdown {
    color: #ff6347;
}

#nav-solutions>.nav-link--dropdown:hover,
#nav-solutions>.nav-link--dropdown[aria-expanded="true"] {
    color: #ff6347;
    background-color: rgba(232, 80, 2, 0.1);
}

.nav-chevron {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.nav-link--dropdown[aria-expanded="true"] .nav-chevron {
    transform: rotate(180deg);
}

/* -------- Mega menu panel -------- */
.mega-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 720px;
    max-width: calc(100vw - 40px);
    background-color: #1a1a1a;
    border: 1px solid #2d2d2d;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    z-index: 999;
    animation: megaFadeIn 0.18s ease;
}

/* Responsive mega-menu */
@media screen and (max-width: 768px) {
    .mega-menu {
        position: fixed;
        top: 70px;
        left: 20px;
        right: 20px;
        transform: none;
        width: auto;
        max-width: none;
    }

    .mega-menu-inner {
        grid-template-columns: 1fr;
        max-height: 70vh;
        overflow-y: auto;
    }

    .mega-col--border {
        border-left: none;
        border-top: 1px solid #2d2d2d;
    }
}

@keyframes megaFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.mega-menu.is-open {
    display: block;
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 0;
    padding: 8px;
}

/* Columns */
.mega-col {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega-col--border {
    border-left: 1px solid #2d2d2d;
}

.mega-col-label {
    font-family: var(--_fonts---body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666;
    margin: 0 0 10px;
}

/* Mega list */
.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #d4d4d4;
    font-size: 13px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.mega-link-icon {
    font-size: 15px;
    line-height: 1.3;
    flex-shrink: 0;
    color: #666;
    width: 20px;
    text-align: center;
}

.mega-link strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #fafafa;
    line-height: 1.3;
}

.mega-link-sub {
    display: block;
    font-size: 11.5px;
    color: #777;
    line-height: 1.4;
    margin-top: 2px;
}

/* Col 3 footer */
.mega-col-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #2d2d2d;
}

.mega-view-all {
    font-size: 12px;
    font-weight: 600;
    color: #ff6347;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.15s ease;
}

.mega-view-all:hover {
    gap: 8px;
}

/* ============================================================
   TECHNOLOGIES SECTION
   ============================================================ */
.technologies-section {
    background-color: #ffffff;
}

.technologies-section .heading-h2 {
    color: #0a0a0a;
}

.tech-filter-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.tech-filter-btn {
    font-family: var(--_fonts---body);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid #e5e5e5;
    background-color: transparent;
    color: #6b6b6b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tech-filter-btn:hover {
    border-color: #0a0a0a;
    color: #0a0a0a;
}

.tech-filter-btn.active {
    background-color: #ff6347;
    border-color: #ff6347;
    color: #ffffff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 40px 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.tech-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    background-color: transparent;
    border: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.tech-item:hover {
    transform: translateY(-4px);
    opacity: 0.8;
}

.tech-item.hidden {
    display: none;
}

.tech-logo {
    width: 100%;
    max-width: 140px;
    height: auto;
    max-height: 48px;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

@media screen and (max-width: 991px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 32px 24px;
    }
}

@media screen and (max-width: 767px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 24px 16px;
    }

    .tech-filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .tech-logo {
        max-height: 36px;
    }
}

/* ============================================================
   COMPARISON SECTION
   ============================================================ */
.comparison-section {
    background-color: #ffffff;
}

.comparison-section .heading-h2 {
    color: #000000;
}

.comparison-table-wrap {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 40px;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.comp-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    border-bottom: 1px solid #f0f0f0;
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-header {
    background-color: #fafafa;
}

.comp-header .comp-cell {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #171717;
    padding: 24px 20px;
}

.comp-cell {
    padding: 20px 24px;
    font-size: 15px;
    color: #525252;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.comp-cell:last-child {
    border-right: none;
}

.comp-feature {
    font-weight: 600;
    color: #171717;
    background-color: #fcfcfc;
}

.comp-highlight {
    background-color: #0a0a0a;
    color: #ffffff !important;
    font-weight: 500;
    position: relative;
    border-right: none !important;
}

.comp-header .comp-highlight {
    font-weight: 700;
}

.comp-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.comp-icon::before {
    font-size: 12px;
    font-weight: 700;
}

.comp-check::before {
    content: "✓";
    color: #22c55e;
}

.comp-cross::before {
    content: "✕";
    color: #ef4444;
}

.comp-warning::before {
    content: "▲";
    color: #ff6347;
    font-size: 10px;
}

@media screen and (max-width: 991px) {
    .comp-row {
        grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    }

    .comp-cell {
        padding: 16px;
        font-size: 13px;
    }
}

@media screen and (max-width: 767px) {
    .comparison-table {
        border: none;
        background-color: transparent;
        box-shadow: none;
        gap: 24px;
    }

    .comp-row {
        grid-template-columns: 1fr;
        border: 1px solid #e5e5e5;
        border-radius: 16px;
        background-color: #ffffff;
        padding: 20px;
        gap: 12px;
        position: relative;
    }

    .comp-row:not(.comp-header) {
        display: flex;
        flex-direction: column;
    }

    .comp-header {
        display: none;
    }

    .comp-cell {
        border-right: none;
        border-bottom: 1px solid #f5f5f5;
        padding: 12px 0;
        justify-content: space-between;
        text-align: right;
    }

    .comp-cell:last-child {
        border-bottom: none;
    }

    .comp-cell::before {
        content: attr(data-label);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        color: #737373;
        display: block;
        text-align: left;
    }

    .comp-feature {
        background-color: transparent;
        border-bottom: 2px solid #ff6347;
        padding-bottom: 16px !important;
        margin-bottom: 8px;
        font-size: 18px;
        justify-content: flex-start;
    }

    .comp-feature::before {
        content: none;
    }

    .comp-highlight {
        background-color: #0a0a0a;
        margin: 0 -20px -20px;
        padding: 20px !important;
        border-radius: 0 0 16px 16px;
        justify-content: space-between;
    }
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.section.process-section {
    background-color: #0f0f0f;
    color: #fafafa;
    --_theme---system--base-text: #fafafa;
    --_theme---system--text-tertiary: #a3a3a3;
}

.process-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding-top: 96px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

/* Header */
.process-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.process-heading {
    font-family: var(--_fonts---primary);
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #fafafa;
    margin: 0;
    text-transform: none;
}

.process-subtext {
    color: #a3a3a3;
    font-size: 15px;
}

/* Timeline row */
.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: start;
}

/* Horizontal connecting line */
.process-line {
    position: absolute;
    top: 48px;
    /* centres on the icon circle */
    left: calc(12.5%);
    /* starts at centre of first icon */
    right: calc(12.5%);
    /* ends at centre of last icon */
    height: 1px;
    background: linear-gradient(to right, #ff6347, #ff6347);
    z-index: 0;
}

/* Each step */
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 16px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Icon wrapper (circle) */
.process-icon-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.process-step-num {
    font-family: var(--_fonts---body);
    font-size: 11px;
    font-weight: 600;
    color: #ff6347;
    letter-spacing: 0.05em;
}

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #2d2d2d;
    background-color: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.process-step:hover .process-icon {
    border-color: #ff6347;
    background-color: rgba(232, 80, 2, 0.06);
}

/* Text below icon */
.process-step-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.process-step-title {
    font-family: var(--_fonts---primary);
    font-size: 15px;
    font-weight: 600;
    color: #fafafa;
    margin: 0;
}

.process-step-desc {
    font-size: 13px;
    color: #a3a3a3;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

/* ---- CTA block below timeline ---- */
.process-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 80px 0 96px;
    border-top: 1px solid #1f1f1f;
}

.process-cta-heading {
    font-family: var(--_fonts---primary);
    font-size: 36px;
    font-weight: 500;
    color: #fafafa;
    margin: 0;
    text-transform: none;
    letter-spacing: -0.02em;
}

.process-cta-sub {
    color: #a3a3a3;
    font-size: 15px;
}

.process-cta-btn {
    background-color: #ff6347;
    border-radius: var(--_roundness---rounded-full);
    padding: 12px 28px;
    text-transform: none;
}

.process-cta-btn .button-lg {
    text-transform: none;
    font-size: 14px;
    letter-spacing: 0;
}

/* Responsive */
@media screen and (max-width: 767px) {
    .process-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 40px 0;
    }

    .process-line {
        display: none;
    }

    .process-heading,
    .process-cta-heading {
        font-size: 28px;
    }

    .nav-links {
        display: none;
    }
}

@media screen and (max-width: 479px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ============================================================
   ABOUT US SECTION
   ============================================================ */

/* Override dark theme base for specific sections */
.white-bg-override {
    background-color: #fcfcfc;
    color: #1a1a1a;
    --_theme---system--background: #fcfcfc;
    --_theme---system--base-text: #1a1a1a;
    --_theme---system--text-tertiary: #666666;
    --_theme---system--border-frame: #e5e5e5;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Base text overrides for light section */
.white-bg-override .text-dark {
    color: #000 !important;
}

.white-bg-override .text-dark-grey {
    color: #555 !important;
}

.white-bg-override .text-orange {
    color: #ff6347 !important;
}

.about-row {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin: 0 auto;
}

/* Top: 2-column grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-section-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
}

.about-section-header .section-title-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Specific styling to match the reference headers */
.about-section-header .heading-h2 {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
}

.about-section-description {
    font-size: 16px;
    line-height: 1.6;
    max-width: 95%;
}

.about-cta-container .button {
    background-color: #ff6347;
    border-color: #ff6347;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
}

.about-cta-container .button-lg {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Companies Logos */
.work-section {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.companies {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.company-item {
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 12px 16px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}

.company-logo {
    max-height: 20px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.2s, opacity 0.2s;
}

.company-item:hover .company-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Right Image */
.about-image-wrap {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Bottom: 3 Stat Cards */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-card {
    background-color: #f1ede8;
    border: none;
    border-radius: 8px;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stat-card .heading-h2 {
    font-size: 42px;
    font-weight: 500;
    margin: 0;
    line-height: 1;
}

.stat-card .caption {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media screen and (max-width: 767px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-section-header .heading-h2 {
        font-size: 32px;
    }
}

/* ============================================================
   VERTICAL PROCESS SECTION
   ============================================================ */
.vertical-process-section {}

.vertical-process-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: flex-start;
}

.vertical-process-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 120px;
}

.vertical-process-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.vertical-process-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-top: 16px;
}

.vertical-process-header .heading-h2 {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
}

.vertical-process-steps {
    display: flex;
    flex-direction: column;
}

.v-step-item {
    display: flex;
    gap: 32px;
}

.v-step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.v-step-num {
    background-color: #f1ede8;
    color: #444;
    font-family: var(--_fonts---primary);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    min-width: 50px;
    text-align: center;
}

.v-step-line {
    width: 2px;
    flex-grow: 1;
    background-color: #e5e5e5;
    min-height: 48px;
}

.v-step-content {
    padding-bottom: 40px;
    padding-top: 4px;
}

.v-step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.v-step-icon {
    width: 24px;
    height: 24px;
}

.v-step-title {
    font-family: var(--_fonts---primary);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.v-step-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Vertical Process Responsive */
@media screen and (max-width: 991px) {
    .vertical-process-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .vertical-process-image-wrap {
        position: relative;
        top: 0;
    }
}

/* ============================================================
   EXPLORE SOLUTIONS TAB SECTION
   ============================================================ */
.solutions-section {
    padding-top: 96px;
    padding-bottom: 96px;
    background-color: #0f0f0f;
    color: #fff;
}

.solutions-header {
    text-align: center;
    margin-bottom: 48px;
}

.solutions-subtext {
    max-width: 650px;
    margin: 16px auto 0;
    color: #a1a1ae;
}

.solutions-tabs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Tab Navigation */
.solutions-tabs-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 4px;
    margin-bottom: 48px;
    width: 100%;
    max-width: 600px;
}

.solutions-tab-btn {
    background: transparent;
    border: none;
    color: #a1a1ae;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.solutions-tab-btn:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

.solutions-tab-btn.active {
    background-color: #ff6347;
    color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Tab Content */
.solutions-tab-pane {
    display: none;
    width: 100%;
    animation: fadeIn 0.4s ease-out;
}

.solutions-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid Layout */
.solutions-grid {
    display: grid;
    gap: 32px;
    width: 100%;
}

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

/* Solution Card */
.sol-card {
    background-color: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 8px 28px -6px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.sol-card:hover {
    border-color: rgba(232, 80, 2, 0.4);
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.5), 0 0 30px -5px rgba(232, 80, 2, 0.15);
    transform: translateY(-4px);
}

/* Card Image */
.sol-card-img-link {
    display: block;
    position: relative;
    aspect-ratio: 2.2 / 1;
    overflow: hidden;
}

.sol-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.sol-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 20, 20, 1), rgba(20, 20, 20, 0.2), transparent);
    opacity: 0.6;
}

/* Card Body */
.sol-card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sol-card-title-link {
    text-decoration: none;
    margin-bottom: 12px;
}

.sol-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    transition: color 0.2s ease;
}

.sol-card:hover .sol-card-title {
    color: #ff6347;
}

.sol-card-title .text-orange {
    color: #ff6347;
}

.sol-card-desc {
    color: #a1a1ae;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Card Button */
.button.button-outline.sol-card-btn {
    background-color: #0f0f0f;
    border: 1px solid #333;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.button.button-outline.sol-card-btn:hover {
    background-color: #fff;
    color: #000;
}

.button.button-outline.sol-card-btn .arrow-icon {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.sol-card:hover .arrow-icon {
    transform: translateX(4px);
}

/* Responsive Solutions */
@media screen and (max-width: 991px) {
    .solutions-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .solutions-grid-3 {
        grid-template-columns: 1fr;
    }

    .sol-card-body {
        padding: 24px;
    }
}

/* ============================================================
   TECHNOLOGIES SECTION
   ============================================================ */
.technologies-collection {
    margin-top: 48px;
    width: 100%;
}

.technologies-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.technologies-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 24px;
    background-color: transparent;
    transition: transform 0.2s ease;
}

.technologies-card-icon {
    height: 32px;
    max-width: 120px;
    object-fit: contain;
}

.technologies-card-text {
    display: none;
    /* Hide text, just show icon like in design */
}

/* Categories Filter styling */
.categories-filter-form {
    margin: 32px 0 48px;
}

.categories-filter-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

.categories-filter-item {
    width: auto !important;
    /* Override swiper inline styles if applied */
    box-sizing: border-box;
    margin-right: 0 !important;
    /* Override swiper's inline right margin */
}

.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid #e5e5e5;
    background-color: transparent;
    color: #666;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.chip:hover {
    border-color: #ff6347;
    color: #ff6347;
}

.chip.is-list-active,
.chip.w--redirected-checked {
    background-color: #ff6347;
    border-color: #ff6347;
    color: #fff;
}

.radio-button,
.w-radio-input {
    display: none !important;
}

.w-form-label {
    margin-bottom: 0;
    cursor: pointer;
}

/* ============================================================
   FOOTER SECTION
   ============================================================ */
.footer-space {
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-brand-column .heading-h6 {
    font-size: 18px;
    line-height: 1.5;
    color: #a1a1ae;
    margin: 0;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    height: 48px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-item-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.social-item-link:hover {
    opacity: 0.8;
}

.footer-menu-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.footer-menu-column {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-menu-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-menu-wrap .caption {
    font-size: 12px;
    letter-spacing: 1px;
    color: #a1a1ae;
    margin: 0;
}

.footer-menu-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-menu-items a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-menu-items a:hover {
    color: #ff6347;
}

.footer-copyright-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
}

.footer-copyright-row .body-sm {
    color: #a1a1ae;
    margin: 0;
}

.footer-security-row {
    display: flex;
    gap: 32px;
}

.footer-security-row a {
    color: #a1a1ae;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-security-row a:hover {
    color: #fff;
}

/* Footer Responsive */
@media screen and (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }
}

@media screen and (max-width: 767px) {
    .footer-menu-row {
        grid-template-columns: 1fr;
    }

    .footer-copyright-row {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-security-row {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

/* ============================================================
   CONTACT US PAGE
   ============================================================ */

.contact-page {
    background-color: #0a0a0a;
    color: #fff;
    padding-top: 100px;
}

/* Contact Hero */
.contact-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.contact-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.3));
}

.contact-hero-content {
    max-width: 700px;
}

.contact-hero-content .heading-h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 24px;
}

/* Contact Section Grid */
.contact-form-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

@media screen and (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Cards (Glassmorphism) */
.contact-form-card,
.contact-info-card {
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 767px) {

    .contact-form-card,
    .contact-info-card {
        padding: 24px;
    }
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 16px;
}

@media screen and (max-width: 479px) {
    .form-row {
        flex-direction: column;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group.w-50 {
    width: 50%;
}

@media screen and (max-width: 479px) {
    .form-group.w-50 {
        width: 100%;
    }
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #fff;
}

.form-input,
.form-textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 12px 16px;
    color: #fff;
    font-family: var(--_fonts---body);
    font-size: 15px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ff6347;
    background-color: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input {
    min-height: 44px;
}

.form-textarea {
    min-height: 120px;
    resize: none;
}

.contact-submit-btn {
    width: 100%;
    padding: 24px 0;
    display: flex;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px 0 rgba(232, 80, 2, 0.39);
    transition: all 0.2s ease;
}

.contact-submit-btn:hover {
    box-shadow: 0 6px 20px rgba(232, 80, 2, 0.5);
    transform: translateY(-1px);
}

/* Info Side Styles */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(232, 80, 2, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.contact-info-text {
    font-size: 14px;
    color: #a1a1ae;
    line-height: 1.5;
}

.contact-info-text.lg-text {
    font-size: 15px;
}

.contact-link {
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link.hover-primary:hover {
    color: #ff6347;
}

.contact-directions-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff6347;
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-directions-link:hover {
    opacity: 0.8;
}

/* Map Card */
.contact-map-card {
    position: relative;
    height: 256px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(0.9);
}

.contact-map-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-map-overlay>div {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 12px;
    border-radius: 8px;
    pointer-events: auto;
}

.contact-map-city {
    font-size: 11px;
    color: #a1a1ae;
    margin-bottom: 2px;
}

.contact-map-address {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.contact-map-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    pointer-events: auto;
    transition: all 0.2s ease;
}

.contact-map-btn:hover {
    border-color: rgba(232, 80, 2, 0.5);
    color: #ff6347;
}

/* Toast Notification */
.contact-form-toast {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form-toast.is-visible {
    display: flex;
}

.contact-form-toast svg {
    flex-shrink: 0;
    stroke: #4ade80;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Submit button loading state */
.contact-submit-btn.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */
.about-page {
    background-color: #0a0a0a;
    color: #fff;
    padding-top: 100px;
}

.about-hero {
    position: relative;
    padding: 100px 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.3));
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-hero-content .heading-h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-top: 16px;
    margin-bottom: 24px;
}

.team-section {
    padding-bottom: 120px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media screen and (max-width: 991px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.team-image-wrap {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background-color: #1a1a1a;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.team-card:hover .team-image {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.05);
}

.team-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.team-name {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.team-role {
    font-size: 13px;
    color: #ff6347;
    font-family: var(--_fonts---body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.team-bio {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.team-socials {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.team-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a1a1ae;
    transition: all 0.2s ease;
}

.team-social-link:hover {
    background-color: #ff6347;
    border-color: #ff6347;
    color: #fff;
}