/* =========================================================
   PIAG WEBSITE - MASTER STYLESHEET
   Covers: Home Page, Solutions Page, Sentinel Page
   Stack: HTML, CSS, JavaScript, PHP
   ========================================================= */

/* -------------------------------
   ROOT VARIABLES
-------------------------------- */
:root {
    --navy: #0d182a;
    --navy-2: #13294b;
    --navy-3: #10213a;
    --orange: #ff8c00;
    --orange-dark: #d87300;
    --blue: #00aeef;
    --silver: #e6e7e8;
    --steel: #6b7280;
    --text: #273449;
    --muted: #65758d;
    --light: #f6f8fb;
    --white: #ffffff;
    --border: #e5e9f0;
    --shadow: 0 24px 70px rgba(13, 24, 42, 0.14);
    --shadow-soft: 0 12px 35px rgba(13, 24, 42, 0.08);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --container: 1280px;
    --header-height: 92px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

button {
    font: inherit;
}

ul {
    margin: 0;
    padding: 0;
}

.container {
    width: min(100% - 48px, var(--container));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 24px;
    background: var(--navy);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    z-index: 9999;
}

.skip-link:focus {
    top: 16px;
}

/* -------------------------------
   HEADER
-------------------------------- */
.site-header {
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(229, 233, 240, 0.95);
    box-shadow: 0 6px 24px rgba(13, 24, 42, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
}

.header-inner {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    width: 300px;
    height: 84px;
    display: flex;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
}

.brand img {
    width: 300px;
    height: auto;
    max-width: none;
    flex-shrink: 0;
    transform: translateY(6px);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
    transition: color 0.2s ease, background 0.2s ease;
}

/* Keep the full desktop menu visible on standard laptop screens. */
@media (max-width: 1350px) and (min-width: 901px) {
    .header-inner {
        gap: 16px;
    }

    .brand {
        width: 250px;
    }

    .brand img {
        width: 250px;
    }

    .main-nav {
        gap: 13px;
    }

    .main-nav a {
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .nav-cta {
        padding: 10px 13px;
    }
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--orange);
}

.nav-cta {
    background: var(--navy-2);
    color: var(--white) !important;
    padding: 11px 18px;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(19, 41, 75, 0.25);
}

.nav-cta:hover {
    background: var(--orange);
    color: var(--white) !important;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    background: var(--navy);
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-button span {
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

/* -------------------------------
   SHARED BUTTONS
-------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 10px;
    font-size: 0.96rem;
    font-weight: 850;
    letter-spacing: -0.02em;
    border: 2px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

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

.btn-primary {
    background: var(--navy-2);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(19, 41, 75, 0.22);
}

.btn-primary:hover {
    background: var(--orange);
}

.btn-secondary {
    color: var(--orange);
    background: rgba(255, 140, 0, 0.08);
}

.btn-secondary:hover {
    background: rgba(255, 140, 0, 0.14);
}

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

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
}

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

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-top: 30px;
}

/* -------------------------------
   EYEBROW
-------------------------------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-transform: uppercase;
    color: var(--navy-2);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 3px;
    background: var(--orange);
    border-radius: 999px;
}

.eyebrow.light {
    color: #ffffff;
}

/* -------------------------------
   HOME HERO
-------------------------------- */
.hero {
    position: relative;
    padding: 96px 0 72px;
    background:
        radial-gradient(circle at 10% 0%, rgba(0, 174, 239, 0.08), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    align-items: center;
    gap: 72px;
}

.hero h1 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(3.3rem, 6.1vw, 6.7rem);
    line-height: 0.97;
    letter-spacing: -0.07em;
    color: #344155;
    max-width: 850px;
    margin-bottom: 28px;
}

.hero-text {
    max-width: 740px;
    color: #687890;
    font-size: clamp(1.07rem, 1.35vw, 1.35rem);
    line-height: 1.78;
    margin-bottom: 34px;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hero-trust div {
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.hero-trust strong {
    display: block;
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.hero-trust span {
    display: block;
    color: var(--muted);
    font-size: 0.89rem;
    line-height: 1.5;
}

/* -------------------------------
   HERO SLIDESHOW
-------------------------------- */
.hero-visual {
    position: relative;
}

.slideshow {
    position: relative;
    height: 470px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--navy);
    isolation: isolate;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.9s ease, transform 1.4s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(13, 24, 42, 0.28), transparent 48%),
        linear-gradient(180deg, transparent 42%, rgba(13, 24, 42, 0.75));
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 34px;
    z-index: 2;
    color: var(--white);
}

.slide-overlay span {
    display: inline-flex;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 8px;
}

.slide-overlay h3 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    max-width: 560px;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.slide-controls {
    position: absolute;
    right: 28px;
    bottom: 32px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.slide-dot {
    width: 10px;
    height: 10px;
    border: 0;
    background: rgba(255, 255, 255, 0.48);
    border-radius: 999px;
    cursor: pointer;
}

.slide-dot.active {
    width: 28px;
    background: var(--orange);
}

/* -------------------------------
   PAGE HERO - USED BY SOLUTIONS & SENTINEL
-------------------------------- */
.page-hero {
    padding: 96px 0 84px;
    background:
        radial-gradient(circle at 12% 5%, rgba(0, 174, 239, 0.1), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 72px;
}

.page-hero h1 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(3.1rem, 5.5vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.07em;
    color: #344155;
    max-width: 900px;
    margin-bottom: 26px;
}

.page-hero p {
    color: var(--muted);
    font-size: clamp(1.05rem, 1.3vw, 1.28rem);
    line-height: 1.8;
    max-width: 780px;
}

.page-hero-panel {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 30px;
    color: var(--white);
    background:
        radial-gradient(circle at 95% 10%, rgba(255, 140, 0, 0.34), transparent 32%),
        linear-gradient(145deg, #0d182a, #13294b);
    box-shadow: var(--shadow);
}

.page-hero-panel span {
    display: inline-flex;
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.page-hero-panel h3 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.06em;
    margin-bottom: 18px;
}

.page-hero-panel p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    margin-bottom: 30px;
}

/* -------------------------------
   SHARED SECTION STYLES
-------------------------------- */
.authority-strip {
    background: var(--navy);
    color: var(--white);
    padding: 26px 0;
}

.authority-inner p {
    text-align: center;
    font-size: 1.08rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.section {
    padding: 96px 0;
}

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

.section-heading {
    max-width: 840px;
    margin-bottom: 48px;
}

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

.section-heading h2,
.sentinel-grid h2,
.split-card h2,
.company-grid h2,
.demo-card h2,
.sentinel-value-grid h2,
.roadmap-grid h2,
.why-grid h2 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2.35rem, 4vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    color: var(--navy);
    margin-bottom: 18px;
}

.section-heading p,
.sentinel-grid p,
.split-card p,
.company-grid p,
.demo-card p,
.sentinel-value-grid p,
.roadmap-grid p,
.why-grid p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

/* -------------------------------
   HOME SOLUTION CARDS
-------------------------------- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.solution-card {
    position: relative;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    min-height: 330px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 140, 0, 0.35);
}

.featured-card {
    background:
        linear-gradient(160deg, rgba(13, 24, 42, 0.96), rgba(19, 41, 75, 0.96)),
        var(--navy);
    color: var(--white);
}

.card-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: rgba(255, 140, 0, 0.12);
    color: var(--orange);
    border-radius: 14px;
    font-weight: 900;
    margin-bottom: 22px;
}

.featured-card .card-icon {
    background: var(--orange);
    color: var(--white);
}

.solution-card h3 {
    font-size: 1.25rem;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 14px;
}

.featured-card h3 {
    color: var(--white);
}

.solution-card p {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.featured-card p {
    color: rgba(255, 255, 255, 0.76);
}

.solution-card a {
    color: var(--orange);
    font-weight: 850;
    font-size: 0.95rem;
}

/* -------------------------------
   HOME SENTINEL SECTION
-------------------------------- */
.sentinel-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(0, 174, 239, 0.15), transparent 32%),
        linear-gradient(135deg, #0d182a, #13294b);
    color: var(--white);
}

.sentinel-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 72px;
    align-items: center;
}

.sentinel-grid h2 {
    color: var(--white);
}

.sentinel-grid p {
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 26px;
}

.sentinel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.sentinel-features span {
    display: inline-flex;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.86rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sentinel-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 26px;
    padding: 22px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.panel-top {
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
}

.panel-top span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
}

.panel-top span:first-child {
    background: var(--orange);
}

.dashboard-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 26px;
}

.dashboard-preview div {
    background: rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    padding: 18px;
}

.dashboard-preview small {
    color: rgba(255, 255, 255, 0.68);
    display: block;
    margin-bottom: 8px;
}

.dashboard-preview strong {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--white);
}

.chart-bars {
    height: 170px;
    padding: 18px;
    background: rgba(0, 0, 0, 0.16);
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 20px;
}

.chart-bars span {
    flex: 1;
    min-height: 30px;
    background: linear-gradient(180deg, var(--orange), var(--blue));
    border-radius: 999px 999px 6px 6px;
}

/* -------------------------------
   HOME INDUSTRIES
-------------------------------- */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.industry-card {
    padding: 30px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.industry-card span {
    color: var(--orange);
    font-weight: 900;
    font-size: 0.86rem;
}

.industry-card h3 {
    color: var(--navy);
    font-size: 1.25rem;
    margin: 10px 0 12px;
}

.industry-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.72;
}

/* -------------------------------
   SPLIT, RESOURCES, COMPANY
-------------------------------- */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.split-card {
    padding: 48px;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.split-card.dark {
    background:
        linear-gradient(140deg, rgba(13, 24, 42, 0.98), rgba(19, 41, 75, 0.98)),
        var(--navy);
}

.split-card.dark h2 {
    color: var(--white);
}

.split-card.dark p {
    color: rgba(255, 255, 255, 0.76);
}

.text-link {
    display: inline-flex;
    margin-top: 22px;
    color: var(--orange);
    font-weight: 850;
}

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

.resource-card {
    padding: 30px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.resource-card span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 140, 0, 0.11);
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 900;
    margin-bottom: 18px;
}

.resource-card h3 {
    color: var(--navy);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.resource-card p {
    color: var(--muted);
    font-size: 0.96rem;
    margin-bottom: 20px;
}

.resource-card a {
    color: var(--orange);
    font-weight: 850;
}

.section-company {
    background:
        linear-gradient(90deg, rgba(13, 24, 42, 0.04), rgba(255, 140, 0, 0.05));
}

.company-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.company-grid p + p {
    margin-top: 18px;
}

/* -------------------------------
   SOLUTIONS PAGE
-------------------------------- */
.mini-metrics {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.mini-metrics div {
    padding: 16px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.mini-metrics strong {
    display: block;
    color: var(--white);
    font-size: 1.3rem;
    line-height: 1;
    margin-bottom: 8px;
}

.mini-metrics small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 700;
}

.solution-lines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.solution-line-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 26px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.solution-line-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 140, 0, 0.36);
}

.featured-solution {
    background:
        radial-gradient(circle at 90% 5%, rgba(255, 140, 0, 0.22), transparent 32%),
        linear-gradient(145deg, #0d182a, #13294b);
    color: var(--white);
}

.solution-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 140, 0, 0.11);
    color: var(--orange);
    font-weight: 900;
    margin-bottom: 22px;
}

.featured-solution .solution-number {
    background: var(--orange);
    color: var(--white);
}

.solution-line-card h3 {
    color: var(--navy);
    font-size: 1.45rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.featured-solution h3 {
    color: var(--white);
}

.solution-line-card p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.featured-solution p {
    color: rgba(255, 255, 255, 0.76);
}

.solution-line-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.solution-line-card li {
    position: relative;
    padding-left: 24px;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.55;
}

.featured-solution li {
    color: rgba(255, 255, 255, 0.86);
}

.solution-line-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--orange);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.process-card {
    padding: 30px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.process-card span {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 900;
}

.process-card h3 {
    color: var(--navy);
    font-size: 1.35rem;
    margin: 10px 0 12px;
}

.process-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.why-section {
    background:
        radial-gradient(circle at 15% 10%, rgba(0, 174, 239, 0.14), transparent 34%),
        linear-gradient(135deg, #0d182a, #13294b);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.why-grid h2 {
    color: var(--white);
}

.why-grid p {
    color: rgba(255, 255, 255, 0.76);
}

.why-list {
    display: grid;
    gap: 16px;
}

.why-list div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.why-list strong {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.9rem;
}

.why-list span {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.65;
    font-size: 1rem;
}

/* -------------------------------
   SENTINEL PAGE
-------------------------------- */
.sentinel-page-hero {
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 174, 239, 0.12), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255, 140, 0, 0.1), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.sentinel-product-panel {
    padding: 22px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 140, 0, 0.2), transparent 34%),
        linear-gradient(145deg, #0d182a, #13294b);
    box-shadow: var(--shadow);
    color: var(--white);
}

.product-window-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.product-window-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.32);
}

.product-window-top span:first-child {
    background: var(--orange);
}

.product-window-top small {
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.82rem;
    font-weight: 700;
}

.sentinel-dashboard-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    padding: 24px;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.dash-header small {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
    font-size: 0.8rem;
}

.dash-header strong {
    display: block;
    color: var(--white);
    font-size: 1.22rem;
    line-height: 1.2;
}

.dash-header span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 174, 239, 0.18);
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.dash-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.dash-metrics div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
}

.dash-metrics small {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    margin-bottom: 8px;
}

.dash-metrics strong {
    display: block;
    color: var(--white);
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 8px;
}

.dash-metrics em {
    display: block;
    color: rgba(255, 255, 255, 0.54);
    font-style: normal;
    font-size: 0.78rem;
}

.risk-bars {
    display: grid;
    gap: 10px;
}

.risk-bars div:not(.bar) {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.86rem;
    font-weight: 700;
}

.risk-bars strong {
    color: var(--white);
}

.bar {
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--orange), var(--blue));
}

.sentinel-modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sentinel-module-card {
    padding: 32px;
    border-radius: 26px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.sentinel-module-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 140, 0, 0.35);
}

.featured-module {
    background:
        radial-gradient(circle at 90% 5%, rgba(255, 140, 0, 0.26), transparent 34%),
        linear-gradient(145deg, #0d182a, #13294b);
    color: var(--white);
}

.module-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(255, 140, 0, 0.12);
    color: var(--orange);
    border-radius: 16px;
    font-weight: 900;
    margin-bottom: 22px;
}

.featured-module .module-icon {
    background: var(--orange);
    color: var(--white);
}

.sentinel-module-card h3 {
    color: var(--navy);
    font-size: 1.28rem;
    line-height: 1.2;
    margin-bottom: 14px;
}

.featured-module h3 {
    color: var(--white);
}

.sentinel-module-card p {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

.featured-module p {
    color: rgba(255, 255, 255, 0.76);
}

.sentinel-module-card ul {
    list-style: none;
    display: grid;
    gap: 9px;
}

.sentinel-module-card li {
    position: relative;
    padding-left: 22px;
    color: var(--text);
    font-size: 0.93rem;
}

.featured-module li {
    color: rgba(255, 255, 255, 0.86);
}

.sentinel-module-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.sentinel-value-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: start;
}

.value-list {
    display: grid;
    gap: 18px;
}

.value-list div {
    padding: 24px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.value-list strong {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 140, 0, 0.12);
    color: var(--orange);
    border-radius: 14px;
    margin-bottom: 14px;
}

.value-list h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.value-list p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.72;
}

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

.workflow-step {
    position: relative;
    padding: 24px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.workflow-step span {
    display: inline-flex;
    color: var(--orange);
    font-weight: 900;
    font-size: 0.84rem;
    margin-bottom: 14px;
}

.workflow-step h3 {
    color: var(--navy);
    font-size: 1.18rem;
    margin-bottom: 10px;
}

.workflow-step p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.68;
}

.sentinel-industries {
    background:
        radial-gradient(circle at 15% 10%, rgba(0, 174, 239, 0.14), transparent 34%),
        linear-gradient(135deg, #0d182a, #13294b);
    color: var(--white);
}

.sentinel-industries .section-heading h2 {
    color: var(--white);
}

.sentinel-industries .section-heading p {
    color: rgba(255, 255, 255, 0.74);
}

.sentinel-industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.sentinel-industry-grid article {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.sentinel-industry-grid h3 {
    color: var(--white);
    font-size: 1.22rem;
    margin-bottom: 12px;
}

.sentinel-industry-grid p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.7;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: start;
}

.roadmap-list {
    display: grid;
    gap: 18px;
}

.roadmap-list div {
    padding: 26px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.roadmap-list span {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 140, 0, 0.12);
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.roadmap-list h3 {
    color: var(--navy);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.roadmap-list p {
    color: var(--muted);
    font-size: 0.96rem;
}

/* -------------------------------
   DEMO CTA
-------------------------------- */
.demo-section {
    padding: 96px 0;
    background: var(--light);
}

.demo-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 56px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 85% 10%, rgba(255, 140, 0, 0.26), transparent 28%),
        linear-gradient(135deg, #0d182a, #13294b);
    color: var(--white);
    box-shadow: var(--shadow);
}

.demo-card h2 {
    color: var(--white);
}

.demo-card p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 760px;
}

.demo-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* -------------------------------
   FOOTER
-------------------------------- */
.site-footer {
    background: #07101d;
    color: rgba(255, 255, 255, 0.74);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 0.9fr;
    gap: 48px;
    padding-bottom: 54px;
}

.footer-brand img {
    width: 220px;
    height: auto;
    margin-bottom: 22px;
    background: rgba(255, 255, 255, 0.94);
    padding: 8px;
    border-radius: 10px;
}

.footer-brand p {
    max-width: 420px;
    line-height: 1.8;
}

.site-footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 18px;
}

.site-footer a {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--orange);
}

.site-footer p {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 0.88rem;
}

/* -------------------------------
   RESPONSIVE DESIGN
-------------------------------- */
@media (max-width: 1180px) {
    :root {
        --header-height: 84px;
    }

    .main-nav {
        gap: 11px;
    }

    .brand {
        width: 220px;
        height: 76px;
    }

    .brand img {
        width: 220px;
        height: auto;
    }

    .hero-grid,
    .page-hero-grid,
    .sentinel-grid,
    .why-grid,
    .sentinel-value-grid,
    .roadmap-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .slideshow {
        height: 440px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 76px;
    }

    .container {
        width: min(100% - 32px, var(--container));
    }

    .brand {
        width: 210px;
        height: 68px;
    }

    .brand img {
        width: 210px;
        height: auto;
    }

    .mobile-menu-button {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-soft);
        padding: 18px 24px 24px;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 13px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-cta {
        width: auto !important;
        margin-top: 14px;
        padding: 11px 18px !important;
        border-bottom: 0 !important;
    }

    .hero,
    .page-hero {
        padding: 72px 0 58px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(3rem, 12vw, 5rem);
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

    .cards-grid,
    .industry-grid,
    .resource-grid,
    .split-grid,
    .company-grid,
    .footer-grid,
    .demo-card,
    .solution-lines-grid,
    .process-grid,
    .sentinel-modules-grid,
    .workflow-grid,
    .sentinel-industry-grid {
        grid-template-columns: 1fr;
    }

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

    .demo-card {
        padding: 36px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
    }
}

@media (max-width: 560px) {
    :root {
        --header-height: 70px;
    }

    .brand {
        width: 185px;
        height: 62px;
    }

    .brand img {
        width: 185px;
        height: auto;
    }

    .mobile-menu-button {
        width: 38px;
        height: 38px;
    }

    .hero,
    .page-hero {
        padding: 56px 0 44px;
    }

    .hero-grid,
    .page-hero-grid {
        gap: 38px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.85rem;
        letter-spacing: -0.06em;
    }

    .hero-text,
    .page-hero p {
        font-size: 1rem;
    }

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

    .btn {
        width: 100%;
    }

    .slideshow {
        height: 330px;
        border-radius: 22px;
    }

    .slide-overlay {
        left: 20px;
        right: 20px;
        bottom: 24px;
    }

    .slide-controls {
        right: 20px;
        bottom: 22px;
    }

    .section {
        padding: 70px 0;
    }

    .section-heading h2,
    .sentinel-grid h2,
    .split-card h2,
    .company-grid h2,
    .demo-card h2,
    .sentinel-value-grid h2,
    .roadmap-grid h2,
    .why-grid h2 {
        font-size: 2.25rem;
    }

    .solution-card,
    .industry-card,
    .resource-card,
    .split-card,
    .solution-line-card,
    .process-card,
    .sentinel-module-card,
    .workflow-step,
    .sentinel-industry-grid article,
    .roadmap-list div,
    .value-list div {
        padding: 24px;
    }

    .dash-metrics,
    .dashboard-preview,
    .mini-metrics {
        grid-template-columns: 1fr;
    }

    .sentinel-product-panel {
        padding: 16px;
        border-radius: 24px;
    }

    .sentinel-dashboard-card {
        padding: 18px;
    }

    .demo-card {
        padding: 28px;
    }
}

/* =========================================================
   INDUSTRIES PAGE
   ========================================================= */

.industries-page-hero {
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 174, 239, 0.12), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255, 140, 0, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.industries-hero-panel {
    position: relative;
    min-height: 520px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--navy);
}

.industries-hero-panel img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.industries-hero-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 24, 42, 0.05), rgba(13, 24, 42, 0.78)),
        linear-gradient(90deg, rgba(13, 24, 42, 0.45), transparent);
}

.industries-hero-card {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    padding: 28px;
    border-radius: 24px;
    background: rgba(13, 24, 42, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
    color: var(--white);
}

.industries-hero-card span {
    display: inline-flex;
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.industries-hero-card h3 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 1.75rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.industries-hero-card p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.98rem;
    line-height: 1.7;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.sector-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 26px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 140, 0, 0.35);
}

.featured-sector {
    background:
        radial-gradient(circle at 90% 5%, rgba(255, 140, 0, 0.26), transparent 34%),
        linear-gradient(145deg, #0d182a, #13294b);
    color: var(--white);
}

.sector-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(255, 140, 0, 0.12);
    color: var(--orange);
    border-radius: 16px;
    font-weight: 900;
    margin-bottom: 22px;
}

.featured-sector .sector-number {
    background: var(--orange);
    color: var(--white);
}

.sector-card h3 {
    color: var(--navy);
    font-size: 1.45rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.featured-sector h3 {
    color: var(--white);
}

.sector-card p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.featured-sector p {
    color: rgba(255, 255, 255, 0.76);
}

.sector-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.sector-card li {
    position: relative;
    padding-left: 24px;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.55;
}

.featured-sector li {
    color: rgba(255, 255, 255, 0.86);
}

.sector-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--orange);
}

.industry-challenge-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: start;
}

.industry-challenge-grid h2 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2.35rem, 4vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    color: var(--navy);
    margin-bottom: 20px;
}

.industry-challenge-grid > div > p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.challenge-list {
    display: grid;
    gap: 18px;
}

.challenge-list div {
    padding: 24px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.challenge-list strong {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 140, 0, 0.12);
    color: var(--orange);
    border-radius: 14px;
    margin-bottom: 14px;
}

.challenge-list h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.challenge-list p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.72;
}

.industry-model-section {
    background:
        radial-gradient(circle at 15% 10%, rgba(0, 174, 239, 0.14), transparent 34%),
        linear-gradient(135deg, #0d182a, #13294b);
    color: var(--white);
}

.industry-model-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: start;
}

.industry-model-grid h2 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2.35rem, 4vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    color: var(--white);
    margin-bottom: 20px;
}

.industry-model-grid p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.04rem;
    line-height: 1.8;
}

.model-steps {
    display: grid;
    gap: 18px;
}

.model-steps div {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.model-steps span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: var(--orange);
    color: var(--white);
    border-radius: 14px;
    margin-bottom: 14px;
    font-weight: 900;
}

.model-steps h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.model-steps p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
    line-height: 1.72;
}

/* Industries responsive */

@media (max-width: 1180px) {
    .sector-grid,
    .industry-challenge-grid,
    .industry-model-grid {
        grid-template-columns: 1fr;
    }

    .industries-hero-panel,
    .industries-hero-panel img {
        min-height: 440px;
    }
}

@media (max-width: 760px) {
    .sector-grid {
        grid-template-columns: 1fr;
    }

    .sector-card,
    .challenge-list div,
    .model-steps div {
        padding: 24px;
    }

    .industries-hero-panel,
    .industries-hero-panel img {
        min-height: 360px;
        border-radius: 24px;
    }

    .industries-hero-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 22px;
        border-radius: 20px;
    }

    .industries-hero-card h3 {
        font-size: 1.4rem;
    }
}

/* Uganda SEO service landing pages */
.seo-service-hero { border-bottom: 1px solid var(--border); }
.seo-proof-list { display: grid; gap: 10px; margin-top: 22px; }
.seo-proof-list span { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.9); font-weight: 750; font-size: .92rem; }
.seo-proof-list span::before { content: "✓"; color: var(--orange); font-weight: 900; }
.seo-content-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, .6fr); align-items: start; gap: 54px; }
.seo-main-copy h2, .seo-two-column h2 { color: var(--navy); font: 700 clamp(2rem,3.4vw,3.5rem)/1.05 "Space Grotesk",sans-serif; letter-spacing: -.05em; margin: 10px 0 20px; }
.seo-main-copy > p { color: var(--muted); font-size: 1.08rem; line-height: 1.85; }
.seo-main-copy .seo-local-context { margin-top: 20px; padding: 20px 22px; border-left: 4px solid var(--orange); background: var(--light); color: var(--navy); font-size: 1rem; line-height: 1.75; }
.seo-contact-card { display: grid; gap: 10px; padding: 30px; color: #fff; background: linear-gradient(145deg,var(--navy),var(--navy-2)); border-radius: 24px; box-shadow: var(--shadow-soft); }
.seo-contact-card > span { color: var(--orange); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.seo-contact-card h3 { font-size: 1.35rem; line-height: 1.3; margin-bottom: 8px; }
.seo-contact-card a { color: #fff; font-weight: 750; }
.seo-service-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.seo-service-grid article { min-height: 150px; padding: 24px; background: #fff; border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow-soft); }
.seo-service-grid span { color: var(--orange); font-weight: 900; font-size: .78rem; }
.seo-service-grid h3 { color: var(--navy); font-size: 1.05rem; line-height: 1.35; margin-top: 22px; }
.seo-two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.seo-process { display: grid; gap: 14px; list-style: none; counter-reset: seo-step; }
.seo-process li { counter-increment: seo-step; position: relative; padding: 17px 18px 17px 58px; color: var(--muted); background: var(--light); border-radius: 14px; line-height: 1.65; }
.seo-process li::before { content: counter(seo-step); position: absolute; left: 16px; top: 15px; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; background: var(--navy); color: #fff; font-weight: 900; }
.seo-process strong { color: var(--navy); }
.seo-deliverables { padding: 34px; border: 1px solid var(--border); border-radius: 26px; box-shadow: var(--shadow-soft); }
.seo-deliverables ul { display: grid; gap: 12px; list-style: none; margin: 22px 0; }
.seo-deliverables li { position: relative; padding-left: 25px; color: var(--navy); font-weight: 700; }
.seo-deliverables li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); }
.seo-standard-note { padding-top: 20px; border-top: 1px solid var(--border); color: var(--muted); line-height: 1.75; }
.section-dark { background: linear-gradient(135deg,var(--navy),var(--navy-2)); color: #fff; }
.section-dark .section-heading h2 { color: #fff; }
.seo-industry-list { display: flex; flex-wrap: wrap; gap: 12px; }
.seo-industry-list span { padding: 12px 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.07); color: #fff; font-weight: 750; }
.seo-faq { max-width: 960px; }
.seo-faq details { background: #fff; border: 1px solid var(--border); border-radius: 16px; margin-bottom: 12px; overflow: hidden; }
.seo-faq summary { cursor: pointer; padding: 20px 54px 20px 22px; color: var(--navy); font-weight: 850; list-style: none; position: relative; }
.seo-faq summary::after { content: "+"; position: absolute; right: 22px; color: var(--orange); font-size: 1.3rem; }
.seo-faq details[open] summary::after { content: "–"; }
.seo-faq details p { padding: 0 22px 22px; color: var(--muted); line-height: 1.75; }

@media (max-width: 1100px) {
    .seo-service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .seo-content-grid, .seo-two-column { gap: 32px; }
}

@media (max-width: 760px) {
    .seo-content-grid, .seo-two-column { grid-template-columns: 1fr; }
    .seo-service-grid { grid-template-columns: 1fr; }
    .seo-service-grid article { min-height: 0; }
    .seo-contact-card, .seo-deliverables { padding: 24px; }
}

/* ---------------------------------------------------------
   LAPTOP VIEWPORT OPTIMIZATION
   Keeps 100% browser zoom comfortable on 1280–1440px screens.
---------------------------------------------------------- */
@media (min-width: 901px) and (max-width: 1440px) {
    :root {
        --container: 1180px;
    }

    .container {
        width: min(100% - 40px, var(--container));
    }

    .hero,
    .page-hero {
        padding: 58px 0 52px;
    }

    .hero-grid,
    .page-hero-grid,
    .sentinel-grid,
    .company-grid,
    .why-grid,
    .sentinel-value-grid,
    .roadmap-grid {
        gap: 42px;
    }

    .hero h1 {
        font-size: clamp(3.25rem, 4.5vw, 4.15rem);
        line-height: 1;
        margin-bottom: 20px;
    }

    .page-hero h1 {
        font-size: clamp(3rem, 4.1vw, 3.8rem);
        line-height: 1;
        margin-bottom: 20px;
    }

    .hero-text,
    .page-hero p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-text {
        margin-bottom: 22px;
    }

    .hero-actions {
        margin-top: 22px;
        gap: 12px;
    }

    .btn {
        min-height: 44px;
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .slideshow {
        height: 380px;
        border-radius: 24px;
    }

    .hero-trust {
        gap: 10px;
    }

    .hero-trust div {
        padding: 13px;
    }

    .hero-trust span {
        font-size: 0.8rem;
    }

    .page-hero-panel {
        padding: 30px;
        border-radius: 24px;
    }

    .page-hero-panel h3 {
        font-size: clamp(1.75rem, 2.4vw, 2.45rem);
    }

    .section,
    .sentinel-section {
        padding: 68px 0;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2,
    .sentinel-grid h2,
    .split-card h2,
    .company-grid h2,
    .demo-card h2,
    .sentinel-value-grid h2,
    .roadmap-grid h2,
    .why-grid h2 {
        font-size: clamp(2.15rem, 3.2vw, 3.25rem);
    }

    .section-heading p,
    .sentinel-grid p,
    .split-card p,
    .company-grid p,
    .demo-card p,
    .sentinel-value-grid p,
    .roadmap-grid p,
    .why-grid p {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .cards-grid,
    .industry-grid,
    .process-grid,
    .resource-grid,
    .product-stack {
        gap: 18px;
    }

    .solution-card,
    .product-feature,
    .page-hero-panel,
    .demo-card {
        padding: 28px;
    }

    .authority-strip {
        padding: 18px 0;
    }
}

@media (min-width: 901px) and (max-height: 820px) {
    .hero {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .slideshow {
        height: 350px;
    }
}

/* =========================================================
   PIAG ACADEMY PAGE
   ========================================================= */

.academy-page-hero {
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 174, 239, 0.12), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255, 140, 0, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.academy-hero-panel {
    position: relative;
    overflow: hidden;
    padding: 44px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 95% 8%, rgba(255, 140, 0, 0.32), transparent 34%),
        linear-gradient(145deg, #0d182a, #13294b);
    box-shadow: var(--shadow);
    color: var(--white);
}

.academy-hero-panel::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -100px;
    bottom: -100px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.academy-badge {
    position: relative;
    z-index: 2;
    width: 132px;
    height: 132px;
    display: grid;
    place-items: center;
    margin-bottom: 30px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.academy-badge span {
    display: block;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.academy-badge strong {
    display: block;
    color: var(--white);
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 2.3rem;
    line-height: 1;
    letter-spacing: -0.06em;
}

.academy-hero-panel h3 {
    position: relative;
    z-index: 2;
    max-width: 560px;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2rem, 3vw, 3.3rem);
    line-height: 1;
    letter-spacing: -0.06em;
    margin-bottom: 18px;
}

.academy-hero-panel p {
    position: relative;
    z-index: 2;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 30px;
}

.academy-metrics {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.academy-metrics div {
    padding: 16px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.academy-metrics strong {
    display: block;
    color: var(--white);
    font-size: 1.3rem;
    line-height: 1;
    margin-bottom: 8px;
}

.academy-metrics small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 700;
}

/* Academy programs */

.academy-program-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.academy-program-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 26px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.academy-program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 140, 0, 0.35);
}

.featured-program {
    background:
        radial-gradient(circle at 90% 5%, rgba(255, 140, 0, 0.26), transparent 34%),
        linear-gradient(145deg, #0d182a, #13294b);
    color: var(--white);
}

.program-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(255, 140, 0, 0.12);
    color: var(--orange);
    border-radius: 16px;
    font-weight: 900;
    margin-bottom: 22px;
}

.featured-program .program-number {
    background: var(--orange);
    color: var(--white);
}

.academy-program-card h3 {
    color: var(--navy);
    font-size: 1.45rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.featured-program h3 {
    color: var(--white);
}

.academy-program-card p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.featured-program p {
    color: rgba(255, 255, 255, 0.76);
}

.academy-program-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.academy-program-card li {
    position: relative;
    padding-left: 24px;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.55;
}

.featured-program li {
    color: rgba(255, 255, 255, 0.86);
}

.academy-program-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--orange);
}

/* Audience */

.academy-audience-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: start;
}

.academy-audience-grid h2 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2.35rem, 4vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    color: var(--navy);
    margin-bottom: 20px;
}

.academy-audience-grid > div > p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.audience-list {
    display: grid;
    gap: 18px;
}

.audience-list div {
    padding: 24px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.audience-list strong {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 140, 0, 0.12);
    color: var(--orange);
    border-radius: 14px;
    margin-bottom: 14px;
}

.audience-list h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.audience-list p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.72;
}

/* Method */

.academy-method-section {
    background:
        radial-gradient(circle at 15% 10%, rgba(0, 174, 239, 0.14), transparent 34%),
        linear-gradient(135deg, #0d182a, #13294b);
    color: var(--white);
}

.academy-method-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: start;
}

.academy-method-grid h2 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2.35rem, 4vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    color: var(--white);
    margin-bottom: 20px;
}

.academy-method-grid p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.04rem;
    line-height: 1.8;
}

.method-steps {
    display: grid;
    gap: 18px;
}

.method-steps div {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.method-steps span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: var(--orange);
    color: var(--white);
    border-radius: 14px;
    margin-bottom: 14px;
    font-weight: 900;
}

.method-steps h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.method-steps p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
    line-height: 1.72;
}

/* Academy value */

.academy-value-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: start;
}

.academy-value-grid h2 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2.35rem, 4vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    color: var(--navy);
    margin-bottom: 20px;
}

.academy-value-grid > div > p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.academy-value-cards {
    display: grid;
    gap: 18px;
}

.academy-value-cards article {
    padding: 26px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.academy-value-cards span {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 140, 0, 0.12);
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.academy-value-cards h3 {
    color: var(--navy);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.academy-value-cards p {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.72;
}

/* Academy responsive */

@media (max-width: 1180px) {
    .academy-program-grid,
    .academy-audience-grid,
    .academy-method-grid,
    .academy-value-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .academy-program-grid,
    .academy-metrics {
        grid-template-columns: 1fr;
    }

    .academy-hero-panel,
    .academy-program-card,
    .audience-list div,
    .method-steps div,
    .academy-value-cards article {
        padding: 24px;
    }

    .academy-badge {
        width: 110px;
        height: 110px;
        border-radius: 26px;
    }

    .academy-badge strong {
        font-size: 1.9rem;
    }
}

/* =========================================================
   PIAG RESEARCH PAGE
   ========================================================= */

.research-page-hero {
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 174, 239, 0.12), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255, 140, 0, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.research-hero-panel {
    padding: 22px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 140, 0, 0.22), transparent 34%),
        linear-gradient(145deg, #0d182a, #13294b);
    box-shadow: var(--shadow);
    color: var(--white);
}

.research-window-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.research-window-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.32);
}

.research-window-top span:first-child {
    background: var(--orange);
}

.research-window-top small {
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.82rem;
    font-weight: 700;
}

.research-insight-card {
    padding: 34px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.research-insight-card > span {
    display: inline-flex;
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.research-insight-card h3 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.06em;
    color: var(--white);
    margin-bottom: 18px;
}

.research-insight-card p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 30px;
}

.research-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.research-mini-grid div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
}

.research-mini-grid strong {
    display: block;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.research-mini-grid small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
}

/* Research focus */

.research-focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.research-focus-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 26px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.research-focus-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 140, 0, 0.35);
}

.featured-research {
    background:
        radial-gradient(circle at 90% 5%, rgba(255, 140, 0, 0.26), transparent 34%),
        linear-gradient(145deg, #0d182a, #13294b);
    color: var(--white);
}

.research-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(255, 140, 0, 0.12);
    color: var(--orange);
    border-radius: 16px;
    font-weight: 900;
    margin-bottom: 22px;
}

.featured-research .research-number {
    background: var(--orange);
    color: var(--white);
}

.research-focus-card h3 {
    color: var(--navy);
    font-size: 1.45rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.featured-research h3 {
    color: var(--white);
}

.research-focus-card p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.featured-research p {
    color: rgba(255, 255, 255, 0.76);
}

.research-focus-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.research-focus-card li {
    position: relative;
    padding-left: 24px;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.55;
}

.featured-research li {
    color: rgba(255, 255, 255, 0.86);
}

.research-focus-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--orange);
}

/* Outputs */

.research-output-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: start;
}

.research-output-grid h2 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2.35rem, 4vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    color: var(--navy);
    margin-bottom: 20px;
}

.research-output-grid > div > p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.output-list {
    display: grid;
    gap: 18px;
}

.output-list div {
    padding: 24px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.output-list strong {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 140, 0, 0.12);
    color: var(--orange);
    border-radius: 14px;
    margin-bottom: 14px;
}

.output-list h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.output-list p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.72;
}

/* Research method */

.research-method-section {
    background:
        radial-gradient(circle at 15% 10%, rgba(0, 174, 239, 0.14), transparent 34%),
        linear-gradient(135deg, #0d182a, #13294b);
    color: var(--white);
}

.research-method-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: start;
}

.research-method-grid h2 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2.35rem, 4vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    color: var(--white);
    margin-bottom: 20px;
}

.research-method-grid p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.04rem;
    line-height: 1.8;
}

.research-method-steps {
    display: grid;
    gap: 18px;
}

.research-method-steps div {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.research-method-steps span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: var(--orange);
    color: var(--white);
    border-radius: 14px;
    margin-bottom: 14px;
    font-weight: 900;
}

.research-method-steps h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.research-method-steps p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
    line-height: 1.72;
}

/* Publications */

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

.publication-card {
    padding: 30px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.publication-card span {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 140, 0, 0.12);
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.publication-card h3 {
    color: var(--navy);
    font-size: 1.25rem;
    line-height: 1.25;
    margin-bottom: 12px;
}

.publication-card p {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.72;
    margin-bottom: 20px;
}

.publication-card a {
    color: var(--orange);
    font-weight: 850;
}

/* Research responsive */

@media (max-width: 1180px) {
    .research-focus-grid,
    .research-output-grid,
    .research-method-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 760px) {
    .research-focus-grid,
    .research-mini-grid,
    .publication-grid {
        grid-template-columns: 1fr;
    }

    .research-hero-panel,
    .research-insight-card,
    .research-focus-card,
    .output-list div,
    .research-method-steps div,
    .publication-card {
        padding: 24px;
    }
}

/* =========================================================
   RESEARCH PAGE PUBLICATION IMPROVEMENTS
   ========================================================= */

.featured-publication {
    background:
        radial-gradient(circle at 90% 5%, rgba(255, 140, 0, 0.24), transparent 34%),
        linear-gradient(145deg, #0d182a, #13294b);
    color: var(--white);
}

.featured-publication h3 {
    color: var(--white);
}

.featured-publication p {
    color: rgba(255, 255, 255, 0.76);
}

.featured-publication a {
    color: var(--orange);
}

.publication-points {
    list-style: none;
    display: grid;
    gap: 9px;
    margin: 18px 0 22px;
}

.publication-points li {
    position: relative;
    padding-left: 22px;
    color: var(--text);
    font-size: 0.93rem;
    line-height: 1.55;
}

.featured-publication .publication-points li {
    color: rgba(255, 255, 255, 0.86);
}

.publication-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

/* =========================================================
   PIAG RESEARCH COMPLETE LINKS AND PUBLICATION DETAILS
   Add this to the bottom of assets/css/styles.css
   ========================================================= */

.featured-publication {
    background:
        radial-gradient(circle at 90% 5%, rgba(255, 140, 0, 0.24), transparent 34%),
        linear-gradient(145deg, #0d182a, #13294b);
    color: var(--white);
}

.featured-publication h3,
.featured-publication p,
.featured-publication .publication-points li {
    color: rgba(255, 255, 255, 0.88);
}

.featured-publication h3 {
    color: var(--white);
}

.publication-points {
    list-style: none;
    display: grid;
    gap: 9px;
    margin: 18px 0 22px;
}

.publication-points li {
    position: relative;
    padding-left: 22px;
    color: var(--text);
    font-size: 0.93rem;
    line-height: 1.55;
}

.publication-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.publication-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
}

.publication-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 13px;
    border-radius: 10px;
    background: rgba(255, 140, 0, 0.11);
    color: var(--orange);
    font-weight: 850;
    font-size: 0.9rem;
}

.featured-publication .publication-actions a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.publication-detail-hero,
.article-hero {
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 174, 239, 0.12), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255, 140, 0, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.publication-detail-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.55fr;
    gap: 56px;
    align-items: center;
}

.publication-detail-grid h1,
.article-hero h1,
.publication-content h2 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    color: var(--navy);
    letter-spacing: -0.06em;
}

.publication-detail-grid h1,
.article-hero h1 {
    font-size: clamp(3rem, 5.2vw, 5.6rem);
    line-height: 0.98;
    margin-bottom: 24px;
}

.publication-detail-grid p,
.article-hero p {
    color: var(--muted);
    font-size: clamp(1.05rem, 1.25vw, 1.25rem);
    line-height: 1.8;
    max-width: 820px;
}

.publication-sidebar,
.download-card,
.article-sidebar {
    padding: 30px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 90% 5%, rgba(255, 140, 0, 0.22), transparent 34%),
        linear-gradient(145deg, #0d182a, #13294b);
    color: var(--white);
    box-shadow: var(--shadow);
}

.publication-sidebar span {
    display: inline-flex;
    color: var(--orange);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    margin-bottom: 14px;
}

.publication-sidebar h3,
.download-card h3,
.article-sidebar h3 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.publication-sidebar p,
.download-card p,
.article-sidebar p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.96rem;
    line-height: 1.72;
    margin-bottom: 18px;
}

.publication-sidebar a,
.download-card .text-link {
    color: var(--orange);
    font-weight: 850;
}

.publication-content-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 44px;
    align-items: start;
}

.publication-content {
    padding: 38px;
    border-radius: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.publication-content h2 {
    font-size: clamp(2rem, 3.2vw, 3.4rem);
    line-height: 1.05;
    margin-bottom: 28px;
}

.detail-block {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 22px;
    margin-bottom: 18px;
    background: #fff;
}

.detail-block h3 {
    color: var(--navy);
    font-size: 1.22rem;
    margin-bottom: 12px;
}

.detail-block ul {
    list-style: none;
    display: grid;
    gap: 9px;
}

.detail-block li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.65;
}

.detail-block li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.download-card {
    position: sticky;
    top: 92px;
}

.download-card .btn {
    width: 100%;
    margin-bottom: 14px;
}

.article-hero-inner {
    max-width: 980px;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 44px;
    align-items: start;
}

.article-body {
    padding: 42px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.article-body h2 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    color: var(--navy);
    font-size: 1.75rem;
    letter-spacing: -0.04em;
    margin: 24px 0 10px;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body p {
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

@media (max-width: 980px) {
    .publication-detail-grid,
    .publication-content-grid,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .download-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .publication-content,
    .article-body,
    .publication-sidebar,
    .download-card,
    .article-sidebar,
    .detail-block {
        padding: 24px;
    }

    .publication-actions {
        align-items: stretch;
    }

    .publication-actions a {
        width: 100%;
    }
}

/* =========================================================
   RESOURCES / KNOWLEDGE HUB PAGE
   ========================================================= */

.resources-page-hero {
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 174, 239, 0.12), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255, 140, 0, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.resources-hero-panel {
    position: relative;
    min-height: 520px;
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 12%, rgba(255, 140, 0, 0.24), transparent 34%),
        linear-gradient(145deg, #0d182a, #13294b);
    box-shadow: var(--shadow);
}

.resources-hero-panel::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -160px;
    top: -120px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.resources-stack-card {
    position: absolute;
    left: 36px;
    right: 36px;
    padding: 28px;
    border-radius: 24px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.resources-stack-card.top {
    top: 42px;
}

.resources-stack-card.middle {
    top: 190px;
    left: 70px;
}

.resources-stack-card.bottom {
    bottom: 42px;
}

.resources-stack-card span {
    display: inline-flex;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.resources-stack-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.resources-stack-card p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Featured knowledge cards */

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

.knowledge-card {
    padding: 32px;
    border-radius: 26px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.knowledge-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 140, 0, 0.35);
}

.featured-knowledge {
    background:
        radial-gradient(circle at 90% 5%, rgba(255, 140, 0, 0.24), transparent 34%),
        linear-gradient(145deg, #0d182a, #13294b);
    color: var(--white);
}

.knowledge-card span {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 140, 0, 0.12);
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.featured-knowledge span {
    background: var(--orange);
    color: var(--white);
}

.knowledge-card h3 {
    color: var(--navy);
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 14px;
}

.featured-knowledge h3 {
    color: var(--white);
}

.knowledge-card p {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.72;
    margin-bottom: 22px;
}

.featured-knowledge p {
    color: rgba(255, 255, 255, 0.76);
}

.knowledge-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.knowledge-actions a {
    color: var(--orange);
    font-weight: 850;
    font-size: 0.95rem;
}

/* Resource categories */

.resource-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.resource-category-card {
    display: block;
    padding: 30px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.resource-category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 140, 0, 0.35);
}

.resource-category-card strong {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 140, 0, 0.12);
    color: var(--orange);
    margin-bottom: 18px;
}

.resource-category-card h3 {
    color: var(--navy);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.resource-category-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Resource list cards */

.resource-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.resource-list-card {
    padding: 30px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.resource-list-card span {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 140, 0, 0.12);
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.resource-list-card h3 {
    color: var(--navy);
    font-size: 1.25rem;
    line-height: 1.25;
    margin-bottom: 12px;
}

.resource-list-card p {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.72;
    margin-bottom: 20px;
}

.resource-list-card a {
    color: var(--orange);
    font-weight: 850;
}

/* Resource CTA */

.resources-cta-section {
    padding: 96px 0;
    background: var(--light);
}

.resources-cta-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 56px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 85% 10%, rgba(255, 140, 0, 0.26), transparent 28%),
        linear-gradient(135deg, #0d182a, #13294b);
    color: var(--white);
    box-shadow: var(--shadow);
}

.resources-cta-card h2 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2.35rem, 4vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    color: var(--white);
    margin-bottom: 18px;
}

.resources-cta-card p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 760px;
    font-size: 1.04rem;
    line-height: 1.8;
}

/* Resources responsive */

@media (max-width: 1180px) {
    .knowledge-grid,
    .resource-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .resources-cta-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .knowledge-grid,
    .resource-category-grid,
    .resource-list-grid {
        grid-template-columns: 1fr;
    }

    .resources-hero-panel {
        min-height: 620px;
        border-radius: 24px;
    }

    .resources-stack-card {
        left: 20px;
        right: 20px;
        padding: 22px;
    }

    .resources-stack-card.middle {
        left: 20px;
        top: 220px;
    }

    .resources-stack-card.bottom {
        bottom: 32px;
    }

    .knowledge-card,
    .resource-category-card,
    .resource-list-card {
        padding: 24px;
    }

    .resources-cta-card {
        padding: 30px;
    }
}

/* =========================================================
   COMPANY / ABOUT PIAG PAGE
   ========================================================= */

.company-page-hero {
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 174, 239, 0.12), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255, 140, 0, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.company-hero-panel {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 92% 8%, rgba(255, 140, 0, 0.28), transparent 34%),
        linear-gradient(145deg, #0d182a, #13294b);
    color: var(--white);
    box-shadow: var(--shadow);
}

.company-hero-panel::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    right: -130px;
    bottom: -130px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.company-identity-card {
    position: relative;
    z-index: 2;
    margin-bottom: 28px;
}

.company-identity-card span {
    display: inline-flex;
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.company-identity-card h3 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2rem, 3vw, 3.25rem);
    line-height: 1;
    letter-spacing: -0.06em;
    color: var(--white);
    margin-bottom: 18px;
}

.company-identity-card p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.75;
}

.company-stat-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.company-stat-grid div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.company-stat-grid strong {
    display: block;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.company-stat-grid small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
    line-height: 1.45;
}

/* Company profile */

.company-profile-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.company-profile-grid h2 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2.35rem, 4vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    color: var(--navy);
}

.company-profile-grid p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.82;
}

.company-profile-grid p + p {
    margin-top: 18px;
}

/* Mission and vision */

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.mission-card {
    padding: 40px;
    border-radius: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.featured-mission {
    background:
        radial-gradient(circle at 90% 5%, rgba(255, 140, 0, 0.26), transparent 34%),
        linear-gradient(145deg, #0d182a, #13294b);
    color: var(--white);
}

.mission-card span {
    display: inline-flex;
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.mission-card h3 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    color: var(--navy);
    font-size: clamp(1.85rem, 2.7vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
}

.featured-mission h3 {
    color: var(--white);
}

.mission-card p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.78;
}

.featured-mission p {
    color: rgba(255, 255, 255, 0.76);
}

/* Company service cards */

.company-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.company-service-card {
    padding: 30px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.company-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 140, 0, 0.35);
}

.featured-company-service {
    background:
        radial-gradient(circle at 90% 5%, rgba(255, 140, 0, 0.24), transparent 34%),
        linear-gradient(145deg, #0d182a, #13294b);
    color: var(--white);
}

.company-service-number {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 140, 0, 0.12);
    color: var(--orange);
    font-weight: 900;
    margin-bottom: 22px;
}

.featured-company-service .company-service-number {
    background: var(--orange);
    color: var(--white);
}

.company-service-card h3 {
    color: var(--navy);
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 14px;
}

.featured-company-service h3 {
    color: var(--white);
}

.company-service-card p {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.72;
    margin-bottom: 20px;
}

.featured-company-service p {
    color: rgba(255, 255, 255, 0.76);
}

.company-service-card a {
    color: var(--orange);
    font-weight: 850;
}

/* Model section */

.company-model-section {
    background:
        radial-gradient(circle at 15% 10%, rgba(0, 174, 239, 0.14), transparent 34%),
        linear-gradient(135deg, #0d182a, #13294b);
    color: var(--white);
}

.company-model-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: start;
}

.company-model-grid h2 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2.35rem, 4vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    color: var(--white);
    margin-bottom: 20px;
}

.company-model-grid p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.04rem;
    line-height: 1.8;
}

.company-model-steps {
    display: grid;
    gap: 18px;
}

.company-model-steps div {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.company-model-steps span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: var(--orange);
    color: var(--white);
    border-radius: 14px;
    margin-bottom: 14px;
    font-weight: 900;
}

.company-model-steps h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.company-model-steps p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
    line-height: 1.72;
}

/* Values */

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

.value-card {
    padding: 30px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.value-card span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 140, 0, 0.12);
    color: var(--orange);
    font-weight: 900;
    margin-bottom: 18px;
}

.value-card h3 {
    color: var(--navy);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.72;
}

/* Why PIAG */

.company-why-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: start;
}

.company-why-grid h2 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2.35rem, 4vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    color: var(--navy);
    margin-bottom: 20px;
}

.company-why-grid > div > p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.company-why-list {
    display: grid;
    gap: 18px;
}

.company-why-list div {
    padding: 24px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.company-why-list strong {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 140, 0, 0.12);
    color: var(--orange);
    border-radius: 14px;
    margin-bottom: 14px;
}

.company-why-list h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.company-why-list p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.72;
}

/* Footer improvement for 5 columns */

.footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.85fr 0.85fr 0.9fr;
}

/* Company responsive */

@media (max-width: 1180px) {
    .company-profile-grid,
    .company-model-grid,
    .company-why-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 760px) {
    .company-stat-grid,
    .mission-vision-grid,
    .company-services-grid,
    .values-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .company-hero-panel,
    .mission-card,
    .company-service-card,
    .value-card,
    .company-model-steps div,
    .company-why-list div {
        padding: 24px;
    }
}

/* =========================================================
   CONTACT / BOOK DEMO PAGE
   ========================================================= */

.contact-page-hero {
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 174, 239, 0.12), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255, 140, 0, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.contact-hero-panel {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 92% 8%, rgba(255, 140, 0, 0.28), transparent 34%),
        linear-gradient(145deg, #0d182a, #13294b);
    color: var(--white);
    box-shadow: var(--shadow);
}

.contact-info-card {
    position: relative;
    z-index: 2;
}

.contact-info-card > span {
    display: inline-flex;
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.contact-info-card h3 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2rem, 3vw, 3.25rem);
    line-height: 1;
    letter-spacing: -0.06em;
    color: var(--white);
    margin-bottom: 28px;
}

.contact-info-list {
    display: grid;
    gap: 14px;
}

.contact-info-list div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-info-list strong {
    display: block;
    color: var(--orange);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.contact-info-list a,
.contact-info-list p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    line-height: 1.65;
}

/* Contact form layout */

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}

.contact-grid h2 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2.35rem, 4vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    color: var(--navy);
    margin-bottom: 20px;
}

.contact-grid > div > p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.contact-support-box {
    margin-top: 34px;
    padding: 28px;
    border-radius: 24px;
    background: var(--light);
    border: 1px solid var(--border);
}

.contact-support-box h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.contact-support-box ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.contact-support-box li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

.contact-support-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--orange);
}

.contact-form-card {
    padding: 34px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow);
}

.piag-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label,
.consent-check {
    color: var(--navy);
    font-weight: 800;
    font-size: 0.92rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    color: var(--text);
    background: #ffffff;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255, 140, 0, 0.7);
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.12);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.checkbox-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 14px;
    background: var(--light);
    border: 1px solid var(--border);
    cursor: pointer;
}

.checkbox-item input {
    margin-top: 4px;
}

.checkbox-item span {
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.45;
}

.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.consent-check input {
    margin-top: 5px;
}

.form-submit-btn {
    width: fit-content;
    border: 0;
    cursor: pointer;
}

.hidden-field {
    display: none;
}

.form-alert {
    padding: 18px;
    border-radius: 16px;
    margin-bottom: 22px;
}

.form-alert.error {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.18);
    color: #991b1b;
}

.form-alert ul {
    margin-top: 10px;
    padding-left: 18px;
}

/* Direct cards */

.contact-direct-section {
    padding: 96px 0;
    background: var(--light);
}

.contact-direct-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-direct-card {
    padding: 30px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.contact-direct-card span {
    display: inline-flex;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.contact-direct-card h3 {
    color: var(--navy);
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.contact-direct-card p {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.72;
    margin-bottom: 20px;
}

.contact-direct-card a {
    color: var(--orange);
    font-weight: 850;
}

/* Thank you page */

.thank-you-section {
    min-height: 70vh;
    display: grid;
    align-items: center;
    padding: 96px 0;
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 174, 239, 0.12), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255, 140, 0, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.thank-you-card {
    max-width: 900px;
    padding: 56px;
    border-radius: 34px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.thank-you-card h1 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.07em;
    color: var(--navy);
    margin-bottom: 22px;
}

.thank-you-card > p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 720px;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 34px 0;
}

.thank-you-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.thank-you-details div {
    padding: 18px;
    border-radius: 18px;
    background: var(--light);
    border: 1px solid var(--border);
}

.thank-you-details strong {
    display: block;
    color: var(--navy);
    margin-bottom: 6px;
}

.thank-you-details a {
    color: var(--orange);
    font-weight: 800;
}

/* Contact responsive */

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

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

@media (max-width: 760px) {
    .form-row,
    .checkbox-grid,
    .contact-direct-grid,
    .thank-you-details {
        grid-template-columns: 1fr;
    }

    .contact-hero-panel,
    .contact-form-card,
    .contact-direct-card,
    .thank-you-card {
        padding: 24px;
    }

    .form-submit-btn {
        width: 100%;
    }
}

/* =========================================================
   PIAG ADMIN LEADS VIEWER
   ========================================================= */

.admin-auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 174, 239, 0.12), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255, 140, 0, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.admin-auth-card {
    width: min(100%, 520px);
    padding: 42px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.admin-auth-logo img {
    width: 210px;
    height: auto;
    margin-bottom: 28px;
}

.admin-auth-card h1 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    color: var(--navy);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.06em;
    margin-bottom: 16px;
}

.admin-auth-card > p {
    color: var(--muted);
    margin-bottom: 28px;
}

.admin-login-form {
    margin-top: 24px;
}

.admin-back-link {
    display: inline-flex;
    margin-top: 24px;
    color: var(--orange);
    font-weight: 850;
}

.admin-page {
    min-height: 100vh;
    background: var(--light);
}

.admin-topbar {
    min-height: 74px;
    padding: 16px 32px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-topbar strong {
    display: block;
    color: var(--navy);
    font-size: 1.1rem;
}

.admin-topbar span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.admin-topbar nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.admin-topbar nav a {
    color: var(--orange);
    font-weight: 850;
    font-size: 0.92rem;
}

.admin-main {
    width: min(100% - 48px, 1280px);
    margin: 0 auto;
    padding: 50px 0;
}

.admin-page-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: end;
    margin-bottom: 28px;
}

.admin-page-header h1 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    color: var(--navy);
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.07em;
    margin-bottom: 12px;
}

.admin-page-header p {
    color: var(--muted);
    font-size: 1.05rem;
}

.admin-summary-card {
    min-width: 170px;
    padding: 24px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 90% 5%, rgba(255, 140, 0, 0.24), transparent 34%),
        linear-gradient(145deg, #0d182a, #13294b);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.admin-summary-card strong {
    display: block;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 8px;
}

.admin-summary-card span {
    color: rgba(255, 255, 255, 0.7);
}

.admin-filter-card,
.admin-table-card,
.lead-detail-card,
.lead-message-card {
    padding: 28px;
    border-radius: 26px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.admin-filter-card {
    margin-bottom: 24px;
}

.admin-filter-form {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr auto auto;
    gap: 16px;
    align-items: end;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1050px;
}

.admin-table th {
    text-align: left;
    color: var(--navy);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 14px;
    border-bottom: 1px solid var(--border);
    background: #f8fafc;
}

.admin-table td {
    padding: 16px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: top;
    font-size: 0.94rem;
}

.admin-table td strong {
    display: block;
    color: var(--navy);
    margin-bottom: 4px;
}

.admin-table td small {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
}

.admin-action-link {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 140, 0, 0.12);
    color: var(--orange);
    font-weight: 850;
}

.admin-empty-state {
    padding: 46px;
    border-radius: 26px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.admin-empty-state h1,
.admin-empty-state h2 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    color: var(--navy);
    font-size: 2.3rem;
    letter-spacing: -0.05em;
    margin-bottom: 12px;
}

.admin-empty-state p {
    color: var(--muted);
    margin-bottom: 24px;
}

.lead-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.lead-detail-card h2,
.lead-message-card h2 {
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 22px;
}

.lead-field {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.lead-field strong {
    color: var(--navy);
}

.lead-field span,
.lead-field a {
    color: var(--muted);
}

.lead-field a {
    color: var(--orange);
    font-weight: 800;
}

.lead-message-card p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.85;
    margin-bottom: 28px;
}

.lead-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Admin responsive */

@media (max-width: 900px) {
    .admin-topbar,
    .admin-page-header {
        grid-template-columns: 1fr;
        display: grid;
        align-items: start;
    }

    .admin-filter-form {
        grid-template-columns: 1fr;
    }

    .lead-detail-grid {
        grid-template-columns: 1fr;
    }

    .lead-field {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

@media (max-width: 560px) {
    .admin-main {
        width: min(100% - 28px, 1280px);
        padding: 34px 0;
    }

    .admin-auth-card,
    .admin-filter-card,
    .admin-table-card,
    .lead-detail-card,
    .lead-message-card,
    .admin-empty-state {
        padding: 22px;
    }

    .admin-topbar {
        padding: 16px;
    }
}

/* =========================================================
   HOSTING POLISH: ERROR + PRIVACY PAGES
   ========================================================= */

.error-page-section {
    min-height: 72vh;
    display: grid;
    align-items: center;
    padding: 96px 0;
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 174, 239, 0.12), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255, 140, 0, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.error-page-card {
    max-width: 960px;
    padding: 56px;
    border-radius: 34px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.error-page-card h1 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.07em;
    color: var(--navy);
    margin-bottom: 22px;
}

.error-page-card > p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 760px;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 34px 0;
}

.error-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.error-link-grid a {
    display: block;
    padding: 16px;
    border-radius: 16px;
    background: var(--light);
    border: 1px solid var(--border);
    color: var(--navy);
    font-weight: 850;
}

.error-link-grid a:hover {
    color: var(--orange);
}

.privacy-page-hero {
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 174, 239, 0.12), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(255, 140, 0, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.privacy-hero-panel {
    padding: 42px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 92% 8%, rgba(255, 140, 0, 0.28), transparent 34%),
        linear-gradient(145deg, #0d182a, #13294b);
    color: var(--white);
    box-shadow: var(--shadow);
}

.privacy-hero-panel span {
    display: inline-flex;
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.privacy-hero-panel h3 {
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2rem, 3vw, 3.25rem);
    line-height: 1;
    letter-spacing: -0.06em;
    color: var(--white);
    margin-bottom: 18px;
}

.privacy-hero-panel p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.75;
}

.legal-content {
    max-width: 920px;
}

.legal-content h2 {
    color: var(--navy);
    font-size: 1.55rem;
    margin: 34px 0 12px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.legal-content a {
    color: var(--orange);
    font-weight: 850;
}

.consent-check a {
    color: var(--orange);
    font-weight: 850;
}

/* PIAG digital product suite */
.product-hero {
    background: radial-gradient(circle at 82% 12%, rgba(255, 140, 0, .14), transparent 28%), linear-gradient(180deg, #fff, #f5f8fc);
}

.product-stack { display: grid; gap: 28px; }
.product-feature {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 28px;
    padding: clamp(26px, 4vw, 48px);
    border: 1px solid var(--border);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(13, 24, 42, .07);
}
.product-feature--sentinel { border-top: 5px solid var(--orange); }
.product-mark {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(145deg, var(--navy), #1d4675);
    font: 800 2rem "Space Grotesk", sans-serif;
}
.product-label { color: var(--orange); font-size: .78rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.product-feature h2 { color: var(--navy); margin: 10px 0 14px; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.product-feature p { color: var(--muted); line-height: 1.8; max-width: 900px; }
.product-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 24px; margin: 22px 0 26px; padding: 0; list-style: none; }
.product-points li { position: relative; padding-left: 22px; color: var(--navy); font-weight: 650; }
.product-points li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 900; }
.product-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.text-link { color: var(--navy); font-weight: 850; }

@media (max-width: 760px) {
    .product-feature { grid-template-columns: 1fr; }
    .product-points { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .error-page-card,
    .privacy-hero-panel {
        padding: 24px;
    }

    .error-link-grid {
        grid-template-columns: 1fr;
    }
}
