/* ==========================================================================
   KRD IT SOLUTION — Design System
   Palette   : Deep space navy base, indigo→cyan aurora accent, amber highlight
   Type      : Space Grotesk (display) / Inter (body) / JetBrains Mono (utility)
   Signature : Aurora mesh field + floating "build" terminal in hero
   ========================================================================== */

:root {
    /* -------- Color tokens -------- */
    --bg: #0a0e17;
    --bg-soft: #0e1320;
    --surface: #10162599;
    --surface-solid: #111827;
    --border: #ffffff17;
    --border-soft: #ffffff0d;

    --text-hi: #eef1f8;
    --text-mid: #aab2c5;
    --text-low: #6b7387;

    --indigo: #6e6bff;
    --indigo-soft: #6e6bff22;
    --cyan: #22d3ee;
    --violet: #b06bff;
    --amber: #ffb454;

    --grad-aurora: linear-gradient(120deg, var(--indigo) 0%, var(--violet) 45%, var(--cyan) 100%);
    --grad-text: linear-gradient(90deg, #ffffff 0%, #c9cdfb 100%);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 26px;

    --shadow-glow: 0 0 0 1px var(--border), 0 20px 60px -20px #6e6bff33;

    --ease: cubic-bezier(.16, .8, .24, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text-mid);
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
}

/* Base aurora wash behind entire site */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(900px 500px at 12% -10%, #6e6bff26, transparent 60%),
        radial-gradient(700px 460px at 105% 10%, #22d3ee1f, transparent 60%),
        radial-gradient(800px 500px at 50% 120%, #b06bff1c, transparent 60%);
}

/* Fine noise/grid texture for depth */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(var(--border-soft) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 50% 0%, black, transparent 75%);
    opacity: .5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    color: var(--text-hi);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0;
}

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

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

.container {
    max-width: 1240px;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.02em;
}

.text-gradient {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.aurora-text {
    background: var(--grad-aurora);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* -------- Eyebrow / kicker -------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cyan);
    background: #22d3ee14;
    border: 1px solid #22d3ee33;
    padding: 6px 14px 6px 10px;
    border-radius: 999px;
    margin-bottom: 22px;
}

.eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
}

/* -------- Section rhythm -------- */
.section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(160deg, #6e6bff26, #0e1320);
}

.section-sm {
    padding: 80px 0;
}

@media (max-width:991px) {
    .section {
        padding: 84px 0;
    }

    .section-sm {
        padding: 56px 0;
    }
}

.section-head {
    max-width: 640px;
    margin-bottom: 64px;
}

.section-head.mx-auto {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.75rem);
    line-height: 1.15;
    margin-top: 14px;
}

.section-head p {
    margin-top: 16px;
    font-size: 1.05rem;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.krd-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all .4s var(--ease);
    border-bottom: 1px solid transparent;
}

.krd-nav.is-scrolled {
    padding: 10px 0;
    background: #0a0e17cc;
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid var(--border);
}

.krd-nav .navbar-brand img {
    height: 36px;
    width: auto;
}

.krd-nav .nav-link {
    color: var(--text-mid);
    font-weight: 500;
    font-size: .95rem;
    padding: 8px 16px !important;
    border-radius: 999px;
    transition: all .25s var(--ease);
    position: relative;
}

.krd-nav .nav-link:hover, .krd-nav .nav-link.active {
    color: var(--text-hi);
    background: #ffffff0d;
}

.krd-nav .navbar-toggler {
    border: 1px solid var(--border);
    color: var(--text-hi);
}

.krd-nav .navbar-toggler:focus {
    box-shadow: none;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--grad-aurora);
    z-index: 1100;
    width: 0%;
    transition: width .1s linear;
}

/* -------- Buttons -------- */
.btn-krd-primary {
    color: var(--cyan) !important;
    background: #22d3ee14 !important;
    border: 1px solid #22d3ee33 !important;
    font-weight: 600;
    border: none;
    padding: 12px 26px;
    border-radius: 999px;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 5px 10px 24px -8px #6e6bff66;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.btn-krd-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -8px #6e6bff88;
    color: #04060c;
}

.btn-krd-outline {
    background: transparent;
    color: var(--text-hi);
    font-weight: 500;
    border: 1px solid var(--border);
    padding: 11px 24px;
    border-radius: 999px;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s var(--ease);
}

.btn-krd-outline:hover {
    background: #ffffff0d;
    border-color: #ffffff33;
    color: var(--text-hi);
}

.btn-sm-pill {
    padding: 8px 18px;
    font-size: .85rem;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background: var(--grad-aurora);
    filter: blur(120px);
    opacity: .22;
    top: -220px;
    right: -180px;
    z-index: -1;
    animation: auroraDrift 14s ease-in-out infinite alternate;
}

@keyframes auroraDrift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-40px, 50px) scale(1.12);
    }
}

.hero .kicker-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    line-height: 1.08;
}

.hero p.lead {
    font-size: 1.12rem;
    max-width: 520px;
    margin-top: 22px;
    color: var(--text-mid);
}

.hero-cta {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    flex-wrap: wrap;
}

.hero-stats .stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: var(--text-hi);
    font-weight: 700;
}

.hero-stats .stat-label {
    font-size: .82rem;
    color: var(--text-low);
    margin-top: 2px;
}

/* -------- Hero visual: floating terminal card -------- */
.hero-visual {
    position: relative;
    height: 100%;
    min-height: 420px;
}

.build-card {
    position: relative;
    background: linear-gradient(180deg, #121a2ccc, #0d1220cc);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-glow);
    max-width: 460px;
    margin-left: auto;
    animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-14px);
    }
}

.build-card .dots {
    display: flex;
    gap: 6px;
    margin-bottom: 18px;
}

.build-card .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff22;
}

.build-card .dots span:nth-child(1) {
    background: #ff6363;
}

.build-card .dots span:nth-child(2) {
    background: #ffbd44;
}

.build-card .dots span:nth-child(3) {
    background: #3fd97f;
}

.build-card pre {
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: .82rem;
    color: #9aa3c0;
    white-space: pre-wrap;
}

.build-card .line {
    margin-bottom: 6px;
}

.build-card .ok {
    color: #3fd97f;
}

.build-card .accent {
    color: var(--cyan);
}

.build-card .muted {
    color: var(--text-low);
}

.float-chip {
    position: absolute;
    background: var(--surface-solid);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--text-hi);
    box-shadow: 0 10px 30px -8px #000a;
    animation: floatY 5s ease-in-out infinite;
}

.float-chip i {
    color: var(--cyan);
}

.chip-1 {
    top: 6%;
    left: -4%;
    animation-delay: .3s;
}

.chip-2 {
    bottom: 8%;
    left: 6%;
    animation-delay: 1.1s;
}

/* -------- Marquee: trusted companies -------- */
.marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    padding: 28px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 64px;
    width: max-content;
    animation: marquee 26s linear infinite;
}

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

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

.marquee-track span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: var(--text-low);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
   CARDS — services / products / process
   ========================================================================== */
.krd-card {
    background: linear-gradient(180deg, #ffffff08, #ffffff02);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 34px 28px;
    height: 100%;
    transition: all .35s var(--ease);
    position: relative;
    overflow: hidden;
}

.krd-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(320px 160px at var(--mx, 50%) var(--my, 0%), #6e6bff22, transparent 60%);
    opacity: 0;
    transition: opacity .4s var(--ease);
    pointer-events: none;
}

.krd-card:hover::before {
    opacity: 1;
}

.krd-card:hover {
    transform: translateY(-6px);
    border-color: #ffffff2a;
}

.krd-card .icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--indigo-soft);
    color: var(--cyan);
    font-size: 1.4rem;
    margin-bottom: 22px;
}

.krd-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.krd-card p {
    font-size: .94rem;
    margin-bottom: 0;
}

.krd-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: .85rem;
    color: var(--cyan);
    font-weight: 600;
}

/* -------- About section -------- */
.about-visual {
    position: relative;
}

.about-frame {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    background: linear-gradient(160deg, #151b2c, #0c1120);
    aspect-ratio: 4/4.6;
    padding: 2px;
}

.about-frame .inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: calc(var(--radius-lg) - 2px);
    background: #0c1120;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-badge {
    position: absolute;
    bottom: -24px;
    right: -20px;
    background: var(--surface-solid);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 20px 40px -12px #000c;
    z-index: 3;
}

.about-badge .num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    color: var(--text-hi);
    font-weight: 700;
}

.about-badge .lbl {
    font-size: .78rem;
    color: var(--text-low);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-mid);
    font-size: .96rem;
}

.check-list i {
    color: var(--cyan);
    margin-top: 3px;
}

/* -------- Mission / Vision -------- */
.mv-card {
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.mv-card.mission {
    background: linear-gradient(150deg, #6e6bff20, #0e1320);
}

.mv-card.vision {
    background: linear-gradient(150deg, #22d3ee18, #0e1320);
}

.mv-card .mv-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff0d;
    font-size: 1.6rem;
    color: var(--text-hi);
    margin-bottom: 24px;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
}

/* -------- Why choose us -------- */
.why-row {
    display: flex;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid var(--border-soft);
}

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

.why-row .why-num {
    font-family: 'JetBrains Mono', monospace;
    color: var(--cyan);
    font-size: .85rem;
    padding-top: 4px;
    min-width: 44px;
}

.why-row h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.why-row p {
    margin: 0;
    font-size: .94rem;
}

/* -------- Technology stack -------- */
.tech-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #ffffff06;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px 14px;
    transition: all .3s var(--ease);
    height: 100%;
}

.tech-pill:hover {
    transform: translateY(-5px);
    background: #ffffff0d;
    border-color: #6e6bff44;
}

.tech-pill i {
    font-size: 2rem;
    color: var(--text-hi);
}

.tech-pill span {
    font-size: .85rem;
    color: var(--text-mid);
    font-weight: 500;
}

/* -------- Process (timeline) -------- */
.process-track {
    position: relative;
}

.process-track::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

@media (max-width:991px) {
    .process-track::before {
        display: none;
    }
}

.process-step {
    position: relative;
    text-align: left;
}

.process-step .p-index {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--surface-solid);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    color: var(--text-hi);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: .9rem;
}

/* -------- Pricing -------- */
.price-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: #ffffff06;
    padding: 36px 30px;
    height: 100%;
    transition: all .3s var(--ease);
}

.price-card.featured {
    background: linear-gradient(160deg, #6e6bff26, #0e1320);
    border-color: #6e6bff55;
    transform: scale(1.03);
}

.price-card:hover {
    transform: translateY(-6px);
}

.price-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.price-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6rem;
    color: var(--text-hi);
    font-weight: 700;
}

.price-tag small {
    font-size: .9rem;
    color: var(--text-low);
    font-weight: 400;
}

.price-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #0a0e17;
    background: var(--cyan);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.price-feat {
    list-style: none;
    padding: 0;
    margin: 26px 0;
}

.price-feat li {
    display: flex;
    gap: 10px;
    font-size: .9rem;
    padding: 8px 0;
    color: var(--text-mid);
}

.price-feat i {
    color: var(--cyan);
}

/* -------- Testimonials -------- */
.testi-card {
    background: #ffffff06;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px;
    height: 100%;
}

.testi-card .stars {
    color: var(--amber);
    font-size: .9rem;
    margin-bottom: 18px;
}

.testi-card p {
    font-size: 1rem;
    color: var(--text-mid);
}

.testi-person {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-aurora);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #0a0e17;
}

.testi-name {
    color: var(--text-hi);
    font-weight: 600;
    font-size: .92rem;
}

.testi-role {
    font-size: .8rem;
    color: var(--text-low);
}

/* -------- FAQ -------- */
.accordion-item {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 14px !important;
    margin-bottom: 14px;
    overflow: hidden;
}

.accordion-button {
    background: #ffffff06;
    color: var(--text-hi);
    font-weight: 500;
    font-size: .98rem;
    padding: 20px 24px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #6e6bff14;
    color: var(--text-hi);
}

.accordion-button::after {
    filter: invert(1) brightness(2);
}

.accordion-body {
    background: transparent;
    color: var(--text-mid);
    font-size: .92rem;
    padding: 6px 24px 22px;
}

/* -------- Blog -------- */
.blog-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #ffffff06;
    height: 100%;
    transition: all .3s var(--ease);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: #ffffff2a;
}

.blog-thumb {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #151b2c, #0c1120);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-thumb i {
    font-size: 2.6rem;
    color: #ffffff22;
}

.blog-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    background: #0a0e17cc;
    color: var(--cyan);
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid #22d3ee33;
}

.blog-body {
    padding: 24px;
}

.blog-meta {
    font-size: .78rem;
    color: var(--text-low);
    margin-bottom: 10px;
}

.blog-body h3 {
    font-size: 1.08rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-body p {
    font-size: .88rem;
}

/* -------- Contact -------- */
.contact-panel {
    background: linear-gradient(160deg, #ffffff08, #ffffff02);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px;
}

.form-control, .form-select {
    background: #ffffff08;
    border: 1px solid var(--border);
    color: var(--text-hi);
    border-radius: 12px;
    padding: 13px 16px;
    font-size: .94rem;
}

.form-control:focus, .form-select:focus {
    background: #ffffff0d;
    border-color: #6e6bff88;
    box-shadow: 0 0 0 4px #6e6bff22;
    color: var(--text-hi);
}

.form-control::placeholder {
    color: var(--text-low);
}

.form-label {
    font-size: .86rem;
    color: var(--text-mid);
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.contact-info-item .ci-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--indigo-soft);
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item h5 {
    font-size: .98rem;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: .88rem;
    margin: 0;
}

/* -------- CTA band -------- */
.cta-band {
    border-radius: var(--radius-lg);
    padding: 64px 48px;
    background: linear-gradient(135deg, #6e6bff22, #22d3ee18);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-band h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-band p {
    max-width: 520px;
    margin: 0 auto 30px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.krd-footer {
    background: var(--bg-soft);
    border-top: 1px solid var(--border-soft);
    padding: 80px 0 30px;
}

.krd-footer .f-logo img {
    height: 34px;
    margin-bottom: 18px;
}

.krd-footer p {
    font-size: .9rem;
    max-width: 320px;
}

.krd-footer h6 {
    color: var(--text-hi);
    font-size: .86rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: .9rem;
    color: var(--text-mid);
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--cyan);
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-row a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    transition: all .25s var(--ease);
}

.social-row a:hover {
    background: var(--grad-aurora);
    color: #0a0e17;
    border-color: transparent;
}

.footer-bottom {
    border-top: 1px solid var(--border-soft);
    margin-top: 56px;
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .82rem;
    color: var(--text-low);
}

/* -------- Back to top -------- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-aurora);
    color: #0a0e17;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 12px 30px -8px #6e6bff77;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .35s var(--ease);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* -------- Page hero (inner pages) -------- */
.page-hero {
    padding: 170px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 4.2vw, 3.2rem);
}

.page-hero .breadcrumb-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: .86rem;
    color: var(--text-low);
    margin-top: 18px;
    font-family: 'JetBrains Mono', monospace;
}

.page-hero .breadcrumb-row a {
    color: var(--text-mid);
}

.page-hero .breadcrumb-row a:hover {
    color: var(--cyan);
}

/* -------- SVG divider -------- */
.shape-divider {
    position: relative;
    line-height: 0;
}

.shape-divider svg {
    width: 100%;
    height: 70px;
    display: block;
}

/* -------- Enquiry Modal -------- */
.modal-content.krd-modal {
    background: #111827;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--text-mid);
}

.krd-modal .modal-header {
    border-bottom: 1px solid var(--border-soft);
    padding: 24px 28px;
}

.krd-modal .modal-body {
    padding: 28px;
}

.krd-modal .btn-close {
    filter: invert(1);
    opacity: .6;
}

.krd-modal .modal-title {
    color: var(--text-hi);
    font-family: 'Space Grotesk', sans-serif;
}

/* -------- misc utility -------- */
.divider-soft {
    height: 1px;
    background: var(--border-soft);
    border: none;
    margin: 0;
}

::selection {
    background: #6e6bff55;
    color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: #ffffff1a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffffff33;
}