/*
Theme Name: Improx Data Enterprise
Theme URI: https://improxdcc.com
Author: Improx Engineering Team
Author URI: https://improxdata.com
Description: Enterprise B2B Data Operations, Web Scraping, AI Data Annotation & Back-Office Services WordPress Theme.
Version: 1.0.0
Text Domain: improx-data
*/

/* IMPROX DATA - CLEAN ENTERPRISE B2B DESIGN SYSTEM */

:root {
  --brand-blue: #2563eb;
  --brand-blue-hover: #1d4ed8;
  --brand-blue-light: #eff6ff;
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  --text-main: #0f172a;
  --text-heading: #0f172a;
  --text-muted: #475569;
  --text-dim: #64748b;
  --border-light: #e2e8f0;
  --border-dark: #cbd5e1;
  --font-heading: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-full: 9999px;
  --shadow-subtle: 0 1px 3px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 4px 12px rgba(15, 23, 42, 0.08);
  --transition: all 0.2s ease-in-out;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

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

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

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }

p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: var(--brand-blue-light);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.badge-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--brand-blue);
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-blue);
  color: #ffffff;
  border: 1px solid var(--brand-blue);
}

.btn-primary:hover {
  background: var(--brand-blue-hover);
  border-color: var(--brand-blue-hover);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-dark);
}

.btn-secondary:hover {
  background: #f1f5f9;
  border-color: var(--text-dim);
}

.btn-large {
  padding: 14px 28px;
  font-size: 1rem;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--brand-blue);
}

/* Services Grid & Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-subtle);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-dark);
}

.service-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Contact Form Input Fields */
.contact-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
  color: #0f172a;
  outline: none;
  background: #ffffff;
  transition: all 0.2s ease-in-out;
}

.contact-input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* WordPress Post Content Typography */
.wp-post-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
}

.wp-post-content h2 {
  margin-top: 36px;
  margin-bottom: 16px;
  color: #0f172a;
}

.wp-post-content p {
  margin-bottom: 20px;
}

.wp-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 24px 0;
}

/* Keyframes */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.spin {
  animation: spin 1s linear infinite;
}

/* =====================================================
   SERVICES PAGE
===================================================== */

.services-page {
    background: #ffffff;
    padding-top: 40px;
}


/* HERO */

.services-page-hero {
    padding: 60px 0 70px;
    text-align: center;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.services-page-hero-inner {
    max-width: 850px;
    margin: 0 auto;
}

.services-page-hero h1 {
    margin: 18px 0 16px;

    font-size: clamp(2.2rem, 4vw, 3.3rem);
    line-height: 1.15;

    font-weight: 800;
    color: #0f172a;
}

.services-page-hero p {
    max-width: 760px;
    margin: 0 auto;

    font-size: 1.05rem;
    line-height: 1.7;

    color: #64748b;
}


/* CONTENT */

.services-page-content {
    padding: 70px 0 90px;
}


/* GRID */

.services-page .services-grid {
    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr)) !important;

    gap: 30px !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* CARD */

.services-page .service-card {
    display: flex !important;
    flex-direction: column !important;

    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;

    min-height: 370px !important;

    padding: 32px !important;
    margin: 0 !important;

    box-sizing: border-box !important;

    background: #ffffff !important;

    border: 1px solid #dbe3ee !important;
    border-radius: 12px !important;

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


.services-page .service-card:hover {
    transform: translateY(-4px);

    border-color: #2563eb !important;

    box-shadow:
        0 14px 35px rgba(15, 23, 42, 0.08);
}


/* ========================================
   ICON
======================================== */

.service-card .service-icon-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;

    margin: 0 0 22px !important;

    background: #eff6ff !important;

    border: 1px solid #bfdbfe !important;
    border-radius: 8px !important;
}


/* SVG inside icon box */

.service-card .service-icon-wrapper svg {
    display: block !important;

    width: 28px !important;
    height: 28px !important;

    fill: none !important;
    stroke: #2563eb !important;

    stroke-width: 1.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}


/* Prevent theme CSS from filling SVG black */

.service-card .service-icon-wrapper svg path,
.service-card .service-icon-wrapper svg circle,
.service-card .service-icon-wrapper svg ellipse,
.service-card .service-icon-wrapper svg rect {
    fill: none !important;
    stroke: #2563eb !important;
}


/* ========================================
   CATEGORY
======================================== */

.service-card .service-category {
    display: block;

    margin-bottom: 8px;

    color: #2563eb;

    font-size: 0.72rem;
    line-height: 1.3;

    font-weight: 700;

    text-transform: uppercase;
}

/* ========================================
   SERVICE TAGS
======================================== */

.service-card .service-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;

    gap: 8px !important;

    margin: 0 0 22px 0 !important;
    padding: 0 !important;
}


.service-card .service-tags span {
    display: inline-flex !important;
    align-items: center !important;

    width: auto !important;

    padding: 6px 10px !important;
    margin: 0 !important;

    background: #f1f5f9 !important;
    color: #475569 !important;

    border: 0 !important;
    border-radius: 5px !important;

    font-size: 0.75rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;

    text-transform: none !important;
    letter-spacing: 0 !important;
}

/* TITLE */

.services-page .service-title {
    margin: 0 0 12px !important;

    font-size: 1.25rem !important;
    line-height: 1.3 !important;

    font-weight: 700 !important;
}


.services-page .service-title a {
    color: #0f172a !important;
    text-decoration: none !important;
}


/* DESCRIPTION */

.services-page .service-desc {
    margin: 0 0 25px !important;

    color: #64748b !important;

    font-size: 0.95rem !important;
    line-height: 1.65 !important;

    overflow-wrap: normal !important;
    word-break: normal !important;
}


/* LINK */

.services-page .service-explore-link {
    display: inline-flex !important;

    align-items: center !important;
    gap: 7px !important;

    margin-top: auto !important;

    color: #2563eb !important;

    font-size: 0.92rem !important;
    font-weight: 700 !important;

    text-decoration: none !important;
}


.services-page .service-explore-link:hover {
    color: #1d4ed8 !important;
}


/* TABLET */

@media (max-width: 1024px) {

    .services-page .services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .services-page-content {
        padding: 45px 0 65px;
    }

    .services-page .services-grid {
        grid-template-columns:
            minmax(0, 1fr) !important;

        gap: 20px !important;
    }

    .services-page .service-card {
        min-height: auto !important;
        padding: 26px !important;
    }

}

/* =========================================================
   IMPROX DATA HOMEPAGE
   Scoped only to .home-page
========================================================= */

.home-page {
    background: #ffffff;
    color: #0f172a;
    overflow: hidden;
}


/* =========================================================
   SHARED HOMEPAGE
========================================================= */

.home-page .home-section-header {
    width: 100%;
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.home-page .home-section-header h2 {
    margin: 14px 0 14px;

    color: #0f172a;

    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.home-page .home-section-header > p {
    max-width: 680px;
    margin: 0 auto;

    color: #64748b;

    font-size: 1rem;
    line-height: 1.7;
}


.home-page .home-section-badge,
.home-page .home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 6px 13px;

    background: #eff6ff;

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

    color: #2563eb;

    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 0.055em;
    text-transform: uppercase;
}


.home-page .home-badge-dot {
    display: block;

    width: 6px;
    height: 6px;

    flex: 0 0 6px;

    background: #2563eb;

    border-radius: 50%;
}


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

.home-page .home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 48px;

    padding: 12px 22px;

    border-radius: 7px;

    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.home-page .home-btn-primary {
    background: #2563eb;
    color: #ffffff;

    border: 1px solid #2563eb;

    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.18);
}


.home-page .home-btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;

    color: #ffffff;

    transform: translateY(-1px);
}


.home-page .home-btn-secondary {
    background: #ffffff;

    color: #0f172a;

    border: 1px solid #cbd5e1;
}


.home-page .home-btn-secondary:hover {
    background: #f8fafc;

    border-color: #94a3b8;

    color: #0f172a;

    transform: translateY(-1px);
}


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

.home-page .home-hero {
    position: relative;

    padding: 105px 0 95px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(37, 99, 235, 0.08),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbff 100%
        );

    border-bottom: 1px solid #e2e8f0;
}


.home-page .home-hero-inner {
    width: 100%;
    max-width: 970px;

    margin: 0 auto;

    text-align: center;
}


.home-page .home-hero-badge {
    margin-bottom: 23px;
}


.home-page .home-hero-title {
    max-width: 930px;

    margin: 0 auto 22px;

    color: #0f172a;

    font-size: clamp(2.7rem, 5vw, 4.35rem);
    font-weight: 800;
    line-height: 1.06;

    letter-spacing: -0.05em;
}


.home-page .home-hero-title span {
    color: #2563eb;
}


.home-page .home-hero-description {
    max-width: 790px;

    margin: 0 auto 33px;

    color: #64748b;

    font-size: 1.06rem;
    line-height: 1.75;
}


.home-page .home-hero-actions {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   METRICS
========================================================= */

.home-page .home-metrics {
    background: #ffffff;

    border-bottom: 1px solid #e2e8f0;
}


.home-page .home-metrics-grid {
    display: grid;

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

    max-width: 1000px;

    margin: 0 auto;
}


.home-page .home-metric {
    position: relative;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    min-height: 120px;

    padding: 24px 20px;

    text-align: center;
}


.home-page .home-metric:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 30px;
    right: 0;
    bottom: 30px;

    width: 1px;

    background: #e2e8f0;
}


.home-page .home-metric strong {
    display: block;

    margin-bottom: 4px;

    color: #0f172a;

    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;

    line-height: 1.1;
}


.home-page .home-metric span {
    color: #64748b;

    font-size: 0.78rem;
    font-weight: 600;
}


/* =========================================================
   SERVICES
========================================================= */

.home-page .home-services {
    padding: 90px 0 95px;

    background: #ffffff;

    border-bottom: 1px solid #e2e8f0;
}


.home-page .home-services-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;
}


.home-page .home-service-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 330px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #dbe3ee;
    border-radius: 10px;

    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.025);

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


.home-page .home-service-card:hover {
    transform: translateY(-4px);

    border-color: #93c5fd;

    box-shadow:
        0 15px 35px rgba(15, 23, 42, 0.07);
}


.home-page .home-service-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    margin-bottom: 20px;

    overflow: hidden;

    background: #eff6ff;

    border: 1px solid #bfdbfe;
    border-radius: 8px;

    color: #2563eb;
}


.home-page .home-service-icon svg {
    display: block;

    width: 27px;
    height: 27px;

    fill: none;

    stroke: currentColor;
}


.home-page .home-service-thumbnail {
    display: block;

    width: 28px !important;
    height: 28px !important;

    object-fit: contain;
}


.home-page .home-service-category {
    display: block;

    margin-bottom: 7px;

    color: #2563eb;

    font-size: 0.7rem;
    font-weight: 800;

    letter-spacing: 0.04em;

    text-transform: uppercase;
}


.home-page .home-service-title {
    margin: 0 0 11px;

    font-size: 1.22rem;
    font-weight: 750;
    line-height: 1.3;

    letter-spacing: -0.02em;
}


.home-page .home-service-title a {
    color: #0f172a;

    text-decoration: none;
}


.home-page .home-service-title a:hover {
    color: #2563eb;
}


.home-page .home-service-description {
    margin: 0 0 22px;

    color: #64748b;

    font-size: 0.9rem;
    line-height: 1.7;
}


.home-page .home-service-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: auto;

    color: #2563eb;

    font-size: 0.86rem;
    font-weight: 750;

    text-decoration: none;
}


.home-page .home-service-link:hover {
    color: #1d4ed8;
}


.home-page .home-section-action {
    display: flex;

    justify-content: center;

    margin-top: 38px;
}


/* =========================================================
   WHY IMPROX
========================================================= */

.home-page .home-why {
    padding: 100px 0;

    background: #f8fafc;

    border-bottom: 1px solid #e2e8f0;
}


.home-page .home-why-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(360px, 0.95fr);

    align-items: center;

    gap: 80px;
}


.home-page .home-why-content h2 {
    max-width: 620px;

    margin: 17px 0 18px;

    color: #0f172a;

    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 800;
    line-height: 1.12;

    letter-spacing: -0.04em;
}


.home-page .home-why-intro {
    max-width: 630px;

    margin: 0 0 34px;

    color: #64748b;

    font-size: 1rem;
    line-height: 1.75;
}


.home-page .home-feature-list {
    display: flex;
    flex-direction: column;

    gap: 23px;
}


.home-page .home-feature-item {
    display: grid;

    grid-template-columns: 36px 1fr;

    gap: 14px;

    align-items: flex-start;
}


.home-page .home-feature-check {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    margin-top: 1px;

    background: #eff6ff;

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

    color: #2563eb;

    font-size: 0.85rem;
    font-weight: 900;
}


.home-page .home-feature-item h3 {
    margin: 0 0 5px;

    color: #0f172a;

    font-size: 1rem;
    font-weight: 750;
}


.home-page .home-feature-item p {
    margin: 0;

    color: #64748b;

    font-size: 0.88rem;
    line-height: 1.65;
}


/* =========================================================
   OPERATIONS CARD
========================================================= */

.home-page .home-operations-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #cbd5e1;
    border-radius: 12px;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.08);
}


.home-page .home-operations-header {
    display: flex;

    align-items: center;

    gap: 9px;

    min-height: 54px;

    padding: 0 20px;

    background: #0f172a;

    color: #e2e8f0;

    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.04em;
}


.home-page .home-live-dot {
    width: 7px;
    height: 7px;

    background: #22c55e;

    border-radius: 50%;

    box-shadow:
        0 0 0 4px rgba(34, 197, 94, 0.12);
}


.home-page .home-operational {
    margin-left: auto;

    color: #86efac;

    font-size: 0.62rem;
}


.home-page .home-operations-body {
    padding: 30px;
}


.home-page .home-operation-row {
    display: flex;

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

    gap: 20px;

    margin-bottom: 9px;

    color: #475569;

    font-size: 0.8rem;
    font-weight: 650;
}


.home-page .home-operation-row strong {
    color: #0f172a;

    font-family: var(--font-mono);

    font-size: 0.75rem;
}


.home-page .home-progress {
    width: 100%;
    height: 7px;

    margin-bottom: 25px;

    overflow: hidden;

    background: #e2e8f0;

    border-radius: 999px;
}


.home-page .home-progress span {
    display: block;

    height: 100%;

    background: #2563eb;

    border-radius: inherit;
}


.home-page .home-operation-summary {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;

    margin-top: 5px;
}


.home-page .home-operation-summary > div {
    padding: 17px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;
    border-radius: 7px;
}


.home-page .home-operation-summary span,
.home-page .home-operation-summary strong {
    display: block;
}


.home-page .home-operation-summary span {
    margin-bottom: 5px;

    color: #94a3b8;

    font-size: 0.66rem;
    font-weight: 700;

    text-transform: uppercase;
}


.home-page .home-operation-summary strong {
    color: #0f172a;

    font-size: 0.8rem;
}


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

.home-page .home-process {
    padding: 95px 0;

    background: #ffffff;

    border-bottom: 1px solid #e2e8f0;
}


.home-page .home-process-grid {
    display: grid;

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

    gap: 20px;
}


.home-page .home-process-card {
    min-height: 240px;

    padding: 27px 25px;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 9px;
}


.home-page .home-process-number {
    display: inline-flex;

    margin-bottom: 25px;

    color: #2563eb;

    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 800;
}


.home-page .home-process-card h3 {
    margin: 0 0 11px;

    color: #0f172a;

    font-size: 1.05rem;
    font-weight: 750;
}


.home-page .home-process-card p {
    margin: 0;

    color: #64748b;

    font-size: 0.84rem;
    line-height: 1.7;
}


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

.home-page .home-capabilities {
    padding: 95px 0;

    background: #f8fafc;

    border-bottom: 1px solid #e2e8f0;
}


.home-page .home-capabilities-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 15px;
}


.home-page .home-capability-item {
    display: flex;

    align-items: center;

    gap: 16px;

    min-height: 75px;

    padding: 18px 21px;

    background: #ffffff;

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

    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}


.home-page .home-capability-item:hover {
    transform: translateY(-2px);

    border-color: #93c5fd;
}


.home-page .home-capability-item span {
    color: #2563eb;

    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 800;
}


.home-page .home-capability-item strong {
    color: #0f172a;

    font-size: 0.88rem;
    font-weight: 700;
}


/* =========================================================
   BLOG
========================================================= */

.home-page .home-insights {
    padding: 95px 0;

    background: #ffffff;

    border-bottom: 1px solid #e2e8f0;
}


.home-page .home-blog-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 25px;
}


.home-page .home-blog-card {
    display: flex;
    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    background: #ffffff;

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

    box-shadow:
        0 1px 3px rgba(15, 23, 42, 0.04);

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


.home-page .home-blog-card:hover {
    transform: translateY(-4px);

    border-color: #cbd5e1;

    box-shadow:
        0 15px 35px rgba(15, 23, 42, 0.07);
}


.home-page .home-blog-image {
    display: block;

    height: 205px;

    overflow: hidden;

    background: #f1f5f9;
}


.home-page .home-blog-image img {
    display: block;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover;

    transition: transform 0.35s ease;
}


.home-page .home-blog-card:hover .home-blog-image img {
    transform: scale(1.035);
}


.home-page .home-blog-content {
    display: flex;
    flex: 1;
    flex-direction: column;

    padding: 24px;
}


.home-page .home-blog-meta {
    display: flex;

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

    gap: 10px;

    margin-bottom: 10px;
}


.home-page .home-blog-category {
    color: #2563eb;

    font-size: 0.67rem;
    font-weight: 800;

    text-transform: uppercase;
}


.home-page .home-blog-date {
    color: #94a3b8;

    font-size: 0.68rem;
}


.home-page .home-blog-content h3 {
    margin: 0 0 10px;

    color: #0f172a;

    font-size: 1.1rem;
    font-weight: 750;
    line-height: 1.35;
}


.home-page .home-blog-content h3 a {
    color: inherit;
}


.home-page .home-blog-content h3 a:hover {
    color: #2563eb;
}


.home-page .home-blog-content p {
    margin: 0 0 20px;

    color: #64748b;

    font-size: 0.84rem;
    line-height: 1.7;
}


.home-page .home-blog-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: auto;

    color: #2563eb;

    font-size: 0.82rem;
    font-weight: 750;
}


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

.home-page .home-final-cta {
    padding: 85px 0;

    background: #ffffff;
}


.home-page .home-final-cta-box {
    display: flex;

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

    gap: 55px;

    padding: 55px 60px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(59, 130, 246, 0.35),
            transparent 35%
        ),
        #0f172a;

    border-radius: 14px;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.15);
}


.home-page .home-final-cta-content {
    max-width: 680px;
}


.home-page .home-final-label {
    display: block;

    margin-bottom: 13px;

    color: #93c5fd;

    font-size: 0.7rem;
    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.home-page .home-final-cta-content h2 {
    margin: 0 0 13px;

    color: #ffffff;

    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;

    letter-spacing: -0.035em;
}


.home-page .home-final-cta-content p {
    margin: 0;

    color: #cbd5e1;

    font-size: 0.9rem;
    line-height: 1.7;
}


.home-page .home-final-actions {
    display: flex;

    flex: 0 0 auto;
    flex-direction: column;

    gap: 10px;

    min-width: 190px;
}


.home-page .home-btn-white {
    background: #ffffff;

    color: #0f172a;

    border: 1px solid #ffffff;
}


.home-page .home-btn-white:hover {
    background: #eff6ff;

    color: #1d4ed8;
}


.home-page .home-btn-outline-white {
    background: transparent;

    color: #ffffff;

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


.home-page .home-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(255, 255, 255, 0.65);

    color: #ffffff;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.home-page .home-empty-state {
    grid-column: 1 / -1;

    padding: 35px;

    background: #f8fafc;

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

    color: #64748b;

    text-align: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .home-page .home-hero {
        padding: 85px 0 80px;
    }


    .home-page .home-services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .home-page .home-why-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .home-page .home-operations-card {
        max-width: 650px;

        width: 100%;
    }


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


    .home-page .home-blog-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .home-page .home-blog-card:last-child {
        grid-column: span 2;

        max-width: 560px;
    }


    .home-page .home-final-cta-box {
        padding: 48px 45px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .home-page .home-hero {
        padding: 65px 0 60px;
    }


    .home-page .home-hero-title {
        font-size: clamp(2.2rem, 11vw, 3rem);

        line-height: 1.08;
    }


    .home-page .home-hero-description {
        font-size: 0.95rem;
    }


    .home-page .home-hero-actions {
        flex-direction: column;

        width: 100%;
    }


    .home-page .home-hero-actions .home-btn {
        width: 100%;

        max-width: 360px;
    }


    .home-page .home-metrics-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .home-page .home-metric {
        min-height: 105px;
    }


    .home-page .home-metric::after {
        display: none;
    }


    .home-page .home-metric:nth-child(1),
    .home-page .home-metric:nth-child(2) {
        border-bottom: 1px solid #e2e8f0;
    }


    .home-page .home-metric:nth-child(odd) {
        border-right: 1px solid #e2e8f0;
    }


    .home-page .home-services,
    .home-page .home-why,
    .home-page .home-process,
    .home-page .home-capabilities,
    .home-page .home-insights {
        padding: 65px 0;
    }


    .home-page .home-section-header {
        margin-bottom: 35px;
    }


    .home-page .home-services-grid,
    .home-page .home-process-grid,
    .home-page .home-capabilities-grid,
    .home-page .home-blog-grid {
        grid-template-columns: 1fr;
    }


    .home-page .home-service-card {
        min-height: auto;

        padding: 26px;
    }


    .home-page .home-why-layout {
        grid-template-columns: 1fr;

        gap: 42px;
    }


    .home-page .home-operation-summary {
        grid-template-columns: 1fr;
    }


    .home-page .home-operations-body {
        padding: 24px;
    }


    .home-page .home-process-card {
        min-height: auto;
    }


    .home-page .home-blog-card:last-child {
        grid-column: auto;

        max-width: none;
    }


    .home-page .home-final-cta {
        padding: 55px 0;
    }


    .home-page .home-final-cta-box {
        flex-direction: column;

        align-items: flex-start;

        gap: 30px;

        padding: 38px 28px;
    }


    .home-page .home-final-actions {
        width: 100%;

        min-width: 0;
    }


    .home-page .home-final-actions .home-btn {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .home-page .home-hero {
        padding-top: 55px;
    }


    .home-page .home-hero-badge,
    .home-page .home-section-badge {
        font-size: 0.62rem;
    }


    .home-page .home-metric strong {
        font-size: 1.45rem;
    }


    .home-page .home-service-card {
        padding: 23px;
    }


    .home-page .home-final-cta-box {
        padding: 32px 22px;
    }

}


/* =========================================================
   DYNAMIC HOMEPAGE HERO SLIDER
   FINAL — STRONGER BACKGROUND IMAGE
========================================================= */

.home-page .home-hero-slider {
    min-height: 650px;
}

.home-page .home-slider-track {
    min-height: 650px;
}

.home-page .home-slide {
    min-height: 650px;

    padding: 70px 70px 95px;
}


/* =========================================================
   INDIVIDUAL SLIDE
========================================================= */

.home-page .home-slide {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    width: 100%;
    min-height: 570px;

    padding: 90px 70px 100px;

    background-color: #ffffff;

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    opacity: 0;
    visibility: hidden;

    transform: translateX(35px);

    pointer-events: none;

    transition:
        opacity 0.65s ease,
        transform 0.65s ease,
        visibility 0.65s ease;
}


/* =========================================================
   BACKGROUND IMAGE OVERLAY
   Lower opacity = stronger image
========================================================= */

.home-page .home-slide::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    /*
     * 0.30 keeps the image clearly visible
     * while maintaining text readability.
     */
    background: rgba(255, 255, 255, 0.30);

    pointer-events: none;
}


/* =========================================================
   ACTIVE SLIDE
========================================================= */

.home-page .home-slide.active {
    position: relative;

    opacity: 1;
    visibility: visible;

    transform: translateX(0);

    pointer-events: auto;
}


/* =========================================================
   HERO CONTENT
   Must stay above background overlay
========================================================= */

.home-page .home-slide .home-hero-inner {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 970px;

    margin: 0 auto;

    text-align: center;
}


.home-page .home-slide .home-hero-badge {
    margin-bottom: 23px;
}


.home-page .home-slide .home-hero-title {
    max-width: 1050px;

    margin: 0 auto 22px;

    color: #0f172a;

    font-family: var(--font-heading);

    font-size: clamp(2.6rem, 4.5vw, 4rem);

    font-weight: 800;

    line-height: 1.06;

    letter-spacing: -0.045em;
}

.home-page .home-slide .home-hero-title span {
    display: block;

    color: #2563eb;
}


.home-page .home-slide .home-hero-description {
    max-width: 790px;

    margin: 0 auto 32px;

    /*
     * Slightly darker than before because
     * background image is now more visible.
     */
    color: #475569;

    font-size: 1.04rem;

    font-weight: 500;

    line-height: 1.75;
}


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

.home-page .home-slide .home-hero-actions {
    position: relative;

    z-index: 3;
}


/* =========================================================
   ARROWS
========================================================= */

.home-page .home-slider-arrow {
    position: absolute;

    top: 50%;

    z-index: 20;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    padding: 0;

    background: rgba(255, 255, 255, 0.95);

    color: #334155;

    border: 1px solid #dbe3ee;

    border-radius: 50%;

    box-shadow:
        0 5px 20px rgba(15, 23, 42, 0.12);

    font-size: 18px;

    transform: translateY(-50%);

    cursor: pointer;

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


.home-page .home-slider-arrow:hover {
    background: #2563eb;

    border-color: #2563eb;

    color: #ffffff;
}


.home-page .home-slider-prev {
    left: 30px;
}


.home-page .home-slider-next {
    right: 30px;
}


/* =========================================================
   DOT NAVIGATION
========================================================= */

.home-page .home-slider-dots {
    position: absolute;

    left: 50%;
    bottom: 28px;

    z-index: 20;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    transform: translateX(-50%);
}


.home-page .home-slider-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    background: #cbd5e1;

    border: 0;

    border-radius: 999px;

    cursor: pointer;

    transition:
        width 0.25s ease,
        background-color 0.25s ease;
}


.home-page .home-slider-dot.active {
    width: 27px;

    background: #2563eb;
}


/* =========================================================
   CONTENT ANIMATION
========================================================= */

.home-page .home-slide .home-hero-badge,
.home-page .home-slide .home-hero-title,
.home-page .home-slide .home-hero-description,
.home-page .home-slide .home-hero-actions {

    opacity: 0;

    transform: translateY(16px);

    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}


.home-page .home-slide.active .home-hero-badge {

    opacity: 1;

    transform: translateY(0);

    transition-delay: 0.12s;
}


.home-page .home-slide.active .home-hero-title {

    opacity: 1;

    transform: translateY(0);

    transition-delay: 0.20s;
}


.home-page .home-slide.active .home-hero-description {

    opacity: 1;

    transform: translateY(0);

    transition-delay: 0.28s;
}


.home-page .home-slide.active .home-hero-actions {

    opacity: 1;

    transform: translateY(0);

    transition-delay: 0.36s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .home-page .home-hero-slider,
    .home-page .home-slider-track,
    .home-page .home-slide {

        min-height: 540px;
    }


    .home-page .home-slide {

        padding:
            80px
            70px
            95px;
    }


    /*
     * Slightly lighter overlay on tablet
     * for text readability.
     */
    .home-page .home-slide::before {

        background:
            rgba(255, 255, 255, 0.34);
    }


    .home-page .home-slider-prev {

        left: 18px;
    }


    .home-page .home-slider-next {

        right: 18px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .home-page .home-hero-slider,
    .home-page .home-slider-track,
    .home-page .home-slide {

        min-height: 590px;
    }


    .home-page .home-slide {

        padding:
            65px
            24px
            95px;

        background-position: center center;
    }


    /*
     * Mobile gets slightly stronger white overlay because
     * text covers more of the photograph.
     */
    .home-page .home-slide::before {

        background:
            rgba(255, 255, 255, 0.42);
    }


    .home-page .home-slide .home-hero-title {

        font-size: clamp(
            2.1rem,
            10vw,
            2.9rem
        );
    }


    .home-page .home-slide .home-hero-description {

        color: #475569;

        font-size: 0.93rem;

        font-weight: 500;
    }


    .home-page .home-slider-arrow {

        top: auto;
        bottom: 18px;

        width: 36px;
        height: 36px;

        font-size: 14px;

        transform: none;
    }


    .home-page .home-slider-prev {

        left: 22px;
    }


    .home-page .home-slider-next {

        right: 22px;
    }


    .home-page .home-slider-dots {

        bottom: 32px;
    }

}

/* =========================================================
   HOME WHY SECTION - FINAL RESPONSIVE FIX
========================================================= */

.home-page .home-why {
    width: 100%;
    padding: 100px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.home-page .home-why .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
}


/* =========================================
   TWO COLUMNS
========================================= */

.home-page .home-why-layout {
    display: grid !important;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, 0.95fr) !important;

    align-items: center !important;

    gap: 70px !important;

    width: 100% !important;
}


/* =========================================
   LEFT SIDE
========================================= */

.home-page .home-why-content {
    width: 100% !important;
    min-width: 0 !important;
}

.home-page .home-why-content h2 {
    max-width: 620px;
}

.home-page .home-why-intro {
    max-width: 650px;
}


/* =========================================
   FEATURE LIST
========================================= */

.home-page .home-feature-list {
    display: flex !important;
    flex-direction: column !important;

    gap: 23px !important;

    width: 100% !important;
}

.home-page .home-feature-item {
    display: grid !important;

    grid-template-columns: 36px minmax(0, 1fr) !important;

    align-items: flex-start !important;

    gap: 14px !important;

    width: 100% !important;
}


/* =========================================
   RIGHT OPERATIONS CARD
========================================= */

.home-page .home-operations-card {
    width: 100% !important;

    min-width: 0 !important;
    max-width: none !important;

    margin: 0 !important;

    align-self: center !important;
}


/* =========================================================
   KEEP TWO COLUMNS ON LAPTOP / TABLET LANDSCAPE
========================================================= */

@media (max-width: 1100px) {

    .home-page .home-why .container {
        padding-left: 35px;
        padding-right: 35px;
    }

    .home-page .home-why-layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(360px, 0.9fr) !important;

        gap: 45px !important;
    }

}


/* =========================================================
   STACK ONLY ON SMALL TABLETS / MOBILE
========================================================= */

@media (max-width: 760px) {

    .home-page .home-why {
        padding: 65px 0;
    }

    .home-page .home-why .container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .home-page .home-why-layout {
        grid-template-columns: minmax(0, 1fr) !important;

        gap: 45px !important;
    }

    .home-page .home-operations-card {
        width: 100% !important;
        max-width: none !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .home-page .home-why {
        padding: 55px 0;
    }

    .home-page .home-why .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .home-page .home-operations-body {
        padding: 20px;
    }

    .home-page .home-operation-summary {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   STEP 41.10 — NETLIFY-PARITY HOMEPAGE SERVICE CARDS
   ========================================================= */
.home-page .home-services {
    padding: 88px 0 92px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.home-page .home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.home-page .home-service-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 350px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.home-page .home-service-card:hover {
    transform: translateY(-4px);
    border-color: #bfdbfe;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.home-page .home-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    border: 1px solid #bfdbfe;
    border-radius: 9px;
    background: #eff6ff;
    color: #2563eb;
}

.home-page .home-service-icon svg,
.home-page .home-service-icon i,
.home-page .home-service-icon .lucide {
    width: 26px;
    height: 26px;
    stroke: currentColor;
}

.home-page .home-service-thumbnail {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.home-page .home-service-category {
    display: block;
    margin-bottom: 8px;
    color: #2563eb;
    font-size: .72rem;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.home-page .home-service-title {
    margin: 0 0 11px;
    font-size: 1.22rem;
    line-height: 1.32;
    font-weight: 700;
}

.home-page .home-service-title a {
    color: #0f172a;
}

.home-page .home-service-description {
    margin: 0 0 18px;
    color: #64748b;
    font-size: .92rem;
    line-height: 1.65;
}

.home-page .home-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 20px;
}

.home-page .home-service-tags span {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border-radius: 5px;
    background: #f1f5f9;
    color: #475569;
    font-size: .72rem;
    line-height: 1.2;
    font-weight: 600;
}

.home-page .home-service-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: #2563eb;
    font-size: .9rem;
    font-weight: 700;
}

.home-page .home-service-link:hover {
    color: #1d4ed8;
}

@media (max-width: 1024px) {
    .home-page .home-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .home-page .home-services {
        padding: 62px 0 68px;
    }

    .home-page .home-services-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .home-page .home-service-card {
        min-height: 0;
        padding: 25px;
    }
}


/* STEP 41.10 — HEADER / FOOTER */
.logo-link { display:flex; align-items:center; gap:10px; }
.improx-header-logo { display:block; width:auto; max-width:180px; height:38px; object-fit:contain; }
.improx-logo-mark { width:36px; height:36px; border-radius:8px; background:#2563eb; color:#fff; display:inline-flex; align-items:center; justify-content:center; font-weight:800; }
.improx-logo-text { font-family:var(--font-heading); font-size:1.35rem; font-weight:800; color:#0f172a; }
.improx-header-actions { display:flex; align-items:center; gap:16px; }
.improx-operations-badge { display:flex; align-items:center; gap:6px; padding:4px 10px; border-radius:9999px; background:#f0fdf4; border:1px solid #bbf7d0; font-size:.75rem; font-weight:700; color:#166534; }
.improx-operations-badge span { width:6px; height:6px; border-radius:50%; background:#22c55e; }
.improx-primary-nav .menu-item a { font-size:.92rem; font-weight:600; color:#0f172a; transition:.2s ease; }
.improx-primary-nav .menu-item a:hover, .improx-primary-nav .current-menu-item > a { color:#2563eb; }

.improx-footer { background:#0f172a; color:#94a3b8; padding:60px 0 30px; border-top:1px solid #1e293b; margin-top:auto; }
.improx-footer-grid { display:grid; grid-template-columns:1.2fr .9fr 1fr; gap:48px; margin-bottom:40px; }
.improx-footer-brand { display:flex; align-items:center; gap:10px; margin-bottom:16px; color:#fff; font-family:var(--font-heading); font-size:1.25rem; font-weight:800; }
.improx-footer p { color:#94a3b8; font-size:.88rem; line-height:1.65; margin-bottom:16px; }
.improx-footer h4 { color:#fff; font-size:1rem; margin-bottom:16px; }
.improx-footer ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.improx-footer a { color:#94a3b8; transition:.2s ease; }
.improx-footer a:hover { color:#fff; }
.improx-footer-badges { display:flex; flex-wrap:wrap; gap:10px; }
.improx-footer-badges span { padding:4px 10px; border-radius:4px; background:#1e293b; color:#cbd5e1; font-size:.75rem; font-weight:600; border:1px solid #334155; }
.improx-footer-bottom { border-top:1px solid #1e293b; padding-top:24px; display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:12px; font-size:.82rem; color:#64748b; }
.improx-footer-legal { display:flex; flex-wrap:wrap; gap:20px; }

@media (max-width: 980px) {
  .improx-operations-badge { display:none; }
  .improx-footer-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .header-container { flex-wrap:wrap; }
  .improx-primary-nav { order:3; width:100%; overflow-x:auto; }
  .nav-menu { gap:18px; padding:8px 0 2px; min-width:max-content; }
  .improx-header-actions .btn { padding:9px 14px; }
  .improx-footer-grid { grid-template-columns:1fr; gap:32px; }
  .improx-footer-bottom { align-items:flex-start; flex-direction:column; }
}

/* =========================================================
   IMPROX DATA — ENTERPRISE FOOTER
   Netlify Reference Design
========================================================= */

.improx-footer {
    width: 100%;
    margin: 0;
    padding: 78px 0 28px;

    background: #0f172a;

    color: #94a3b8;

    border-top: 1px solid #1e293b;
}


/* =========================================================
   CONTAINER
========================================================= */

.improx-footer-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 0 50px;
}


/* =========================================================
   MAIN GRID
========================================================= */

.improx-footer-main {
    display: grid;

    grid-template-columns:
        minmax(250px, 1.35fr)
        minmax(150px, 0.9fr)
        minmax(175px, 1fr)
        minmax(150px, 0.85fr)
        minmax(230px, 1.2fr);

    gap: 55px;

    align-items: start;

    width: 100%;

    padding-bottom: 55px;
}


/* =========================================================
   COMPANY
========================================================= */

.improx-footer-company {
    min-width: 0;
}


.improx-footer-company-name {
    display: inline-block;

    margin: 0 0 19px;

    color: #ffffff !important;

    font-family: var(--font-heading);

    font-size: 1.52rem;

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: -0.025em;

    text-decoration: none;
}


.improx-footer-company-name:hover {
    color: #ffffff !important;
}


.improx-footer-description {
    max-width: 285px;

    margin: 0 0 25px !important;

    color: #94a3b8 !important;

    font-size: 0.91rem !important;

    font-weight: 400;

    line-height: 1.75 !important;
}


/* =========================================================
   OPERATIONS BADGE
========================================================= */

.improx-footer-operations {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    min-height: 33px;

    padding: 7px 14px;

    background: rgba(37, 99, 235, 0.12);

    border: 1px solid rgba(59, 130, 246, 0.45);

    border-radius: 999px;

    color: #60a5fa;

    font-size: 0.75rem;

    font-weight: 700;

    line-height: 1;
}


.improx-footer-operation-dot {
    display: block;

    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    background: #3b82f6;

    border-radius: 50%;
}


/* =========================================================
   COLUMN HEADINGS
========================================================= */

.improx-footer h4 {
    margin: 0 0 23px;

    color: #ffffff;

    font-family: var(--font-heading);

    font-size: 0.94rem;

    font-weight: 700;

    line-height: 1.3;

    letter-spacing: -0.015em;
}


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

.improx-footer-column ul {
    display: flex;

    flex-direction: column;

    gap: 16px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.improx-footer-column li {
    margin: 0;
    padding: 0;
}


.improx-footer-column a {
    display: inline-block;

    color: #94a3b8;

    font-size: 0.9rem;

    font-weight: 400;

    line-height: 1.45;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.improx-footer-column a:hover {
    color: #ffffff;

    transform: translateX(2px);
}


/* =========================================================
   CONTACT
========================================================= */

.improx-footer-contact {
    min-width: 0;
}


.improx-footer-contact-item {
    display: grid;

    grid-template-columns: 21px minmax(0, 1fr);

    align-items: start;

    gap: 11px;

    margin-bottom: 18px;

    color: #94a3b8;

    font-size: 0.88rem;

    line-height: 1.55;
}


.improx-footer-contact-item a {
    color: #94a3b8;

    text-decoration: none;

    transition: color 0.2s ease;
}


.improx-footer-contact-item a:hover {
    color: #ffffff;
}


/* =========================================================
   CONTACT ICON
========================================================= */

.improx-footer-contact-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    margin-top: 1px;

    color: #38bdf8;
}


.improx-footer-contact-icon svg {
    display: block;

    width: 19px;
    height: 19px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================================
   CONTACT DIVIDER
========================================================= */

.improx-footer-contact-divider {
    width: 100%;

    height: 1px;

    margin: 5px 0 15px;

    background: #243247;
}


.improx-footer-hours {
    margin-bottom: 0;
}


/* =========================================================
   BOTTOM SECTION
========================================================= */

.improx-footer-bottom {
    display: flex;

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

    gap: 30px;

    width: 100%;

    padding-top: 28px;

    border-top: 1px solid #243247;
}


/* COPYRIGHT */

.improx-footer-copyright {
    color: #64748b;

    font-size: 0.78rem;

    font-weight: 400;

    line-height: 1.5;
}


.improx-footer-copyright span {
    margin-left: 3px;
}


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

.improx-footer-trust {
    display: flex;

    align-items: center;

    gap: 27px;

    flex: 0 0 auto;
}


.improx-footer-trust-item {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #94a3b8;

    font-size: 0.76rem;

    white-space: nowrap;
}


.improx-footer-trust-item svg {
    display: block;

    width: 16px;
    height: 16px;

    fill: none;

    stroke: #94a3b8;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================================
   FLOATING INSTANT QUOTE
========================================================= */

.improx-instant-quote {
    position: fixed;

    right: 28px;
    bottom: 25px;

    z-index: 999;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 53px;

    padding: 0 22px;

    background: #2563eb;

    color: #ffffff !important;

    border: 1px solid #3b82f6;

    border-radius: 999px;

    box-shadow:
        0 12px 30px rgba(37, 99, 235, 0.32);

    font-family: var(--font-body);

    font-size: 0.91rem;

    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.improx-instant-quote:hover {
    background: #1d4ed8;

    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow:
        0 15px 35px rgba(37, 99, 235, 0.38);
}


/* GREEN LIVE DOT */

.improx-quote-live-dot {
    display: block;

    width: 9px;
    height: 9px;

    flex: 0 0 9px;

    background: #4ade80;

    border-radius: 50%;

    box-shadow:
        0 0 0 6px rgba(74, 222, 128, 0.14);
}


/* CHAT ICON */

.improx-quote-icon {
    display: block;

    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .improx-footer-container {
        padding-left: 35px;
        padding-right: 35px;
    }


    .improx-footer-main {
        grid-template-columns:
            minmax(220px, 1.25fr)
            minmax(145px, 0.9fr)
            minmax(160px, 1fr)
            minmax(140px, 0.85fr)
            minmax(210px, 1.15fr);

        gap: 32px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

    .improx-footer {
        padding-top: 60px;
    }


    .improx-footer-main {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 45px 55px;
    }


    .improx-footer-company {
        grid-column: 1 / -1;
    }


    .improx-footer-description {
        max-width: 550px;
    }


    .improx-footer-contact {
        grid-column: span 2;

        max-width: 500px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .improx-footer {
        padding:
            52px
            0
            25px;
    }


    .improx-footer-container {
        padding-left: 22px;
        padding-right: 22px;
    }


    .improx-footer-main {
        grid-template-columns:
            minmax(0, 1fr);

        gap: 38px;

        padding-bottom: 40px;
    }


    .improx-footer-company,
    .improx-footer-contact {
        grid-column: auto;
    }


    .improx-footer-description {
        max-width: 100%;
    }


    .improx-footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }


    .improx-footer-trust {
        flex-wrap: wrap;

        gap: 15px 22px;
    }


    .improx-footer-copyright span {
        display: block;

        margin: 3px 0 0;
    }


    .improx-instant-quote {
        right: 17px;
        bottom: 17px;

        min-height: 48px;

        padding: 0 18px;

        font-size: 0.84rem;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .improx-footer-container {
        padding-left: 18px;
        padding-right: 18px;
    }


    .improx-footer-company-name {
        font-size: 1.35rem;
    }


    .improx-footer-column ul {
        gap: 14px;
    }


    .improx-instant-quote {
        padding: 0 16px;
    }

}

/* =========================================================
   IMPROX DATA HEADER — FINAL LOGO / NAV OVERRIDE
========================================================= */

.header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;

    width: 100% !important;

    padding: 10px 0 !important;

    background: #ffffff !important;

    border-bottom: 1px solid #e2e8f0 !important;
}


/* HEADER CONTAINER */

.header .header-container {
    display: flex !important;

    align-items: center !important;
    justify-content: space-between !important;

    gap: 28px !important;

    min-height: 64px !important;
}


/* =========================================================
   LOGO
========================================================= */

.header .logo-link {
    display: flex !important;

    align-items: center !important;

    flex: 0 0 auto !important;

    gap: 0 !important;

    text-decoration: none !important;
}


.header .improx-header-logo {
    display: block !important;

    width: auto !important;
    height: 52px !important;

    max-width: 195px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
}


/* OLD FALLBACK LOGO — HIDE */

.header .improx-logo-mark,
.header .improx-logo-text {
    display: none !important;
}

/* =========================================================
   NAVIGATION — FINAL PADDING FIX
========================================================= */

.header .improx-primary-nav {
    margin-left: auto !important;
}


/* Main navigation */
.header .nav-menu {
    display: flex !important;

    align-items: center !important;

    gap: 34px !important;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}


/* Individual menu items */
.header .improx-primary-nav .menu-item {
    margin: 0 !important;
    padding: 0 !important;
}


/* Main navigation links */
.header .improx-primary-nav .menu-item > a,
.header .improx-primary-nav .nav-link {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 7px 0 !important;

    color: #334155 !important;

    font-size: 0.94rem !important;
    font-weight: 600 !important;

    line-height: 1.2 !important;

    text-decoration: none !important;

    white-space: nowrap !important;

    transition: color 0.2s ease !important;
}


/* Hover / active */
.header .improx-primary-nav .menu-item > a:hover,
.header .improx-primary-nav .nav-link:hover,
.header .improx-primary-nav .current-menu-item > a {
    color: #2563eb !important;
}


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

.header .improx-header-actions {
    display: flex !important;

    align-items: center !important;

    gap: 16px !important;

    flex: 0 0 auto !important;
}


/* =========================================================
   24/7 LIVE
========================================================= */

.header .improx-operations-badge {
    display: inline-flex !important;

    align-items: center !important;

    gap: 7px !important;

    padding: 6px 11px !important;

    background: #eff6ff !important;

    border: 1px solid #bfdbfe !important;

    border-radius: 999px !important;

    color: #2563eb !important;

    font-size: 0.7rem !important;
    font-weight: 700 !important;

    line-height: 1 !important;

    white-space: nowrap !important;
}


.header .improx-operations-badge span {
    display: block !important;

    width: 7px !important;
    height: 7px !important;

    flex: 0 0 7px !important;

    background: #2563eb !important;

    border-radius: 50% !important;
}


/* =========================================================
   GET PROPOSAL
========================================================= */

.header .improx-header-proposal,
.header .improx-header-actions .btn-primary {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    min-height: 48px !important;

    padding: 0 24px !important;

    background: #2563eb !important;

    color: #ffffff !important;

    border: 1px solid #2563eb !important;

    border-radius: 7px !important;

    font-size: 0.92rem !important;
    font-weight: 700 !important;

    line-height: 1 !important;

    white-space: nowrap !important;
}


.header .improx-header-proposal:hover,
.header .improx-header-actions .btn-primary:hover {
    background: #1d4ed8 !important;

    border-color: #1d4ed8 !important;

    color: #ffffff !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

    .header .header-container {
        gap: 18px !important;
    }


    .header .improx-header-logo {
        height: 46px !important;

        max-width: 175px !important;
    }


    .header .nav-menu {
        gap: 22px !important;
    }


    .header .improx-operations-badge {
        display: none !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .header {
        padding: 9px 0 !important;
    }


    .header .header-container {
        flex-wrap: wrap !important;

        gap: 10px 15px !important;

        min-height: 0 !important;
    }


    .header .improx-header-logo {
        height: 40px !important;

        max-width: 155px !important;
    }


    .header .improx-header-actions {
        margin-left: auto !important;
    }


    .header .improx-header-actions .btn-primary {
        min-height: 40px !important;

        padding: 0 15px !important;

        font-size: 0.8rem !important;
    }


    .header .improx-primary-nav {
        order: 3 !important;

        width: 100% !important;

        margin: 0 !important;

        overflow-x: auto !important;

        scrollbar-width: none;
    }


    .header .improx-primary-nav::-webkit-scrollbar {
        display: none;
    }


    .header .nav-menu {
        justify-content: flex-start !important;

        gap: 22px !important;

        width: max-content !important;
        min-width: 100% !important;

        padding: 8px 0 3px !important;
    }


    .header .improx-primary-nav .menu-item a,
    .header .improx-primary-nav .nav-link {
        font-size: 0.84rem !important;

        white-space: nowrap !important;
    }

}

/* =========================================================
   FOOTER WHITE IMPROX LOGO
========================================================= */

.improx-footer-logo-link {
    display: inline-flex;
    align-items: center;

    width: auto;

    margin: 0 0 22px;

    text-decoration: none;
}

.improx-footer-logo {
    display: block;

    width: auto !important;
    height: 54px !important;

    max-width: 205px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
}


/* TABLET */

@media (max-width: 980px) {

    .improx-footer-logo {
        height: 50px !important;
        max-width: 190px !important;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .improx-footer-logo {
        height: 46px !important;
        max-width: 175px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

}


@media (max-width: 520px) {

}

/* =========================================================
   HERO SLIDER — REMOVE EXTRA CSS OVERLAY
========================================================= */

.home-page .home-slide::before {
    display: none !important;
    content: none !important;
}

/* =========================================================
   HOMEPAGE HERO SLIDER — FIXED HEIGHT + FIXED ARROWS
========================================================= */

.home-page .home-hero.home-hero-slider {
    position: relative !important;
    width: 100% !important;
    height: 520px !important;
    min-height: 520px !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
}


/* SLIDER TRACK */

.home-page .home-slider-track {
    position: relative !important;
    width: 100% !important;
    height: 520px !important;
    min-height: 520px !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* ALL SLIDES */

.home-page .home-slide,
.home-page .home-slide.active {
    position: absolute !important;
    inset: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    height: 520px !important;
    min-height: 520px !important;

    margin: 0 !important;
    padding: 70px 70px 80px !important;

    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}


/* HIDDEN SLIDES */

.home-page .home-slide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* ACTIVE SLIDE */

.home-page .home-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}


/* CONTENT CONTAINER */

.home-page .home-slide > .container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
}


/* =========================================================
   ARROWS — SAME POSITION ON ALL 3 SLIDES
========================================================= */

.home-page .home-slider-arrow {
    position: absolute !important;

    top: 50% !important;
    bottom: auto !important;

    z-index: 20 !important;

    width: 44px !important;
    height: 44px !important;

    transform: translateY(-50%) !important;
}


.home-page .home-slider-prev {
    left: 30px !important;
}


.home-page .home-slider-next {
    right: 30px !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .home-page .home-hero.home-hero-slider,
    .home-page .home-slider-track,
    .home-page .home-slide,
    .home-page .home-slide.active {
        height: 500px !important;
        min-height: 500px !important;
    }

    .home-page .home-slide {
        padding: 65px 55px 80px !important;
    }

    .home-page .home-slider-prev {
        left: 18px !important;
    }

    .home-page .home-slider-next {
        right: 18px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .home-page .home-hero.home-hero-slider,
    .home-page .home-slider-track,
    .home-page .home-slide,
    .home-page .home-slide.active {
        height: 520px !important;
        min-height: 520px !important;
    }

    .home-page .home-slide {
        padding: 55px 20px 90px !important;
    }

    .home-page .home-slider-arrow {
        top: auto !important;
        bottom: 20px !important;
        transform: none !important;
    }

    .home-page .home-slider-prev {
        left: 22px !important;
    }

    .home-page .home-slider-next {
        right: 22px !important;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .home-page .home-slide {
        padding:
            65px
            55px
            90px !important;
    }

    .home-page .home-slide.active {
        min-height: 400px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .home-page .home-slide {
        padding:
            55px
            20px
            90px !important;
    }

    .home-page .home-slide.active {
        min-height: 480px !important;
    }

    .home-page .home-slide > .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .home-page .home-slider-arrow {
        top: auto !important;
        bottom: 20px !important;

        transform: none !important;
    }

    .home-page .home-slider-dots {
        bottom: 30px !important;
    }

}

/* =========================================================
   HOMEPAGE METRICS — NETLIFY REFERENCE CARD DESIGN
   KEEP AT VERY BOTTOM OF STYLE.CSS
========================================================= */

.home-page .home-metrics {
    width: 100% !important;

    padding: 58px 0 !important;

    background: #ffffff !important;

    border-bottom: 1px solid #e2e8f0 !important;
}


.home-page .home-metrics .container {
    width: 100% !important;

    max-width: 1400px !important;

    margin: 0 auto !important;

    padding-left: 50px !important;
    padding-right: 50px !important;
}


/* =========================================================
   GRID
========================================================= */

.home-page .home-metrics-grid {
    display: grid !important;

    grid-template-columns:
        repeat(4, minmax(0, 1fr)) !important;

    gap: 24px !important;

    width: 100% !important;

    max-width: none !important;

    margin: 0 !important;
}


/* =========================================================
   CARD
========================================================= */

.home-page .home-metric-card {
    display: grid !important;

    grid-template-columns:
        54px
        minmax(0, 1fr) !important;

    align-items: center !important;

    gap: 18px !important;

    min-width: 0 !important;

    min-height: 158px !important;

    padding: 28px !important;

    background: #f8fafc !important;

    border: 1px solid #dbe3ee !important;

    border-radius: 10px !important;

    box-shadow: none !important;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease !important;
}


.home-page .home-metric-card:hover {
    transform: translateY(-3px) !important;

    border-color: #bfdbfe !important;

    box-shadow:
        0 10px 25px rgba(15, 23, 42, 0.06) !important;
}


/* =========================================================
   ICON BOX
========================================================= */

.home-page .home-metric-icon {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 54px !important;
    height: 54px !important;

    background: #eff6ff !important;

    border: 1px solid #bfdbfe !important;

    border-radius: 9px !important;

    color: #2563eb !important;
}


.home-page .home-metric-icon svg,
.home-page .home-metric-icon i,
.home-page .home-metric-icon .lucide {
    display: block !important;

    width: 25px !important;
    height: 25px !important;

    fill: none !important;

    stroke: currentColor !important;

    stroke-width: 2 !important;
}


/* =========================================================
   CONTENT
========================================================= */

.home-page .home-metric-content {
    min-width: 0 !important;
}


/* VALUE */

.home-page .home-metric-value {
    display: block !important;

    margin: 0 0 2px !important;

    color: #2563eb !important;

    font-family: var(--font-heading) !important;

    font-size: 1.75rem !important;
    font-weight: 800 !important;

    line-height: 1.05 !important;

    letter-spacing: -0.035em !important;
}


/* LABEL */

.home-page .home-metric-label {
    display: block !important;

    margin: 0 0 3px !important;

    color: #0f172a !important;

    font-size: 0.79rem !important;
    font-weight: 800 !important;

    line-height: 1.35 !important;

    letter-spacing: 0.01em !important;

    text-transform: uppercase !important;
}


/* DESCRIPTION */

.home-page .home-metric-description {
    margin: 0 !important;

    color: #64748b !important;

    font-size: 0.78rem !important;
    font-weight: 400 !important;

    line-height: 1.5 !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .home-page .home-metrics .container {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }


    .home-page .home-metrics-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr)) !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .home-page .home-metrics {
        padding: 38px 0 !important;
    }


    .home-page .home-metrics .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }


    .home-page .home-metrics-grid {
        grid-template-columns:
            minmax(0, 1fr) !important;

        gap: 15px !important;
    }


    .home-page .home-metric-card {
        min-height: 135px !important;

        padding: 22px !important;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .home-page .home-metric-card {
        grid-template-columns:
            48px
            minmax(0, 1fr) !important;

        gap: 15px !important;

        padding: 20px !important;
    }


    .home-page .home-metric-icon {
        width: 48px !important;
        height: 48px !important;
    }


    .home-page .home-metric-value {
        font-size: 1.55rem !important;
    }

}

/* =========================================================
   IMPROX DATA — INDUSTRIES PAGE
========================================================= */

.industries-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: #0f172a;
}


/* =========================================================
   SHARED BADGE
========================================================= */

.industries-page .industries-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 6px 13px;

    background: #eff6ff;

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

    color: #2563eb;

    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.industries-page .industries-badge-dot {
    display: block;

    width: 6px;
    height: 6px;

    flex: 0 0 6px;

    background: #2563eb;

    border-radius: 50%;
}


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

.industries-page .industries-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 50px;

    padding: 0 24px;

    border-radius: 7px;

    font-size: 0.9rem;
    font-weight: 700;

    text-decoration: none;

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


.industries-page .industries-btn-primary {
    background: #2563eb;

    color: #ffffff;

    border: 1px solid #2563eb;

    box-shadow:
        0 7px 20px rgba(37, 99, 235, 0.18);
}


.industries-page .industries-btn-primary:hover {
    background: #1d4ed8;

    border-color: #1d4ed8;

    color: #ffffff;

    transform: translateY(-1px);
}


.industries-page .industries-btn-secondary {
    background: #ffffff;

    color: #0f172a;

    border: 1px solid #cbd5e1;
}


.industries-page .industries-btn-secondary:hover {
    background: #f8fafc;

    border-color: #94a3b8;
}


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

.industries-page .industries-hero {
    position: relative;

    padding: 105px 0 100px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(37, 99, 235, 0.10),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbff 100%
        );

    border-bottom: 1px solid #e2e8f0;
}


.industries-page .industries-hero-inner {
    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}


.industries-page .industries-hero h1 {
    max-width: 900px;

    margin: 22px auto 20px;

    color: #0f172a;

    font-size: clamp(2.6rem, 5vw, 4rem);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -0.045em;
}


.industries-page .industries-hero p {
    max-width: 760px;

    margin: 0 auto;

    color: #64748b;

    font-size: 1.05rem;

    line-height: 1.75;
}


.industries-page .industries-hero-actions {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}


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

.industries-page .industries-section-header {
    max-width: 760px;

    margin: 0 auto 50px;

    text-align: center;
}


.industries-page .industries-section-header h2 {
    margin: 15px 0 14px;

    color: #0f172a;

    font-size: clamp(2rem, 4vw, 2.8rem);

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -0.035em;
}


.industries-page .industries-section-header p {
    max-width: 680px;

    margin: 0 auto;

    color: #64748b;

    font-size: 1rem;

    line-height: 1.7;
}


/* =========================================================
   INDUSTRY GRID
========================================================= */

.industries-page .industries-main {
    padding: 95px 0;

    background: #ffffff;

    border-bottom: 1px solid #e2e8f0;
}


.industries-page .industries-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* CARD */

.industries-page .industries-card {
    display: flex;

    flex-direction: column;

    min-width: 0;

    min-height: 410px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #dbe3ee;

    border-radius: 11px;

    box-shadow:
        0 1px 3px rgba(15, 23, 42, 0.035);

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


.industries-page .industries-card:hover {
    transform: translateY(-4px);

    border-color: #bfdbfe;

    box-shadow:
        0 15px 35px rgba(15, 23, 42, 0.07);
}


/* CARD TOP */

.industries-page .industries-card-top {
    display: flex;

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

    margin-bottom: 22px;
}


.industries-page .industries-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    background: #eff6ff;

    color: #2563eb;

    border: 1px solid #bfdbfe;

    border-radius: 9px;
}


.industries-page .industries-icon svg,
.industries-page .industries-icon i {
    display: block;

    width: 25px;
    height: 25px;

    fill: none;

    stroke: currentColor;
}


.industries-page .industries-number {
    color: #94a3b8;

    font-family: var(--font-mono);

    font-size: 0.75rem;

    font-weight: 800;
}


/* TITLE */

.industries-page .industries-card h3 {
    margin: 0 0 12px;

    color: #0f172a;

    font-size: 1.25rem;

    font-weight: 750;

    line-height: 1.3;
}


/* DESCRIPTION */

.industries-page .industries-card-description {
    margin: 0 0 21px;

    color: #64748b;

    font-size: 0.89rem;

    line-height: 1.7;
}


/* TAGS */

.industries-page .industries-services {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 24px;
}


.industries-page .industries-services span {
    display: inline-flex;

    align-items: center;

    min-height: 27px;

    padding: 5px 9px;

    background: #f1f5f9;

    color: #475569;

    border-radius: 5px;

    font-size: 0.7rem;

    font-weight: 600;

    line-height: 1.2;
}


/* LINK */

.industries-page .industries-card-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: auto;

    color: #2563eb;

    font-size: 0.86rem;

    font-weight: 700;

    text-decoration: none;
}


.industries-page .industries-card-link:hover {
    color: #1d4ed8;
}


/* =========================================================
   DELIVERY MODEL
========================================================= */

.industries-page .industries-model {
    padding: 100px 0;

    background: #f8fafc;

    border-bottom: 1px solid #e2e8f0;
}


.industries-page .industries-model-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(380px, 0.95fr);

    align-items: center;

    gap: 75px;
}


.industries-page .industries-model-content h2 {
    max-width: 650px;

    margin: 17px 0 18px;

    color: #0f172a;

    font-size: clamp(2rem, 4vw, 2.85rem);

    font-weight: 800;

    line-height: 1.13;

    letter-spacing: -0.04em;
}


.industries-page .industries-model-content > p {
    max-width: 650px;

    margin: 0 0 32px;

    color: #64748b;

    font-size: 0.98rem;

    line-height: 1.75;
}


/* CHECK LIST */

.industries-page .industries-check-list {
    display: flex;

    flex-direction: column;

    gap: 22px;
}


.industries-page .industries-check-item {
    display: grid;

    grid-template-columns:
        34px
        minmax(0, 1fr);

    gap: 14px;

    align-items: flex-start;
}


.industries-page .industries-check-item > span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    background: #eff6ff;

    color: #2563eb;

    border: 1px solid #bfdbfe;

    border-radius: 50%;

    font-size: 0.82rem;

    font-weight: 900;
}


.industries-page .industries-check-item strong {
    display: block;

    margin-bottom: 5px;

    color: #0f172a;

    font-size: 0.96rem;

    font-weight: 750;
}


.industries-page .industries-check-item p {
    margin: 0;

    color: #64748b;

    font-size: 0.86rem;

    line-height: 1.65;
}


/* =========================================================
   OPERATIONS PANEL
========================================================= */

.industries-page .industries-operations {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #cbd5e1;

    border-radius: 12px;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.08);
}


.industries-page .industries-operations-header {
    display: flex;

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

    gap: 20px;

    min-height: 57px;

    padding: 0 21px;

    background: #0f172a;

    color: #e2e8f0;

    font-family: var(--font-mono);

    font-size: 0.68rem;

    font-weight: 700;
}


.industries-page .industries-operations-header > div {
    display: flex;

    align-items: center;

    gap: 9px;
}


.industries-page .industries-live-dot {
    width: 7px;
    height: 7px;

    background: #22c55e;

    border-radius: 50%;

    box-shadow:
        0 0 0 4px rgba(34, 197, 94, 0.12);
}


.industries-page .industries-status {
    color: #86efac;

    font-size: 0.61rem;
}


.industries-page .industries-operations-body {
    padding: 16px 28px;
}


.industries-page .industries-operation {
    display: flex;

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

    gap: 25px;

    min-height: 64px;

    border-bottom: 1px solid #e2e8f0;

    color: #64748b;

    font-size: 0.82rem;

    font-weight: 600;
}


.industries-page .industries-operation:last-child {
    border-bottom: 0;
}


.industries-page .industries-operation strong {
    color: #2563eb;

    font-family: var(--font-mono);

    font-size: 0.7rem;

    font-weight: 800;
}


/* =========================================================
   WORKFLOW
========================================================= */

.industries-page .industries-workflow {
    padding: 95px 0;

    background: #ffffff;

    border-bottom: 1px solid #e2e8f0;
}


.industries-page .industries-workflow-grid {
    display: grid;

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

    gap: 20px;
}


.industries-page .industries-workflow-card {
    min-height: 230px;

    padding: 27px 25px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 9px;
}


.industries-page .industries-workflow-card > span {
    display: inline-block;

    margin-bottom: 25px;

    color: #2563eb;

    font-family: var(--font-mono);

    font-size: 0.76rem;

    font-weight: 800;
}


.industries-page .industries-workflow-card h3 {
    margin: 0 0 11px;

    color: #0f172a;

    font-size: 1.05rem;

    font-weight: 750;
}


.industries-page .industries-workflow-card p {
    margin: 0;

    color: #64748b;

    font-size: 0.84rem;

    line-height: 1.7;
}


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

.industries-page .industries-cta {
    padding: 85px 0;

    background: #ffffff;
}


.industries-page .industries-cta-box {
    display: flex;

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

    gap: 55px;

    padding: 55px 60px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(59, 130, 246, 0.35),
            transparent 35%
        ),
        #0f172a;

    border-radius: 14px;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.15);
}


.industries-page .industries-cta-content {
    max-width: 680px;
}


.industries-page .industries-cta-content > span {
    display: block;

    margin-bottom: 13px;

    color: #93c5fd;

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.industries-page .industries-cta-content h2 {
    margin: 0 0 13px;

    color: #ffffff;

    font-size: clamp(1.8rem, 3vw, 2.5rem);

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -0.035em;
}


.industries-page .industries-cta-content p {
    margin: 0;

    color: #cbd5e1;

    font-size: 0.9rem;

    line-height: 1.7;
}


.industries-page .industries-cta-actions {
    display: flex;

    flex: 0 0 auto;

    flex-direction: column;

    gap: 10px;

    min-width: 205px;
}


.industries-page .industries-btn-white {
    background: #ffffff;

    color: #0f172a;

    border: 1px solid #ffffff;
}


.industries-page .industries-btn-white:hover {
    background: #eff6ff;

    color: #1d4ed8;
}


.industries-page .industries-btn-outline {
    background: transparent;

    color: #ffffff;

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


.industries-page .industries-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(255, 255, 255, 0.65);

    color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .industries-page .industries-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .industries-page .industries-model-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .industries-page .industries-operations {
        max-width: 650px;

        width: 100%;
    }


    .industries-page .industries-workflow-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .industries-page .industries-cta-box {
        padding: 48px 45px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .industries-page .industries-hero {
        padding: 70px 0 65px;
    }


    .industries-page .industries-hero h1 {
        font-size: clamp(2.2rem, 11vw, 3rem);
    }


    .industries-page .industries-hero p {
        font-size: 0.95rem;
    }


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


    .industries-page .industries-hero-actions .industries-btn {
        width: 100%;

        max-width: 360px;
    }


    .industries-page .industries-main,
    .industries-page .industries-model,
    .industries-page .industries-workflow {
        padding: 65px 0;
    }


    .industries-page .industries-grid,
    .industries-page .industries-workflow-grid {
        grid-template-columns:
            minmax(0, 1fr);
    }


    .industries-page .industries-card {
        min-height: 0;

        padding: 26px;
    }


    .industries-page .industries-workflow-card {
        min-height: 0;
    }


    .industries-page .industries-cta {
        padding: 55px 0;
    }


    .industries-page .industries-cta-box {
        flex-direction: column;

        align-items: flex-start;

        gap: 30px;

        padding: 38px 28px;
    }


    .industries-page .industries-cta-actions {
        width: 100%;

        min-width: 0;
    }


    .industries-page .industries-cta-actions .industries-btn {
        width: 100%;
    }

}

/* =========================================================
   BLOG ARCHIVE PAGE — FIXED
========================================================= */
.blog-page{background:#fff;color:#0f172a}.blog-page-hero{padding:72px 0 68px;background:linear-gradient(180deg,#f8fafc 0%,#fff 100%);border-bottom:1px solid #e2e8f0;text-align:center}.blog-page-hero-inner{max-width:800px;margin:0 auto}.blog-page-title{margin:14px 0 16px;font-size:clamp(2.2rem,4vw,3.2rem);font-weight:800;line-height:1.12;letter-spacing:-.035em}.blog-page-description{max-width:700px;margin:0 auto;color:#64748b;font-size:1.03rem;line-height:1.75}.blog-page-content{padding:75px 0 95px;background:#fff}.blog-page-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:28px}.blog-page-card{display:flex;flex-direction:column;min-width:0;overflow:hidden;background:#fff;border:1px solid #e2e8f0;border-radius:12px;box-shadow:0 1px 3px rgba(15,23,42,.04);transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease}.blog-page-card:hover{transform:translateY(-5px);border-color:#bfdbfe;box-shadow:0 16px 38px rgba(15,23,42,.08)}.blog-page-image{display:block;width:100%;height:220px;overflow:hidden;background:#f1f5f9}.blog-page-image img{display:block;width:100%!important;height:100%!important;object-fit:cover;transition:transform .35s ease}.blog-page-card:hover .blog-page-image img{transform:scale(1.04)}.blog-page-image-placeholder{display:flex;align-items:center;justify-content:center;width:100%;height:100%;background:linear-gradient(135deg,#eff6ff,#f8fafc);color:#2563eb}.blog-page-image-placeholder svg{width:42px;height:42px;stroke-width:1.5}.blog-page-card-content{display:flex;flex:1;flex-direction:column;padding:25px}.blog-page-meta{display:flex;align-items:center;justify-content:space-between;gap:15px;margin-bottom:12px}.blog-page-category{min-width:0;color:#2563eb;font-size:.7rem;font-weight:800;line-height:1.3;letter-spacing:.035em;text-transform:uppercase}.blog-page-category a{color:inherit}.blog-page-date{flex-shrink:0;color:#94a3b8;font-size:.72rem;font-weight:500}.blog-page-card-title{margin:0 0 12px;font-size:1.2rem;font-weight:750;line-height:1.4;letter-spacing:-.02em}.blog-page-card-title a:hover{color:#2563eb}.blog-page-excerpt{margin:0 0 22px;color:#64748b;font-size:.88rem;line-height:1.72}.blog-page-read-more{display:inline-flex;align-items:center;gap:7px;width:fit-content;margin-top:auto;color:#2563eb;font-size:.84rem;font-weight:750}.blog-page-read-more:hover{gap:10px;color:#1d4ed8}.blog-page-pagination{margin-top:55px}.blog-page-pagination .nav-links{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:8px}.blog-page-pagination .page-numbers{display:inline-flex;align-items:center;justify-content:center;min-width:42px;min-height:42px;padding:8px 13px;background:#fff;color:#475569;border:1px solid #e2e8f0;border-radius:7px;font-size:.82rem;font-weight:700}.blog-page-pagination .page-numbers:hover{background:#eff6ff;color:#2563eb;border-color:#bfdbfe}.blog-page-pagination .page-numbers.current{background:#2563eb;color:#fff;border-color:#2563eb}.blog-page-empty{max-width:600px;margin:30px auto;padding:60px 30px;text-align:center;background:#f8fafc;border:1px solid #e2e8f0;border-radius:12px}.blog-page-empty-icon{display:flex;align-items:center;justify-content:center;width:58px;height:58px;margin:0 auto 20px;background:#eff6ff;color:#2563eb;border:1px solid #bfdbfe;border-radius:10px}.blog-page-empty-icon svg{width:28px;height:28px}@media(max-width:1024px){.blog-page-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:700px){.blog-page-hero{padding:55px 0 50px}.blog-page-content{padding:50px 0 70px}.blog-page-grid{grid-template-columns:1fr;gap:22px}.blog-page-image{height:215px}.blog-page-card-content{padding:22px}}@media(max-width:420px){.blog-page-image{height:195px}.blog-page-meta{align-items:flex-start;flex-direction:column;gap:5px}}

/* =========================================================
   HERO SLIDER — FADED IMAGE + BRIGHTER CONTENT
   Keep at VERY END of style.css
========================================================= */


/* Slightly soften/fade the background image */
.home-page .home-slide::before {
    content: "";

    position: absolute !important;
    inset: 0 !important;

    z-index: 1 !important;

    /*
     * Increase opacity = more faded image
     * Decrease opacity = stronger image
     */
    background: rgba(255, 255, 255, 0.42) !important;

    pointer-events: none !important;
}


/* Make sure content stays above overlay */
.home-page .home-slide .home-hero-inner {
    position: relative !important;

    z-index: 5 !important;
}


/* =========================================================
   BADGE
========================================================= */

.home-page .home-slide .home-hero-badge {
    background: rgba(239, 246, 255, 0.96) !important;

    color: #1d4ed8 !important;

    border-color: #93c5fd !important;

    box-shadow:
        0 2px 8px rgba(15, 23, 42, 0.08) !important;
}


/* =========================================================
   MAIN HEADING — BRIGHTER / STRONGER
========================================================= */

.home-page .home-slide .home-hero-title {
    color: #020617 !important;

    font-weight: 800 !important;

    text-shadow:
        0 1px 2px rgba(255, 255, 255, 0.95),
        0 2px 12px rgba(255, 255, 255, 0.65) !important;
}


/* Highlighted part of heading */
.home-page .home-slide .home-hero-title span {
    color: #2563eb !important;

    text-shadow:
        0 1px 2px rgba(255, 255, 255, 0.95),
        0 2px 12px rgba(255, 255, 255, 0.7) !important;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.home-page .home-slide .home-hero-description {
    color: #1e293b !important;

    font-weight: 500 !important;

    text-shadow:
        0 1px 2px rgba(255, 255, 255, 0.9) !important;
}


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

.home-page .home-slide .home-btn-primary {
    background: #2563eb !important;

    color: #ffffff !important;

    border-color: #2563eb !important;

    box-shadow:
        0 6px 18px rgba(37, 99, 235, 0.28) !important;
}


.home-page .home-slide .home-btn-primary:hover {
    background: #1d4ed8 !important;

    border-color: #1d4ed8 !important;
}


.home-page .home-slide .home-btn-secondary {
    background: rgba(255, 255, 255, 0.94) !important;

    color: #0f172a !important;

    border-color: #cbd5e1 !important;

    box-shadow:
        0 3px 12px rgba(15, 23, 42, 0.08) !important;
}


.home-page .home-slide .home-btn-secondary:hover {
    background: #ffffff !important;

    border-color: #94a3b8 !important;
}

/* =========================================================
   SERVICES MEGA MENU
========================================================= */

.header .improx-primary-nav .menu-item.has-dropdown {
    position: relative !important;
}

.header .improx-dropdown-toggle {
    gap: 5px !important;
}

.improx-dropdown-caret {
    flex: 0 0 auto;
    transition: transform 0.2s ease;
}

.menu-item.has-dropdown:hover .improx-dropdown-caret,
.menu-item.has-dropdown.is-open .improx-dropdown-caret {
    transform: rotate(180deg);
}

.improx-mega-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-38%);
    width: min(880px, calc(100vw - 48px));
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.18), 0 4px 12px rgba(15, 23, 42, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-38%) translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 1100;
}

.menu-item.has-dropdown:hover .improx-mega-menu,
.menu-item.has-dropdown:focus-within .improx-mega-menu,
.menu-item.has-dropdown.is-open .improx-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-38%) translateY(0);
}

.improx-mega-menu-inner {
    padding: 26px 28px 20px;
}

.improx-mega-menu-eyebrow {
    margin: 0 0 16px;
    color: var(--text-dim);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.improx-mega-menu-heading {
    margin: 0 0 12px;
    color: var(--brand-blue);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.improx-mega-menu-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.improx-mega-menu-list a {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.15s ease;
}

.improx-mega-menu-list a:hover {
    color: var(--brand-blue);
}

.improx-mega-menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    color: var(--brand-blue);
    margin-top: 1px;
}

.improx-mega-menu-icon svg {
    width: 100%;
    height: 100%;
}

.improx-mega-menu-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.improx-mega-menu-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--text-main);
    font-size: 0.88rem;
    font-weight: 700;
    transition: gap 0.15s ease, color 0.15s ease;
}

.improx-mega-menu-footer-link:hover {
    gap: 10px;
    color: var(--brand-blue);
}

@media (max-width: 1180px) {
    .improx-mega-menu {
        left: 0;
        transform: translateX(0) translateY(8px);
    }

    .menu-item.has-dropdown:hover .improx-mega-menu,
    .menu-item.has-dropdown:focus-within .improx-mega-menu,
    .menu-item.has-dropdown.is-open .improx-mega-menu {
        transform: translateX(0) translateY(0);
    }
}

@media (max-width: 900px) {
    .improx-mega-menu-columns {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 26px;
    }
}

@media (max-width: 760px) {
    .header .improx-primary-nav .menu-item.has-dropdown {
        position: static !important;
    }

    .improx-mega-menu {
        position: static;
        opacity: 1;
        visibility: hidden;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        border: none;
        border-radius: 0;
        box-shadow: none;
        transform: none;
        transition: max-height 0.25s ease;
    }

    .menu-item.has-dropdown.is-open .improx-mega-menu {
        visibility: visible;
        max-height: 1400px;
        border-top: 1px solid var(--border-light);
        margin-top: 8px;
    }

    .improx-mega-menu-inner {
        padding: 18px 4px;
    }

    .improx-mega-menu-columns {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }
}

/* =========================================================
   ABOUT PAGE
========================================================= */

.about-breadcrumbs {
    padding: 16px 0;
}

.about-breadcrumbs ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.about-breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-breadcrumbs a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    transition: var(--transition);
}

.about-breadcrumbs a:hover {
    color: var(--brand-blue);
}

.about-breadcrumbs a svg {
    color: var(--brand-blue);
}

.about-breadcrumbs [aria-current="page"] {
    font-weight: 700;
    color: var(--brand-blue);
}

/* Company profile */
.about-profile-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 860px) {
    .about-profile-grid {
        grid-template-columns: 1fr;
    }
}

/* Stats */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    text-align: center;
}

.about-stat-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-subtle);
}

.about-stat-card h3 {
    font-size: 2.5rem;
    color: var(--brand-blue);
    font-weight: 700;
    margin-bottom: 4px;
}

.about-stat-card p {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.about-stat-card span {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* Comparison card */
.about-comparison-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    margin-bottom: 40px;
}

.about-comparison-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.3fr;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    background: #ffffff;
}

.about-comparison-row:nth-child(odd) {
    background: var(--brand-blue-light);
}

.about-comparison-row.about-comparison-head {
    background: #f1f5f9;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-heading);
    padding: 18px 24px;
}

.about-comparison-row.about-comparison-head div:nth-child(2) {
    color: var(--text-dim);
}

.about-comparison-win-head {
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    gap: 6px;
}

.about-comparison-label {
    font-weight: 600;
    color: var(--text-heading);
}

.about-comparison-lose,
.about-comparison-win {
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-comparison-lose {
    color: var(--text-muted);
}

.about-comparison-lose svg {
    color: #ef4444;
    flex-shrink: 0;
}

.about-comparison-win {
    font-weight: 700;
    color: var(--brand-blue);
}

.about-comparison-win svg {
    color: var(--brand-blue);
    flex-shrink: 0;
}

.about-comparison-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 18px 24px;
    background: #f8fafc;
    border-top: 1px solid var(--border-light);
}

.about-comparison-footer > div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.about-comparison-footer svg {
    color: var(--brand-blue);
}

@media (max-width: 760px) {
    .about-comparison-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .about-comparison-row.about-comparison-head {
        display: none;
    }
}

/* Feature grid (below comparison table) */
.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.about-feature-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-subtle);
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--brand-blue-light);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.about-feature-card h3 {
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 8px;
    font-weight: 700;
}

.about-feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* Security grid */
.about-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.about-security-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

.about-security-card:hover {
    box-shadow: var(--shadow-hover);
}

.about-security-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--brand-blue-light);
    border: 1px solid rgba(37, 99, 235, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    margin-bottom: 16px;
}

.about-security-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-heading);
    font-weight: 700;
}

.about-security-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Compliance dark banner */
.about-compliance-banner {
    background: #0f172a;
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    border: 1px solid #1e293b;
}

.about-compliance-banner > div:first-child {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-compliance-banner svg {
    color: #60a5fa;
    flex-shrink: 0;
}

.about-compliance-banner h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 700;
}

.about-compliance-banner p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
}

/* CTA banner */
.about-cta-banner {
    padding: 64px 0;
    background: var(--bg-main);
}

.about-cta-banner-inner {
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.85) 100%) center / cover,
        url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1600&auto=format&fit=crop&q=80");
    border-radius: var(--radius-lg);
    padding: 52px 36px;
    text-align: center;
    color: #ffffff;
    border: 1px solid #1e293b;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.about-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    background: rgba(37, 99, 235, 0.25);
    border: 1px solid rgba(37, 99, 235, 0.4);
    color: #60a5fa;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-cta-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #60a5fa;
}

.about-cta-banner-inner h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.2;
}

.about-cta-banner-inner p {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin: 0 auto 28px;
    max-width: 680px;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.about-cta-secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.about-cta-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #cbd5e1;
}

.about-cta-trust svg {
    color: #60a5fa;
}
