/* ======================================================
   RESET & BASE
====================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: #1f2937;
    background: #ffffff;
    padding-top: 78px; /* fixed header offset */
}

/* ======================================================
   HEADER (ENTERPRISE)
====================================================== */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;

    background: linear-gradient(90deg, #020617, #0f172a);
    border-bottom: 1px solid rgba(255,255,255,0.08);

    transition: transform 0.35s ease, opacity 0.35s ease;
}


.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* BRAND */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
/* Logo background badge */
.brand-logo-wrap {
    background: #ffffff;
    padding: 6px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.brand-link:hover {
    opacity: 0.95;
}

.brand-logo-wrap img {
    height: 48px;
    width: auto;
    display: block;
}
.brand-name {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.brand-tagline {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 2px;
}

/* NAV */
.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    color: #e5e7eb;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.25s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* LOGIN BUTTON */
.btn-login {
    background: #2563eb;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.btn-login:hover {
    background: #1d4ed8;
}

/* ======================================================
   MAIN CONTAINER
====================================================== */

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 32px;
}

/* ======================================================
   HERO SECTION
====================================================== */

.hero {
    background:
        linear-gradient(180deg, #020617 0%, #020617 40%, #ffffff 100%),
        radial-gradient(circle at 20% 20%, rgba(37,99,235,0.15), transparent 40%);
    padding: 120px 32px 100px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 720px;
    animation: fadeUp 0.8s ease forwards;
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #93c5fd;
    margin-bottom: 12px;
    display: inline-block;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
    color: #cbd5f5;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 18px;
}

/* HERO BUTTONS */
.btn-primary {
    background: #2563eb;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: transparent;
    color: #e5e7eb;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.25);
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ======================================================
   TRUST STRIP
====================================================== */

.trust-strip {
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 32px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.trust-item strong {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

.trust-item span {
    font-size: 14px;
    color: #64748b;
}

/* ======================================================
   SERVICES – ENTERPRISE PREMIUM
====================================================== */

.services {
    background: #ffffff;
    padding: 96px 32px;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* CARD */
.service-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 36px 32px;

    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(37,99,235,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: #2563eb;
    stroke-width: 1.8;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 26px;
}

/* CTA */
.service-cta {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;

    opacity: 0;
    transform: translateY(6px);
    transition: all 0.25s ease;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(2,6,23,0.12);
    border-color: #2563eb;
}

.service-card:hover .service-cta {
    opacity: 1;
    transform: translateY(0);
}


/* ======================================================
   FOOTER
====================================================== */

footer {
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #64748b;
}
/* ===============================
   WHY CHOOSE US – ENTERPRISE
================================ */

.why-choose {
    background: #f8fafc;
    padding: 96px 32px;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* CARD */
.why-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 36px 32px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

/* ICON */
.why-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(37,99,235,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.why-icon svg {
    width: 24px;
    height: 24px;
    stroke: #2563eb;
    stroke-width: 1.8;
    fill: none;
}

/* TEXT */
.why-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #475569;
}

/* HOVER */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(2,6,23,0.12);
    border-color: #2563eb;
}


/* ===============================
   HOW WE WORK – PROCESS FLOW
================================ */

.how-we-work {
    background: #ffffff;
    padding: 96px 32px;
}

.how-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* GRID */
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 56px;
}

/* STEP CARD */
.how-step {
    position: relative;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 44px 32px 36px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

/* STEP NUMBER */
.step-number {
    position: absolute;
    top: -18px;
    left: 32px;

    background: #2563eb;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;

    padding: 8px 12px;
    border-radius: 999px;
}

/* TEXT */
.how-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.how-step p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #475569;
}

/* HOVER */
.how-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(2,6,23,0.12);
    border-color: #2563eb;
}


/* ===============================
   FINAL CTA – CONVERSION SECTION
================================ */

.final-cta {
    background:
        linear-gradient(180deg, #020617 0%, #020617 60%, #0f172a 100%);
    padding: 96px 32px;
    text-align: center;
}

.cta-container {
    max-width: 820px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 18px;
    line-height: 1.6;
    color: #cbd5f5;
    margin-bottom: 40px;
}

/* ACTIONS */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* SECONDARY DARK BUTTON */
.btn-secondary-dark {
    background: transparent;
    color: #e5e7eb;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-secondary-dark:hover {
    background: rgba(255,255,255,0.08);
    border-color: #ffffff;
}


/* ===============================
   FOOTER – ENTERPRISE
================================ */

.site-footer {
    background: #020617;
    color: #cbd5f5;
    padding: 72px 32px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

/* BRAND */
.footer-brand h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 360px;
}

/* COLUMNS */
.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14.5px;
    color: #cbd5f5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #60a5fa;
}

/* BOTTOM BAR */
.footer-bottom {
    margin-top: 56px;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    border-top: 1px solid rgba(255,255,255,0.08);
}


/* ===============================
   SERVICES PAGE
================================ */

/* HERO */
.services-hero {
    background: #020617;
    padding: 96px 32px 72px;
}

.services-hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.services-hero p {
    font-size: 18px;
    color: #cbd5f5;
    line-height: 1.6;
}

/* DETAIL */
.services-detail {
    background: #ffffff;
    padding: 96px 32px;
}

.service-block {
    max-width: 900px;
    margin: 0 auto 64px;
}

.service-block h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.service-block p {
    font-size: 15.5px;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 16px;
}

.service-block ul {
    list-style: disc;
    padding-left: 20px;
}

.service-block ul li {
    font-size: 14.5px;
    margin-bottom: 8px;
    color: #475569;
}

/* DELIVERY */
.service-delivery {
    background: #f8fafc;
    padding: 80px 32px;
    text-align: center;
}

.delivery-container {
    max-width: 820px;
    margin: 0 auto;
}

.service-delivery h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.service-delivery p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}


/* ===============================
   FAQ PAGE
================================ */

/* HERO */
.faq-hero {
    background: #020617;
    padding: 96px 32px 72px;
}

.faq-hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.faq-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.faq-hero p {
    font-size: 18px;
    color: #cbd5f5;
    line-height: 1.6;
}

/* FAQ SECTION */
.faq-section {
    padding: 96px 32px;
    background: #ffffff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ ITEM */
.faq-item {
    padding: 28px 0;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #475569;
}


/* ===============================
   SERVICES → FAQ LINK
================================ */

.services-faq-link {
    background: #f8fafc;
    padding: 48px 32px;
}

.services-faq-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-faq-container p {
    font-size: 15.5px;
    color: #475569;
}

.services-faq-container a {
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

.services-faq-container a:hover {
    text-decoration: underline;
}
/* =====================================================
   LEGAL PAGES (CLEAN & FINAL)
===================================================== */

.legal-page {
    padding: 96px 24px;
}

.legal-container {
    max-width: 860px;
    margin: 0 auto;
    background: #ffffff;
    padding: 56px 64px;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(2,6,23,0.08);
}

/* Title */
.legal-container h1 {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
}

/* Intro */
.legal-intro {
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 40px;
    max-width: 720px;
}

/* Section headings */
.legal-container h2 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-top: 36px;
    margin-bottom: 12px;
}

/* Text */
.legal-container p {
    font-size: 15.5px;
    line-height: 1.85;
    color: #334155;
    margin-bottom: 16px;
}

/* Lists */
.legal-container ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-container li {
    font-size: 15.5px;
    line-height: 1.85;
    color: #334155;
    margin-bottom: 8px;
}


/* ===============================
   ABOUT PAGE
================================ */

.about-section {
    padding: 96px 32px;
    background: #ffffff;
}

.about-section.light {
    background: #f8fafc;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.about-container h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.about-container p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

/* GRID */
.grid-2 {
    display: grid;
    gap: 40px;
}

/* LIST */
.about-list {
    margin-top: 16px;
    padding-left: 18px;
}

.about-list li {
    font-size: 15.5px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 8px;
}

/* CTA */
.about-cta {
    background: #020617;
    color: #ffffff;
    padding: 96px 32px;
    text-align: center;
}

.about-cta h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.about-cta p {
    font-size: 16px;
    color: #cbd5f5;
    margin-bottom: 28px;
}


/* ===============================
   AUTH / PLATFORM LOGIN
================================ */

.auth-section {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    padding: 80px 24px;
}

.auth-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.auth-card {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    padding: 48px 40px;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(2,6,23,0.12);
    border: 1px solid #e5e7eb;
}

.auth-card h1 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.auth-subtitle {
    font-size: 14.5px;
    color: #64748b;
    margin-bottom: 32px;
}

/* FORM */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

/* LOGIN BUTTON */
.auth-btn {
    width: 100%;
    margin-top: 10px;
}

/* LINKS */
.auth-links {
    margin-top: 18px;
    text-align: center;
}

.auth-links a {
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}


/* =====================================================
   AUTH (LOGIN PAGE)
===================================================== */

.auth-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    padding: 48px 44px;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(2,6,23,0.12);
}

.auth-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.auth-subtitle {
    font-size: 14.5px;
    color: #64748b;
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}

.form-group label {
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.form-group input {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 14.5px;
}

.form-group input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.15);
}

.auth-btn {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
}

.auth-links {
    margin-top: 20px;
    font-size: 13.5px;
    text-align: center;
}


.section-subtitle.subtitle-tight {
    margin-bottom: 4px;
}

.section-subtitle.subtitle-tight + .section-subtitle.subtitle-tight {
    margin-top: 0;
}

.why-choose .section-subtitle.subtitle-tight {
    margin-bottom: 8px;
}

.why-choose .section-subtitle.subtitle-tight + .section-subtitle.subtitle-tight {
    margin-top: 0;
}
.why-choose .section-subtitle {
    margin-bottom: 8px;
}
.why-choose .why-grid {
    margin-top: 48px;
}
.why-choose .section-subtitle {
    line-height: 1.45;
    margin-bottom: 48px; /* space before cards */
}
.about-cta h2 {
    color: #ffffff;
    opacity: 1;
}

.about-cta p {
    color: #cbd5f5;
}
/* ABOUT – CAPABILITY CARDS */
.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.about-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 36px 32px;

    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.about-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 15px;
    line-height: 1.65;
    color: #475569;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(2,6,23,0.12);
    border-color: #2563eb;
}


/* ABOUT – INDUSTRIES */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.industry-tile {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 22px 20px;
    text-align: center;

    font-size: 15px;
    font-weight: 500;
    color: #0f172a;

    transition: all 0.25s ease;
}

.industry-tile:hover {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 14px 30px rgba(2,6,23,0.1);
}


/* ABOUT – WHY CARDS */
.why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 32px;
}

.why-card-alt {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px 26px;

    font-size: 15.5px;
    line-height: 1.6;
    color: #0f172a;
    font-weight: 500;

    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.why-card-alt:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(2,6,23,0.12);
    border-color: #2563eb;
}


/* ABOUT – WHY EXPAND CARDS */
.why-expand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 36px;
}

.why-expand-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 32px 30px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.why-expand-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.why-summary {
    font-size: 14.5px;
    color: #475569;
    margin-bottom: 0;
}

/* Hidden detail */
.why-detail {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 12px;

    font-size: 14.5px;
    line-height: 1.65;
    color: #475569;

    transition:
        max-height 0.35s ease,
        opacity 0.25s ease;
}

/* Hover expand */
.why-expand-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(2,6,23,0.12);
    border-color: #2563eb;
}

.why-expand-card:hover .why-detail {
    max-height: 200px;
    opacity: 1;
}


/* ABOUT – FINAL WHY CHOOSE (DECISION SECTION) */

.why-final-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    margin-top: 40px;
}

.why-final-card {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px 34px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.why-final-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.why-short {
    font-size: 15px;
    color: #475569;
    margin-bottom: 0;
}

.why-long {
    margin-top: 14px;
    font-size: 14.5px;
    line-height: 1.65;
    color: #475569;

    max-height: 0;
    overflow: hidden;
    opacity: 0;

    transition:
        max-height 0.35s ease,
        opacity 0.25s ease;
}

/* Hover expand */
.why-final-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(2,6,23,0.12);
    border-color: #2563eb;
}

.why-final-card:hover .why-long {
    max-height: 180px;
    opacity: 1;
}


/* SERVICES – CONTEXT LINE */
.service-context {
    font-size: 14.5px;
    font-weight: 500;
    color: #2563eb;
    margin-bottom: 10px;
}
.services-detail {
    background: #ffffff;
    padding: 96px 32px;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 36px;
}

.service-block {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 42px;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Left enterprise accent */
.service-block::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #2563eb;
    border-radius: 16px 0 0 16px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.service-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(2,6,23,0.12);
    border-color: #2563eb;
}

.service-block:hover::before {
    opacity: 1;
}
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.delivery-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 24px 26px;
    border-radius: 14px;
    font-size: 15px;
    color: #334155;
    transition: all 0.25s ease;
}

.delivery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(2,6,23,0.12);
    border-color: #2563eb;
}
.service-block h2 {
    position: relative;
}

.service-block:hover h2 {
    color: #2563eb;
}
.service-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.service-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(37,99,235,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon svg {
    width: 20px;
    height: 20px;
    stroke: #2563eb;
    stroke-width: 1.8;
    fill: none;
}

/* Hover polish */
.service-block:hover .service-icon {
    background: rgba(37,99,235,0.14);
}
/* ===============================
   SERVICE NUMBER BADGES
================================ */

.service-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.service-badge {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(37,99,235,0.08);
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-block:hover .service-badge {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
    transition: all 0.25s ease;
}
/* =====================================================
   SERVICES – ENTERPRISE INTERACTIVE TIMELINE
===================================================== */

/* Timeline wrapper */
.service-timeline {
    position: relative;
}

/* Vertical connecting line */
.service-timeline::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        rgba(37,99,235,0.15),
        rgba(37,99,235,0.35),
        rgba(37,99,235,0.15)
    );
}

/* Service card */
.service-block {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 40px 36px 36px 84px;
    margin-bottom: 48px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

/* Hover lift */
.service-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(2,6,23,0.14);
    border-color: #2563eb;
}

/* Heading row */
.service-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

/* Number badge */
.service-badge {
    position: absolute;
    left: 16px;
    top: 36px;

    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon */
.service-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(37,99,235,0.08);

    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 22px;
    height: 22px;
    stroke: #2563eb;
    stroke-width: 1.8;
    fill: none;
}

/* Title */
.service-block h2 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
}

/* Context line */
.service-context {
    font-size: 14px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Body text */
.service-block p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #475569;
}

/* List */
.service-block ul {
    margin-top: 16px;
    padding-left: 18px;
}

.service-block ul li {
    font-size: 14.5px;
    color: #334155;
    margin-bottom: 8px;
}

/* Use cases */
.service-usecases {
    margin-top: 18px;
    font-size: 13.5px;
    color: #475569;
}

.service-usecases strong {
    display: block;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

/* Hover reveal section */
.service-hover {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed #e5e7eb;

    font-size: 13.5px;
    color: #475569;

    opacity: 0;
    max-height: 0;
    overflow: hidden;

    transition:
        opacity 0.3s ease,
        max-height 0.3s ease;
}

.service-hover strong {
    display: block;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

/* Reveal on hover */
.service-block:hover .service-hover {
    opacity: 1;
    max-height: 120px;
}

/* CTA inside service */
.service-cta-btn {
    display: inline-block;
    margin-top: 18px;

    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;

    transition: color 0.2s ease;
}

.service-cta-btn:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* ===============================
   HAMBURGER FIX
================================ */

/* Hide hamburger on desktop */
.hamburger {
    display: none;
}

/* Show only on mobile (later use) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .hamburger span {
        width: 24px;
        height: 2px;
        background: #ffffff;
        display: block;
    }
}
/* BRAND STACK FIX */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
/* ===============================
   HERO MOBILE TYPOGRAPHY TWEAK
================================ */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
        line-height: 1.25;
    }

    .hero p {
        font-size: 16px;
    }
}
/* ======================================================
   MOBILE FIX – FINAL (STRICT MOBILE ONLY)
   Applies ONLY below 767px
====================================================== */

@media (max-width: 767px) {

    /* ----- HEADER ----- */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        transform: none !important;
        opacity: 1 !important;
        z-index: 9999;
    }

    .header-container {
        padding: 14px 16px;
    }

    body {
        padding-top: 72px;
    }

    main {
        padding: 32px 16px;
    }

    /* ----- BRAND ----- */
    .brand-logo-wrap img {
        height: 36px;
    }

    .brand-name {
        font-size: 16px;
    }

    .brand-tagline {
        font-size: 11px;
    }

    /* ----- HAMBURGER ----- */
    .hamburger {
        display: flex;
    }

    /* ----- MOBILE NAV ----- */
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: #020617;

        display: flex;
        flex-direction: column;
        gap: 16px;

        padding: 22px 18px;
        transform: translateY(-120%);
        transition: transform 0.35s ease;
        z-index: 9998;
    }

    .main-nav a {
        font-size: 16px;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .main-nav.open {
        transform: translateY(0);
    }

    .header-actions {
        display: none;
    }

    /* ----- HERO ----- */
    .hero {
        padding: 96px 16px 72px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.25;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 14px;
    }

    /* ----- STACK GRIDS ----- */
    .services-grid,
    .why-grid,
    .how-grid,
    .trust-container,
    .footer-container {
        grid-template-columns: 1fr;
    }

    /* ----- CTA ----- */
    .cta-actions {
        flex-direction: column;
    }

    .final-cta h2 {
        font-size: 28px;
    }
}


