/* ================================
   AMALTECH SERVICES SDN BHD
   Corporate Website V1
================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #07111f;
    --navy-light: #0d1b2e;
    --blue: #1688ff;
    --cyan: #35d4ff;
    --white: #ffffff;
    --text: #142033;
    --muted: #667085;
    --light: #f5f8fc;
    --border: #e4eaf2;
    --radius: 20px;
    --container: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

button {
    font: inherit;
}

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}

.section {
    padding: 110px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.eyebrow::before {
    content: "";
    width: 25px;
    height: 2px;
    background: var(--blue);
}

h1,
h2,
h3,
h4 {
    line-height: 1.15;
}

h2 {
    font-size: clamp(36px, 4vw, 55px);
    letter-spacing: -2px;
}

h2 span {
    color: var(--blue);
}

/* ================================
   BUTTONS
================================ */

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), #0563e8);
    color: white;
    box-shadow: 0 15px 35px rgba(22, 136, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(22, 136, 255, 0.35);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: white;
    background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.09);
}

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

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

/* ================================
   HEADER
================================ */

.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(7, 17, 31, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 800;
    font-size: 20px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 8px 25px rgba(22, 136, 255, 0.25);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    color: white;
    font-size: 16px;
    letter-spacing: 1.5px;
}

.brand-text span {
    color: #8ea0b8;
    font-size: 10px;
    letter-spacing: 0.8px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-nav a {
    color: #c3cfdd;
    font-size: 13px;
    font-weight: 600;
    transition: 0.2s;
}

.desktop-nav a:hover {
    color: white;
}

.btn-nav {
    min-height: 42px;
    background: var(--blue);
    color: white;
    padding: 0 18px;
}

.menu-toggle {
    display: none;
    color: white;
    border: 0;
    background: transparent;
    font-size: 26px;
    cursor: pointer;
}

/* ================================
   HERO
================================ */

.hero {
    min-height: 820px;
    padding-top: 78px;
    background:
        radial-gradient(circle at 75% 45%, rgba(22, 136, 255, 0.14), transparent 30%),
        linear-gradient(135deg, #07111f 0%, #091729 50%, #07111f 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-grid {
    min-height: 742px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-right: 30px;
}

.hero .eyebrow {
    color: var(--cyan);
}

.hero .eyebrow::before {
    background: var(--cyan);
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(52px, 6vw, 82px);
    letter-spacing: -4px;
    font-weight: 800;
}

.hero h1 span {
    display: block;
    background: linear-gradient(90deg, #ffffff, #55caff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    max-width: 600px;
    margin-top: 28px;
    color: #aebdce;
    font-size: 18px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 38px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 45px;
    color: #7f94aa;
    font-size: 12px;
    font-weight: 600;
}

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

.hero-tags span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan);
}

/* ================================
   HERO TECH ORBIT
================================ */

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-orbit {
    width: 500px;
    height: 500px;
    position: relative;
    display: grid;
    place-items: center;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(74, 188, 255, 0.18);
    border-radius: 50%;
}

.orbit-one {
    width: 470px;
    height: 470px;
}

.orbit-two {
    width: 340px;
    height: 340px;
}

.orbit-three {
    width: 215px;
    height: 215px;
    border-color: rgba(74, 188, 255, 0.3);
}

.core {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(10, 27, 48, 0.92);
    border: 1px solid rgba(53, 212, 255, 0.35);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow:
        0 0 60px rgba(22, 136, 255, 0.18),
        inset 0 0 30px rgba(22, 136, 255, 0.08);
    z-index: 5;
}

.core-logo {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    font-size: 28px;
    font-weight: 800;
}

.core span {
    font-size: 9px;
    letter-spacing: 2px;
    margin-top: 12px;
    color: #a9c9dd;
}

.orbit-item {
    position: absolute;
    min-width: 60px;
    height: 60px;
    padding: 0 12px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #0c1c30;
    border: 1px solid rgba(53, 212, 255, 0.25);
    color: #b9eaff;
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
}

.item-one {
    top: 55px;
    left: 90px;
}

.item-two {
    top: 110px;
    right: 35px;
}

.item-three {
    bottom: 65px;
    right: 100px;
}

.item-four {
    bottom: 120px;
    left: 20px;
}

/* ================================
   TRUST
================================ */

.trust-strip {
    background: #0a1626;
    color: white;
    border-top: 1px solid rgba(255,255,255,.06);
}

.trust-content {
    min-height: 92px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trust-content > p {
    color: #b4c2d1;
    font-size: 13px;
}

.trust-points {
    display: flex;
    gap: 30px;
    font-size: 12px;
    color: #8297ad;
}

/* ================================
   SECTION HEADING
================================ */

.section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.section-heading p {
    max-width: 640px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 16px;
}

.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.centered .eyebrow {
    justify-content: center;
}

/* ================================
   SOLUTIONS
================================ */

.solutions {
    background: var(--white);
}

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

.solution-card {
    position: relative;
    min-height: 350px;
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    transition: 0.3s ease;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-7px);
    border-color: #b9d9ff;
    box-shadow: 0 25px 55px rgba(19, 49, 82, 0.1);
}

.card-number {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 12px;
    color: #a6b1c0;
}

.card-icon {
    width: 55px;
    height: 55px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: #edf6ff;
    color: var(--blue);
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 32px;
}

.solution-card h3 {
    font-size: 21px;
    margin-bottom: 16px;
}

.solution-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.solution-card a {
    position: absolute;
    left: 35px;
    bottom: 30px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.featured-card {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.featured-card p {
    color: #9eafc1;
}

.featured-card .card-icon {
    background: rgba(53, 212, 255, .1);
    color: var(--cyan);
}

/* ================================
   WHY AMALTECH
================================ */

.why-section {
    background: var(--light);
}

.why-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.why-intro {
    position: sticky;
    top: 130px;
}

.why-intro p {
    color: var(--muted);
    margin-top: 25px;
    max-width: 500px;
}

.why-list {
    border-top: 1px solid #dbe3ed;
}

.why-item {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 20px;
    padding: 32px 0;
    border-bottom: 1px solid #dbe3ed;
}

.why-item > span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.why-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.why-item p {
    color: var(--muted);
    font-size: 14px;
}

/* ================================
   AI SECTION
================================ */

.ai-section {
    background: var(--navy);
    color: white;
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.ai-panel {
    min-height: 420px;
    padding: 35px;
    border-radius: 25px;
    background:
        radial-gradient(circle at 70% 30%, rgba(22,136,255,.2), transparent 35%),
        #0c1b2e;
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ai-badge {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--cyan);
    font-weight: 800;
}

.ai-interface {
    padding: 28px;
    border-radius: 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.ai-dot {
    width: 10px;
    height: 10px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--cyan);
    margin-bottom: 20px;
}

.ai-interface p {
    font-size: 17px;
    margin-bottom: 24px;
}

.ai-line {
    width: 90%;
    height: 6px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    margin-top: 10px;
}

.ai-line.short {
    width: 60%;
}

.ai-content p {
    margin-top: 25px;
    color: #9fb0c3;
    line-height: 1.9;
}

.text-link {
    display: inline-block;
    margin-top: 30px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 700;
}

/* ================================
   PROCESS
================================ */

.process-section {
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 65px;
    border-top: 1px solid var(--border);
}

.process-step {
    position: relative;
    padding: 45px 30px 20px 0;
}

.process-step:not(:last-child) {
    border-right: 1px solid var(--border);
    padding-right: 30px;
    margin-right: 30px;
}

.process-number {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 35px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 14px;
}

.process-step p {
    color: var(--muted);
    font-size: 13px;
}

/* ================================
   CTA
================================ */

.cta-section {
    padding: 40px 0 100px;
    background: white;
}

.cta-box {
    min-height: 330px;
    padding: 60px;
    border-radius: 25px;
    background:
        radial-gradient(circle at 85% 40%, rgba(53,212,255,.15), transparent 30%),
        linear-gradient(135deg, #0874ec, #0752bf);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.cta-box .eyebrow {
    color: #b9eaff;
}

.cta-box .eyebrow::before {
    background: #b9eaff;
}

.cta-box h2 {
    max-width: 700px;
}

.cta-box h2 span {
    color: white;
}

.cta-box p {
    max-width: 580px;
    color: #d6eaff;
    margin-top: 20px;
}

.cta-actions {
    min-width: 210px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
}

.cta-email {
    color: #d9edff;
    font-size: 12px;
    text-align: center;
}

/* ================================
   FOOTER
================================ */

.site-footer {
    padding: 75px 0 25px;
    background: #06101c;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 70px;
    padding-bottom: 65px;
}

.footer-brand p {
    color: #7f93aa;
    max-width: 320px;
    font-size: 13px;
    margin-top: 25px;
}

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

.footer-column h4 {
    font-size: 12px;
    margin-bottom: 10px;
    color: #d7e0ea;
}

.footer-column a,
.footer-column p {
    color: #71869c;
    font-size: 12px;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.07);
    display: flex;
    justify-content: space-between;
    color: #536b83;
    font-size: 10px;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1000px) {

    .desktop-nav,
    .btn-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 130px 0 90px;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-visual {
        margin-top: 60px;
    }

    .tech-orbit {
        width: 420px;
        height: 420px;
    }

    .orbit-one {
        width: 400px;
        height: 400px;
    }

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

    .why-grid,
    .ai-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-intro {
        position: static;
    }

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

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

}

@media (max-width: 700px) {

    .section {
        padding: 80px 0;
    }

    .hero-grid {
        padding-top: 110px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -2.5px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-tags {
        gap: 12px 20px;
    }

    .hero-visual {
        display: none;
    }

    .trust-content {
        padding: 25px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .trust-points {
        flex-direction: column;
        gap: 8px;
    }

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

    .solution-card {
        min-height: 320px;
    }

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

    .process-step:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid var(--border);
        margin-right: 0;
    }

    .cta-box {
        padding: 40px 28px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

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

}

@media (max-width: 420px) {

    .brand-text span {
        display: none;
    }

    .hero h1 {
        font-size: 41px;
    }

    h2 {
        font-size: 35px;
        letter-spacing: -1.5px;
    }

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

}/* MOBILE NAVIGATION */

@media (max-width: 1000px) {

    .desktop-nav.mobile-open {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;

        top: 78px;
        left: 0;
        width: 100%;

        padding: 15px 4% 25px;

        background: rgba(7, 17, 31, 0.98);
        border-bottom: 1px solid rgba(255,255,255,.08);
        box-shadow: 0 20px 40px rgba(0,0,0,.25);
    }

    .desktop-nav.mobile-open a {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,.06);
        font-size: 14px;
    }

}/* OFFICIAL AMALTECH LOGO */

.brand-logo {
    display: inline-flex;
    align-items: center;
}

.official-logo {
    display: block;
    width: auto;
    height: 52px;
    object-fit: contain;
}

@media (max-width: 700px) {
    .official-logo {
        height: 44px;
    }
}.footer-logo {
    height: 62px;
}

@media (max-width: 700px) {
    .footer-logo {
        height: 54px;
    }
}/* =====================================================
   AMALTECH HERO V2
===================================================== */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    padding: 150px 0 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.18), transparent 32%),
        radial-gradient(circle at 85% 35%, rgba(6, 182, 212, 0.14), transparent 30%),
        #050914;
}

.hero-v2 {
    position: relative;
    z-index: 3;
    text-align: center;
}

/* STATUS */

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 15px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
    color: #b8c4d8;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 32px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34,197,94,.8);
}

/* BIG HEADLINE */

.hero-v2 h1 {
    max-width: 1000px;
    margin: 0 auto;
    color: #ffffff;
    font-size: clamp(58px, 8vw, 118px);
    line-height: .92;
    letter-spacing: -6px;
    font-weight: 800;
}

.gradient-text {
    display: block;
    background: linear-gradient(
        90deg,
        #60a5fa,
        #22d3ee,
        #a78bfa
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-bottom: 10px;
}

.hero-description {
    max-width: 670px;
    margin: 32px auto 0;
    color: #9eabc0;
    font-size: 19px;
    line-height: 1.7;
}

/* BUTTONS */

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 35px;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 23px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    transition: all .25s ease;
}

.hero-actions .btn-primary {
    color: #06101e;
    background: #ffffff;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,255,255,.15);
}

.hero-actions .btn-secondary {
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.04);
}

.hero-actions .btn-secondary:hover {
    background: rgba(255,255,255,.09);
    transform: translateY(-3px);
}

/* MINI BENTO CARDS */

.hero-mini-grid {
    max-width: 950px;
    margin: 70px auto 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.mini-card {
    min-height: 150px;
    padding: 22px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 1px solid rgba(255,255,255,.09);
    border-radius: 20px;

    background: rgba(255,255,255,.035);
    backdrop-filter: blur(14px);

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.mini-card:hover {
    transform: translateY(-7px);
    border-color: rgba(96,165,250,.35);
    background: rgba(255,255,255,.07);
}

.mini-card > span {
    color: #66758d;
    font-size: 12px;
    font-weight: 700;
}

.mini-card strong {
    color: #ffffff;
    font-size: 19px;
}

.mini-card small {
    color: #8f9db1;
    line-height: 1.5;
}

.mini-card-highlight {
    background:
        linear-gradient(
            145deg,
            rgba(37,99,235,.20),
            rgba(6,182,212,.08)
        );
    border-color: rgba(96,165,250,.22);
}

.live-dot {
    width: 9px;
    height: 9px;
    display: block;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34,197,94,.7);
}

/* BACKGROUND GLOW */

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.blob-one {
    width: 380px;
    height: 380px;
    top: 80px;
    left: -180px;
    background: rgba(37,99,235,.16);
}

.blob-two {
    width: 420px;
    height: 420px;
    top: 160px;
    right: -220px;
    background: rgba(6,182,212,.11);
}

/* MARQUEE */

.hero-marquee {
    position: relative;
    z-index: 3;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.025);
}

.marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 15px 0;
    animation: amaltech-marquee 24s linear infinite;
}

.marquee-track span {
    color: #738198;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.marquee-track i {
    color: #22d3ee;
    font-style: normal;
}

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

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

/* MOBILE */

@media (max-width: 850px) {

    .hero {
        min-height: auto;
        padding-top: 125px;
    }

    .hero-v2 h1 {
        font-size: clamp(52px, 15vw, 82px);
        letter-spacing: -4px;
    }

    .hero-mini-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 55px;
    }
}

@media (max-width: 550px) {

    .hero-status {
        font-size: 11px;
    }

    .hero-v2 h1 {
        letter-spacing: -3px;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-mini-grid {
        grid-template-columns: 1fr;
    }
}/* LOGO VISIBILITY FIX */

.brand-logo {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.official-logo {
    height: 46px;
    width: auto;
    display: block;
}

@media (max-width: 700px) {
    .official-logo {
        height: 40px;
    }

    .brand-logo {
        padding: 6px 10px;
    }
}/* =====================================================
   COMPACT FOOTER
===================================================== */

.footer-compact {
    padding: 22px 0;
    background: #050914;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-compact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-logo {
    display: block;
    width: auto;
    height: 36px;
    padding: 5px 8px;
    background: #ffffff;
    border-radius: 8px;
}

.footer-tagline {
    color: #aab5c6;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.footer-tagline span {
    color: #22d3ee;
    margin: 0 3px;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #718096;
    font-size: 12px;
}

.footer-info a {
    color: #aab5c6;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-info a:hover {
    color: #22d3ee;
}

.footer-divider {
    color: #334155;
}

.footer-copy {
    color: #66758d;
    font-size: 11px;
    white-space: nowrap;
}

@media (max-width: 950px) {

    .footer-compact-inner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 12px 24px;
    }
}

@media (max-width: 600px) {

    .footer-compact {
        padding: 24px 0;
    }

    .footer-compact-inner {
        flex-direction: column;
        gap: 10px;
    }

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

    .footer-divider {
        display: none;
    }
}/* =====================================================
   SOLUTIONS V2 — BENTO
===================================================== */

.solutions-v2 {
    padding: 120px 0;
    background: #f5f7fb;
}

.solutions-heading {
    max-width: 780px;
    margin-bottom: 55px;
}

.section-kicker {
    margin-bottom: 18px;
    color: #2563eb;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

.solutions-heading h2 {
    margin: 0;
    color: #07101f;
    font-size: clamp(52px, 6vw, 82px);
    line-height: .95;
    letter-spacing: -4px;
}

.solutions-heading h2 span {
    color: #9aa5b5;
}

.solutions-heading p {
    max-width: 650px;
    margin-top: 25px;
    color: #667085;
    font-size: 17px;
    line-height: 1.7;
}

/* GRID */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(260px, auto);
    gap: 14px;
}

.bento-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #ffffff;
    border: 1px solid #e7eaf0;
    border-radius: 26px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.bento-card:hover {
    transform: translateY(-6px);
    border-color: #cbd5e1;
    box-shadow: 0 24px 60px rgba(15,23,42,.09);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 535px;

    background:
        radial-gradient(circle at 80% 10%, rgba(37,99,235,.16), transparent 35%),
        #07101f;
    border-color: #07101f;
}

.bento-wide {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
}

/* TOP */

.bento-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bento-number {
    color: #9aa5b5;
    font-size: 11px;
    font-weight: 800;
}

.bento-large .bento-number,
.bento-ai .bento-number {
    color: rgba(255,255,255,.45);
}

.bento-pill {
    padding: 7px 10px;
    color: #93c5fd;
    background: rgba(59,130,246,.12);
    border: 1px solid rgba(96,165,250,.20);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* CONTENT */

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-content h3 {
    margin: 0 0 14px;
    color: #07101f;
    font-size: 29px;
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.bento-content p {
    margin: 0;
    max-width: 450px;
    color: #7a8699;
    font-size: 14px;
    line-height: 1.65;
}

.bento-large .bento-content h3,
.bento-ai .bento-content h3 {
    color: #ffffff;
}

.bento-large .bento-content h3 {
    font-size: clamp(38px, 4vw, 58px);
    letter-spacing: -3px;
}

.bento-large .bento-content p,
.bento-ai .bento-content p {
    color: #98a7bd;
}

/* DECORATIVE ARROW */

.bento-icon {
    position: absolute;
    top: 100px;
    right: 35px;

    width: 100px;
    height: 100px;

    display: grid;
    place-items: center;

    color: #ffffff;
    background: #2563eb;
    border-radius: 50%;

    font-size: 42px;

    transform: rotate(0deg);
    transition: transform .35s ease;
}

.bento-large:hover .bento-icon {
    transform: rotate(45deg);
}

/* TAG */

.bento-tag {
    width: fit-content;
    padding: 7px 9px;
    color: #7a8699;
    background: #f4f6f9;
    border-radius: 7px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* AI CARD */

.bento-ai {
    color: white;
    background:
        radial-gradient(circle at 70% 70%, rgba(34,211,238,.22), transparent 38%),
        linear-gradient(145deg, #111827, #08111f);
    border-color: #182337;
}

.ai-live {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #67e8f9;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.ai-live i {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
}

.ai-orb {
    position: absolute;
    width: 150px;
    height: 150px;
    right: -55px;
    bottom: -55px;

    background: linear-gradient(
        145deg,
        #2563eb,
        #22d3ee,
        #8b5cf6
    );

    border-radius: 50%;
    filter: blur(2px);
    opacity: .65;
}

/* E-INVOICE */

.invoice-visual {
    min-width: 130px;
    height: 145px;
    padding: 18px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #07101f;
    border-radius: 18px;
    transform: rotate(4deg);
}

.invoice-visual span {
    color: #22d3ee;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.invoice-visual strong {
    color: #ffffff;
    font-size: 38px;
}

.invoice-visual small {
    color: #718096;
    font-size: 9px;
    font-weight: 700;
}

/* RESPONSIVE */

@media (max-width: 950px) {

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

    .bento-large {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {

    .solutions-v2 {
        padding: 85px 0;
    }

    .solutions-heading h2 {
        letter-spacing: -3px;
    }

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

    .bento-card,
    .bento-large,
    .bento-wide {
        grid-column: span 1;
        grid-row: auto;
        min-height: 260px;
    }

    .bento-large {
        min-height: 430px;
    }

    .bento-wide {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .invoice-visual {
        width: 130px;
        align-self: flex-end;
    }
}/* =====================================================
   WHY AMALTECH V2
===================================================== */

.why-v2 {
    position: relative;
    padding: 130px 0 90px;
    overflow: hidden;
    background: #07101f;
}

.why-layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 100px;
    align-items: start;
}

.why-kicker {
    color: #67e8f9;
}

.why-left h2 {
    margin: 0;
    max-width: 760px;

    color: #ffffff;
    font-size: clamp(48px, 5.4vw, 78px);
    line-height: .98;
    letter-spacing: -4px;
}

.why-left h2 span {
    display: block;
    margin-top: 18px;

    background: linear-gradient(
        90deg,
        #60a5fa,
        #22d3ee,
        #a78bfa
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* RIGHT SIDE */

.why-intro {
    margin: 35px 0 45px;

    color: #a1aec0;
    font-size: 18px;
    line-height: 1.7;
}

.why-points {
    border-top: 1px solid rgba(255,255,255,.1);
}

.why-point {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;

    padding: 27px 0;

    border-bottom: 1px solid rgba(255,255,255,.1);

    transition: padding-left .25s ease;
}

.why-point:hover {
    padding-left: 8px;
}

.why-number {
    padding-top: 4px;

    color: #475569;
    font-size: 10px;
    font-weight: 800;
}

.why-point h3 {
    margin: 0 0 8px;

    color: #ffffff;
    font-size: 19px;
    letter-spacing: -.5px;
}

.why-point p {
    margin: 0;

    color: #77869c;
    font-size: 13px;
    line-height: 1.65;
}

/* BOTTOM LINE */

.why-bottom {
    margin-top: 100px;
    padding-top: 25px;

    display: flex;
    align-items: center;
    gap: 17px;

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

    color: #59677c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.why-bottom i {
    color: #22d3ee;
    font-style: normal;
}

.why-bottom strong {
    margin-left: auto;

    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0;
}

/* MOBILE */

@media (max-width: 900px) {

    .why-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-intro {
        margin-top: 0;
    }

    .why-bottom {
        margin-top: 65px;
        flex-wrap: wrap;
    }

    .why-bottom strong {
        width: 100%;
        margin: 10px 0 0;
    }
}

@media (max-width: 600px) {

    .why-v2 {
        padding: 90px 0 65px;
    }

    .why-left h2 {
        letter-spacing: -3px;
    }

    .why-bottom {
        gap: 10px;
    }
}/* =====================================================
   AMALTECH AI EXPERIENCE V2
===================================================== */

.ai-v2 {
    padding: 130px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 50%, rgba(37,99,235,.08), transparent 30%),
        #f5f7fb;
}

.ai-v2-shell {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: center;
}

/* COPY */

.ai-v2-label {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 24px;

    color: #2563eb;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.ai-v2-label > span {
    width: 8px;
    height: 8px;

    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(34,197,94,.55);
}

.ai-v2-copy h2 {
    margin: 0;

    color: #07101f;
    font-size: clamp(55px, 6vw, 88px);
    line-height: .91;
    letter-spacing: -5px;
}

.ai-v2-copy h2 span {
    background: linear-gradient(
        90deg,
        #2563eb,
        #06b6d4,
        #8b5cf6
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ai-v2-copy > p {
    max-width: 520px;
    margin: 30px 0;

    color: #667085;
    font-size: 16px;
    line-height: 1.75;
}

/* CAPABILITY PILLS */

.ai-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-bottom: 35px;
}

.ai-capabilities span {
    padding: 8px 12px;

    color: #475569;
    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 999px;

    font-size: 10px;
    font-weight: 700;
}

/* LINK */

.ai-v2-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    color: #07101f;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.ai-v2-link > span {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    color: #ffffff;
    background: #07101f;
    border-radius: 50%;

    transition: transform .25s ease;
}

.ai-v2-link:hover > span {
    transform: translate(4px, -4px);
}


/* AI DEMO AREA */

.ai-demo {
    position: relative;
    padding: 35px;
}

.ai-window {
    position: relative;
    z-index: 2;

    overflow: hidden;

    background: #07101f;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 28px;

    box-shadow:
        0 40px 100px rgba(15,23,42,.18),
        0 0 0 8px rgba(255,255,255,.5);
}

/* WINDOW TOP */

.ai-window-top {
    height: 58px;
    padding: 0 20px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    border-bottom: 1px solid rgba(255,255,255,.08);

    color: #64748b;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots i {
    width: 7px;
    height: 7px;

    background: #334155;
    border-radius: 50%;
}

.ai-online {
    justify-self: end;

    display: flex;
    align-items: center;
    gap: 6px;

    color: #64748b;
}

.ai-online i {
    width: 6px;
    height: 6px;

    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34,197,94,.8);
}

/* CHAT */

.ai-chat {
    min-height: 440px;
    padding: 35px;
}

.chat-date {
    margin-bottom: 35px;

    color: #475569;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-align: center;
}

.chat-user {
    max-width: 72%;
    margin-left: auto;
    margin-bottom: 32px;
}

.chat-user > span {
    display: block;
    margin: 0 8px 7px 0;

    color: #64748b;
    font-size: 9px;
    text-align: right;
}

.chat-user p {
    margin: 0;
    padding: 15px 18px;

    color: #dbeafe;
    background: #172033;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 18px 18px 4px 18px;

    font-size: 13px;
    line-height: 1.55;
}

.chat-ai {
    max-width: 82%;
}

.chat-ai-name {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 9px;

    color: #94a3b8;
    font-size: 10px;
    font-weight: 700;
}

.ai-avatar {
    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    color: #ffffff;

    background: linear-gradient(
        145deg,
        #2563eb,
        #06b6d4
    );

    border-radius: 8px;

    font-size: 11px;
    font-weight: 900;
}

.chat-ai-message {
    margin-left: 36px;
}

.chat-ai-message > p {
    margin: 0 0 14px;

    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

.ai-suggestion {
    margin-top: 7px;
    padding: 10px 12px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #9eabc0;
    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;

    font-size: 11px;
}

.ai-suggestion span {
    color: #22d3ee;
    font-size: 9px;
    font-weight: 800;
}

/* INPUT */

.ai-input-fake {
    margin: 0 22px 22px;
    padding: 9px 9px 9px 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #536176;
    background: #0d1728;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;

    font-size: 11px;
}

.ai-input-fake button {
    width: 35px;
    height: 35px;

    color: #07101f;
    background: #ffffff;

    border: 0;
    border-radius: 10px;

    font-size: 16px;
    font-weight: 900;
}

/* FLOATING DATA */

.ai-floating-card {
    position: absolute;
    z-index: 3;

    padding: 13px 16px;

    background: rgba(255,255,255,.92);
    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,.8);
    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(15,23,42,.12);
}

.ai-float-one {
    top: 5px;
    right: -5px;
}

.ai-float-one small {
    display: block;

    color: #94a3b8;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.ai-float-one strong {
    display: block;
    margin-top: 3px;

    color: #07101f;
    font-size: 14px;
}

.ai-float-two {
    left: 0;
    bottom: 70px;

    display: flex;
    align-items: center;
    gap: 8px;

    color: #07101f;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 7px;
    height: 7px;

    background: #22c55e;
    border-radius: 50%;

    box-shadow: 0 0 10px rgba(34,197,94,.8);

    animation: ai-pulse 1.8s infinite;
}

@keyframes ai-pulse {

    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .45;
        transform: scale(.75);
    }
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .ai-v2-shell {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ai-v2-copy {
        max-width: 700px;
    }

    .ai-demo {
        max-width: 700px;
        width: 100%;
        margin: auto;
    }
}

@media (max-width: 600px) {

    .ai-v2 {
        padding: 90px 0;
    }

    .ai-v2-copy h2 {
        letter-spacing: -3px;
    }

    .ai-demo {
        padding: 15px 0;
    }

    .ai-window {
        border-radius: 20px;
    }

    .ai-chat {
        min-height: 420px;
        padding: 25px 18px;
    }

    .chat-user,
    .chat-ai {
        max-width: 90%;
    }

    .ai-floating-card {
        display: none;
    }
}/* =====================================================
   PROCESS V2 — SYSTEM PIPELINE
===================================================== */

.process-v2 {
    padding: 130px 0;
    background: #ffffff;
}

.process-head {
    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 65px;
}

.process-head h2 {
    margin: 0;

    color: #07101f;
    font-size: clamp(54px, 6vw, 86px);
    line-height: .92;
    letter-spacing: -5px;
}

.process-head h2 span {
    color: #9aa5b5;
}

.process-head > p {
    max-width: 520px;
    margin: 0 0 5px;

    color: #667085;
    font-size: 16px;
    line-height: 1.75;
}


/* SYSTEM SHELL */

.process-system {
    overflow: hidden;

    background: #07101f;
    border: 1px solid #182337;
    border-radius: 28px;

    box-shadow: 0 30px 80px rgba(15,23,42,.10);
}

.process-system-top {
    min-height: 62px;
    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,.08);

    color: #526176;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.system-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.system-dot {
    width: 7px;
    height: 7px;

    background: #22c55e;
    border-radius: 50%;

    box-shadow: 0 0 10px rgba(34,197,94,.7);
}


/* TRACK */

.process-track {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    padding: 60px 35px 65px;
}

.process-track::before {
    content: "";

    position: absolute;
    top: 84px;
    left: 12%;
    right: 12%;

    height: 1px;

    background: linear-gradient(
        90deg,
        #2563eb,
        #22d3ee,
        #8b5cf6
    );

    opacity: .45;
}

.process-step {
    position: relative;
    z-index: 2;

    padding: 0 20px;
}

.process-node {
    width: 48px;
    height: 48px;

    margin-bottom: 38px;

    display: grid;
    place-items: center;

    color: #64748b;
    background: #0d1728;

    border: 1px solid #273449;
    border-radius: 50%;

    font-size: 10px;
    font-weight: 900;

    transition: all .3s ease;
}

.process-step:hover .process-node {
    color: #ffffff;

    border-color: #2563eb;

    transform: scale(1.08);
}

.process-node-active {
    color: #07101f;

    background: #ffffff;
    border-color: #ffffff;

    box-shadow:
        0 0 0 8px rgba(37,99,235,.10),
        0 0 35px rgba(34,211,238,.18);
}


/* CONTENT */

.process-step-content small {
    display: block;
    margin-bottom: 9px;

    color: #22d3ee;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.process-step-content h3 {
    margin: 0 0 13px;

    color: #ffffff;
    font-size: 25px;
    letter-spacing: -1px;
}

.process-step-content p {
    margin: 0;

    color: #77869c;
    font-size: 12px;
    line-height: 1.7;
}


/* SYSTEM BOTTOM */

.process-system-bottom {
    min-height: 62px;
    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-top: 1px solid rgba(255,255,255,.08);
}

.process-ready {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #64748b;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

.process-ready > span {
    width: 7px;
    height: 7px;

    background: #22c55e;
    border-radius: 50%;

    box-shadow: 0 0 10px rgba(34,197,94,.7);
}

.process-message {
    color: #526176;
    font-size: 10px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .process-head {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .process-track {
        grid-template-columns: 1fr 1fr;
        gap: 55px 15px;
    }

    .process-track::before {
        display: none;
    }

    .process-node {
        margin-bottom: 22px;
    }
}

@media (max-width: 600px) {

    .process-v2 {
        padding: 90px 0;
    }

    .process-head h2 {
        letter-spacing: -3px;
    }

    .process-track {
        grid-template-columns: 1fr;
        padding: 40px 25px;
        gap: 40px;
    }

    .process-step {
        padding: 0;
    }

    .process-step {
        display: grid;
        grid-template-columns: 50px 1fr;
        gap: 18px;
    }

    .process-node {
        width: 42px;
        height: 42px;
        margin: 0;
    }

    .process-system-bottom {
        padding: 18px 25px;
        align-items: flex-start;
        flex-direction: column;
    }
}/* =====================================================
   CONTACT V2
===================================================== */

.contact-v2 {
    position: relative;
    overflow: hidden;
    padding: 140px 0 70px;

    background: #050914;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.contact-v2-inner {
    position: relative;
    z-index: 2;
}

/* STATUS */

.contact-status {
    width: fit-content;

    display: flex;
    align-items: center;
    gap: 9px;

    margin: 0 auto 30px;

    color: #718096;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.contact-status span {
    width: 8px;
    height: 8px;

    background: #22c55e;
    border-radius: 50%;

    box-shadow: 0 0 12px rgba(34,197,94,.7);
}


/* HEADLINE */

.contact-v2 h2 {
    max-width: 1000px;
    margin: 0 auto;

    color: #ffffff;

    font-size: clamp(58px, 7.5vw, 110px);
    line-height: .91;
    letter-spacing: -6px;

    text-align: center;
}

.contact-v2 h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #60a5fa,
        #22d3ee,
        #a78bfa
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.contact-lead {
    max-width: 600px;
    margin: 30px auto 0;

    color: #8b98aa;

    font-size: 17px;
    line-height: 1.7;

    text-align: center;
}


/* CONTACT BUTTONS */

.contact-actions {
    max-width: 850px;
    margin: 50px auto 0;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-btn {
    min-height: 105px;
    padding: 20px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 20px;

    text-decoration: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

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

.contact-btn small {
    display: block;
    margin-bottom: 7px;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.contact-btn strong {
    font-size: 20px;
    letter-spacing: -.5px;
}

.contact-btn > span {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    font-size: 19px;

    transition: transform .3s ease;
}

.contact-btn:hover > span {
    transform: rotate(45deg);
}


/* PRIMARY */

.contact-btn-primary {
    color: #07101f;
    background: #ffffff;
}

.contact-btn-primary small {
    color: #64748b;
}

.contact-btn-primary > span {
    color: #ffffff;
    background: #07101f;
}

.contact-btn-primary:hover {
    box-shadow: 0 20px 50px rgba(255,255,255,.09);
}


/* SECONDARY */

.contact-btn-secondary {
    color: #ffffff;

    background: rgba(255,255,255,.045);

    border: 1px solid rgba(255,255,255,.1);
}

.contact-btn-secondary small {
    color: #64748b;
}

.contact-btn-secondary > span {
    color: #07101f;
    background: #22d3ee;
}

.contact-btn-secondary:hover {
    background: rgba(255,255,255,.075);
}


/* BOTTOM DETAILS */

.contact-bottom {
    margin-top: 90px;
    padding-top: 24px;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;

    border-top: 1px solid rgba(255,255,255,.09);
}

.contact-bottom > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-bottom small {
    color: #46556a;

    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.contact-bottom strong {
    color: #9eabc0;

    font-size: 11px;
    font-weight: 600;
}

.contact-availability {
    text-align: right;
}

.contact-availability strong {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 7px;
}

.contact-availability i {
    width: 7px;
    height: 7px;

    background: #22c55e;
    border-radius: 50%;

    box-shadow: 0 0 9px rgba(34,197,94,.7);
}


/* BACKGROUND GLOW */

.contact-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;
}

.contact-glow-one {
    width: 450px;
    height: 450px;

    left: -250px;
    top: 0;

    background: rgba(37,99,235,.16);
}

.contact-glow-two {
    width: 450px;
    height: 450px;

    right: -250px;
    bottom: -100px;

    background: rgba(139,92,246,.12);
}


/* MOBILE */

@media (max-width: 700px) {

    .contact-v2 {
        padding: 100px 0 55px;
    }

    .contact-v2 h2 {
        letter-spacing: -4px;
    }

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

    .contact-bottom {
        margin-top: 60px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .contact-availability strong {
        justify-content: flex-start;
    }
}/* =====================================================
   HEADER V2
===================================================== */

html {
    scroll-behavior: smooth;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    padding: 13px 0;

    background: rgba(5, 9, 20, .78);
    border-bottom: 1px solid rgba(255,255,255,.07);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-v2 {
    display: flex;
    align-items: center;
    gap: 35px;
}

/* LOGO */

.nav-v2 .brand-logo {
    flex-shrink: 0;

    padding: 6px 10px;

    background: rgba(255,255,255,.96);
    border-radius: 11px;

    box-shadow: 0 6px 25px rgba(0,0,0,.12);
}

.nav-v2 .official-logo {
    display: block;
    width: auto;
    height: 40px;
}

/* NAV */

.nav-v2 .nav-links {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-v2 .nav-links a {
    position: relative;

    color: #9aa7ba;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition: color .2s ease;
}

.nav-v2 .nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: #22d3ee;

    transition: width .25s ease;
}

.nav-v2 .nav-links a:hover {
    color: #ffffff;
}

.nav-v2 .nav-links a:hover::after {
    width: 100%;
}

/* CTA */

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 11px 15px;

    color: #07101f;
    background: #ffffff;

    border-radius: 11px;

    font-size: 11px;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);

    box-shadow: 0 10px 30px rgba(255,255,255,.12);
}

.nav-cta span {
    font-size: 14px;
}

/* MOBILE BUTTON */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 17px;
    height: 1px;

    margin: 5px auto;

    background: #ffffff;
}


/* MOBILE */

@media (max-width: 800px) {

    .nav-v2 {
        gap: 12px;
    }

    .nav-v2 .official-logo {
        height: 35px;
    }

    .nav-v2 .nav-links {
        position: absolute;

        top: calc(100% + 1px);
        left: 15px;
        right: 15px;

        margin: 0;
        padding: 20px;

        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;

        background: rgba(7,16,31,.98);

        border: 1px solid rgba(255,255,255,.1);
        border-radius: 16px;

        box-shadow: 0 25px 60px rgba(0,0,0,.25);
    }

    .nav-v2 .nav-links.active {
        display: flex;
    }

    .nav-v2 .nav-links a {
        width: 100%;
        font-size: 14px;
    }

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

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 480px) {

    .nav-cta {
        display: none;
    }

    .menu-toggle {
        margin-left: auto;
    }
}/* =====================================================
   FINAL POLISH — MICRO INTERACTIONS
===================================================== */

/* Smooth button / card behaviour */
a,
button,
.bento-card,
.mini-card,
.process-step,
.why-point {
    -webkit-tap-highlight-color: transparent;
}

/* Better anchor positioning with fixed navbar */
section[id] {
    scroll-margin-top: 90px;
}

/* Selection */
::selection {
    background: #22d3ee;
    color: #07101f;
}

/* Subtle hero entrance */
.hero-status {
    animation: fadeUp .7s ease both;
}

.hero-v2 h1 {
    animation: fadeUp .8s .08s ease both;
}

.hero-description {
    animation: fadeUp .8s .16s ease both;
}

.hero-actions {
    animation: fadeUp .8s .24s ease both;
}

.hero-mini-grid {
    animation: fadeUp .9s .32s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

/* Respect users who disable animations */
@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
