﻿/* =========================================================
   AdiaInventra — Unified Theme Styles (Light)
   Palette + Layout + Components + Sections
   ========================================================= */

/* ---------- CSS Variables ---------- */
:root {
    --navy: #0a2e4e; /* brand navy */
    --orange: #e85626; /* brand orange */
    --ink: #222222; /* dark text */
    --muted: #6c757d; /* lighter grey */
    --bg: #f8f9fa; /* light grey background */
    --card: #ffffff; /* white cards */
    --ring: rgba(232,86,38,.35);
    --shadow: 0 4px 12px rgba(0,0,0,.08);
    --radius: 16px;
    --text: #212529; /* dark text */
    --text-muted: #6c757d;
    --border: rgba(0,0,0,.06);
    --border-strong: rgba(0,0,0,.12);
}

/* ---------- Reset / Base ---------- */
* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Alternate section backgrounds for separation */
section:nth-of-type(even) {
    background: #ffffff;
}

section:nth-of-type(odd) {
    background: var(--bg);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: .2s;
}

.btn-primary {
    background: linear-gradient(90deg, var(--navy), #154a7b);
    color: #fff;
}

    .btn-primary:hover {
        filter: brightness(1.08);
    }

.btn-ghost {
    border: 1px solid var(--border-strong);
    background: transparent;
    color: var(--text);
}

    .btn-ghost:hover {
        background: rgba(0,0,0,.04);
    }

.btn-outline-light {
    border: 1px solid rgba(255,255,255,0.5);
    background: transparent;
    color: #fff;
}

    .btn-outline-light:hover {
        background: rgba(255,255,255,0.12);
    }

/* ---------- Badges ---------- */
.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(232,86,38,.08);
    color: var(--orange);
    border: 1px solid var(--ring);
}

.badge-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--border-strong);
}


/* ---------- Header / Navbar (Fixed White) ---------- */
header {
    position: fixed; /* stays at top */
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff; /* white background */
    border-bottom: 1px solid var(--border-strong);
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
    z-index: 1000; /* stays above all content */
}

.navbar-light .navbar-brand,
.navbar-light .navbar-nav .nav-link {
    color: var(--text);
}

    .navbar-light .navbar-nav .nav-link:hover {
        color: var(--orange);
    }
.brand-logo {
    height: 32px;
    width: auto;
}

@media (max-width: 575.98px) {
    .brand-logo {
        height: 28px;
    }
}

/* ---------- Hero ---------- */
.hero {
    padding: 70px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 40px;
    align-items: center;
}

.headline {
    font-size: 42px;
    line-height: 1.1;
    margin: 10px 0 14px;
    font-weight: 800;
    color: var(--ink);
}

    .headline span {
        color: var(--orange);
    }

.sub {
    color: var(--text-muted);
    max-width: 680px;
}

.hero-card {
    background: #fff;
    padding: 24px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin: 18px 0 0 0;
    padding: 0;
    list-style: none;
}

    .hero-list li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }

.tick {
    color: #22c55e;
}

@media (max-width:640px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-list {
        grid-template-columns: 1fr;
    }
}

/* ---------- Sections ---------- */
section {
    padding: 70px 0;
}
.section-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    border: 1px solid rgba(0,0,0,0.05);
}

    /* Give section head some separation */
    .section-card .section-head {
        margin-bottom: 24px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding-bottom: 12px;
    }
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

    .section-head h2 {
        margin: 0;
        font-size: 28px;
        font-weight: 800;
        color: var(--ink);
    }

    .section-head .badge, .section-head .badge-outline {
        font-size: .85rem;
    }

/* ---------- Features Grid ---------- */
.features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
}

    .card h3 {
        margin: 8px 0 6px;
        font-size: 18px;
        color: var(--ink);
    }

    .card p {
        color: var(--text-muted);
        margin: 0;
    }

.icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(232,86,38,.08);
    display: grid;
    place-items: center;
    color: var(--orange);
    border: 1px solid var(--ring);
}

@media (max-width:980px) {
    .features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:640px) {
    .features {
        grid-template-columns: 1fr;
    }
}

/* ---------- Comparison & Tables ---------- */
.table-wrap {
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    overflow: hidden;
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

    .table thead th {
        position: sticky;
        top: 0;
        background: #f1f3f5;
        color: var(--ink);
        font-weight: 600;
        text-align: left;
        padding: 12px 14px;
        border-bottom: 1px solid var(--border-strong);
    }

    .table tbody th, .table tbody td {
        padding: 12px 14px;
        border-bottom: 1px solid var(--border);
        vertical-align: top;
    }

    .table tbody tr:nth-child(odd) td,
    .table tbody tr:nth-child(odd) th {
        background: rgba(0,0,0,.02);
    }

/* ---------- Pricing ---------- */
.pricing {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.price {
    font-size: 40px;
    font-weight: 800;
    color: var(--ink);
}

.plan .title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.plan li {
    display: flex;
    gap: 10px;
    margin: 8px 0;
}

/* ---------- Testimonials ---------- */
.testi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width:820px) {
    .testi {
        grid-template-columns: 1fr;
    }
}

/* ---------- Trust / Products / Integrations ---------- */
.trust {
    padding: 18px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #fff;
}

.trust-head {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
    align-items: center;
    opacity: .9;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

.p-card {
    display: block;
    padding: 18px;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    text-decoration: none;
    color: var(--ink);
    background: #fff;
    transition: border-color .2s, transform .2s;
}

    .p-card:hover {
        border-color: rgba(232,86,38,.4);
        transform: translateY(-1px);
    }

.logos-row {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    align-items: center;
    opacity: .85;
}

/* ---------- Footer ---------- */
footer {
    border-top: 1px solid var(--border);
    padding: 30px 0;
    color: var(--text-muted);
    background: #fff;
}

    footer a:hover {
        color: var(--orange);
        text-decoration: underline;
    }

/* ---------- Utilities ---------- */
.text-muted {
    color: var(--text-muted);
}

.hidden {
    display: none !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}
.integration-card {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    background: #fff;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .integration-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    }

    .integration-card h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .integration-card p {
        font-size: 14px;
        color: #6c757d;
        margin-bottom: 0;
    }
.feature-list {
    text-align: left;
    padding-left: 20px;
    list-style-position: inside; /* optional */
}
/* Works great with Bootstrap 4 */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px; /* controls spacing between cards */
}

.feature-card {
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(10,46,78,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(10,46,78,0.12);
    }

.feature-icon {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 12px;
}

.feature-title {
    font-weight: 700;
    color: #0a2e4e;
    margin-bottom: 6px;
}

.feature-desc {
    color: #70879e;
    font-size: .95rem;
    margin: 0;
}

/* Nice breathing room around tabs */
.nav-tabs {
    border-bottom: 0;
}

    .nav-tabs .nav-link {
        border: 0;
        font-weight: 600;
        color: #0a2e4e;
        padding: 10px 18px;
    }

        .nav-tabs .nav-link.active {
            background: #ff6a2b;
            color: #fff;
            border-radius: 8px;
        }
.promo-bar {
    background: linear-gradient(90deg,#0a2e4e,#0f4778);
    font-size: .95rem;
}

.hero-promo {
    background: linear-gradient(135deg,#0a2e4e 0%, #173b63 45%, #0f4778 100%);
    padding: 56px 0 64px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .85rem;
}

.text-hero-sub {
    color: #000;
}

.hero-shot {
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
}

.promo-chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    padding: 8px 12px;
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
}

.promo-countdown {
    background: #ff6a2b;
    color: #000;
    padding: 4px 10px;
    border-radius: 999px;
}

.hero-points li {
    margin: 4px 0;
    color: #000;
}

@media (max-width: 767.98px) {
    .hero-promo {
        padding: 36px 0 44px;
    }

    .display-5 {
        font-size: 1.9rem;
    }
}
/* Responsive global fixes */
img, iframe {
    max-width: 100%;
    height: auto;
}

.embed-responsive {
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .display-5 {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 1rem;
    }

    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}
