/* ============================================================
   pages.css — Rototech Inner Pages
   Shared styles for product, solution, industry, resource,
   company and contact pages.
   Depends on: style.css (tokens, base, buttons)
   ============================================================ */


/* ────────────────────────────────────────────────────────────
   PAGE HERO / BANNER
   ──────────────────────────────────────────────────────────── */
.page-hero {
    position: relative;
    background: radial-gradient(circle at 70% 30%, rgba(91, 184, 212, 0.08) 0%, var(--color-white) 70%);
    background-color: var(--color-slate-50);
    padding: calc(var(--header-height) + var(--space-12)) 0 var(--space-6);
    overflow: hidden;
}

.page-hero__bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(91, 184, 212, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 184, 212, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.page-hero__bg-line {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-red-500), transparent 60%);
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero .container.page-hero__inner,
.page-hero .page-hero__inner {
    text-align: center;
}

.page-hero .page-hero__inner .page-hero__label,
.page-hero .page-hero__inner .page-hero__title,
.page-hero .page-hero__inner .page-hero__desc,
.page-hero .page-hero__inner .page-hero__actions,
.page-hero .page-hero__inner .product-type-badge,
.page-hero .page-hero__inner .product-hero__image-wrap {
    text-align: center;
}

.page-hero .page-hero__inner .page-hero__desc {
    margin-left: auto;
    margin-right: auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
    list-style: none;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    color: var(--color-text-subtle);
}

.breadcrumb__item:not(:last-child)::after {
    content: '›';
    color: var(--color-text-subtle);
    opacity: 0.5;
}

.breadcrumb__link {
    color: var(--color-sky-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb__link:hover {
    color: var(--color-sky-500);
}

.breadcrumb__current {
    color: var(--color-slate-700);
}

/* Page Hero heading area */
.page-hero__label {
    margin-bottom: var(--space-4);
}

.page-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-navy-950);
    margin-bottom: var(--space-5);
}

.page-hero__desc {
    font-size: var(--text-lg);
    color: var(--color-slate-600);
    max-width: 640px;
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
}

.page-hero__actions .btn {
    flex-shrink: 0;
}

.page-hero .breadcrumb {
    justify-content: center;
}

.page-hero .hero-specs {
    justify-content: center;
}

.page-hero .hero-spec {
    justify-content: center;
    text-align: center;
}

.page-hero .hero-spec__text {
    text-align: center;
}

.page-hero .hero-spec__text strong {
    color: var(--color-navy-950);
    display: block;
    text-align: center;
}

.page-hero .hero-spec__text span {
    color: var(--color-slate-600);
    display: block;
    text-align: center;
}

.page-hero .btn-ghost {
    color: var(--color-navy-950);
    border-color: var(--color-slate-300);
}

.page-hero .btn-ghost:hover {
    background-color: var(--color-slate-100);
    border-color: var(--color-slate-400);
}

.product-hero__image-wrap {
    margin-bottom: var(--space-6);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.product-hero__image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.product-type-badge {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.product-type-badge--p1 {
    background: rgba(230, 50, 36, 0.2);
    color: var(--color-red-400);
    border: 1px solid rgba(230, 50, 36, 0.4);
}


/* ────────────────────────────────────────────────────────────
   PRODUCT HERO SPLIT LAYOUT (image in header)
   ──────────────────────────────────────────────────────────── */
.page-hero--split {
    padding-bottom: 0;
    overflow: visible;
}

.page-hero--split .page-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 0;
}

.page-hero--split .page-hero__label,
.page-hero--split h1,
.page-hero--split .page-hero__desc,
.page-hero--split .page-hero__actions,
.page-hero--split .breadcrumb,
.page-hero--split .hero-specs {
    text-align: left;
    justify-content: flex-start;
}

.page-hero--split .page-hero__desc {
    margin-left: 0;
    margin-right: 0;
}

.page-hero--split .page-hero .breadcrumb {
    justify-content: flex-start;
}

.product-hero-visual {
    position: relative;
    align-self: flex-end;
    margin-bottom: 0;
}

.product-hero-image-wrap {
    position: relative;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    overflow: hidden;
    box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.4), 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    height: 360px;
    background: var(--color-navy-800);
}

.product-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 10s ease-out;
}

.page-hero--split:hover .product-hero-image {
    transform: scale(1.05);
}

.product-hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(10, 16, 30, 0.35) 0%,
            transparent 60%);
    pointer-events: none;
}

.product-hero-tags {
    position: absolute;
    bottom: var(--space-4);
    left: var(--space-4);
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.product-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(10, 16, 30, 0.72);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
}

.product-hero-tag i {
    color: var(--color-red-400);
    font-size: 10px;
}

/* Product showcase section (used when image is NOT in hero) */
.product-showcase {
    position: relative;
    background: #f5f7fa;
    padding: var(--space-8) 0;
    border-bottom: 1px solid #e2e6ec;
}

.product-showcase__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.product-showcase__image-wrap {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #dde2ea;
    background: #fff;
}

.product-showcase__image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.product-showcase__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(10, 16, 30, 0.75) 100%);
    pointer-events: none;
}

.product-showcase__badge-row {
    position: absolute;
    bottom: var(--space-5);
    left: var(--space-5);
    right: var(--space-5);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-4);
    pointer-events: none;
}

.product-showcase__caption {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.product-showcase__tag-row {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.product-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(230, 50, 36, 0.22);
    color: #ffccc8;
    border: 1px solid rgba(230, 50, 36, 0.45);
    backdrop-filter: blur(4px);
    text-transform: uppercase;
}

/* ────────────────────────────────────────────────────────────
   SIDEBAR QUOTE FORM  (light sidebar background)
   ──────────────────────────────────────────────────────────── */
.sidebar-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.sidebar-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar-form label {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    /* clearly visible dark grey */
    letter-spacing: 0.03em;
}

.sidebar-form input,
.sidebar-form select,
.sidebar-form textarea {
    width: 100%;
    background: #fff;
    border: 1.5px solid #cbd5e1;
    /* clearly visible border */
    border-radius: var(--radius-md);
    color: #111827;
    /* dark input text */
    font-size: var(--text-sm);
    font-family: var(--font-body);
    padding: 0.55rem 0.85rem;
    transition: border-color 0.18s, box-shadow 0.18s;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.sidebar-form input::placeholder,
.sidebar-form textarea::placeholder {
    color: #9ca3af;
}

.sidebar-form input:focus,
.sidebar-form select:focus,
.sidebar-form textarea:focus {
    border-color: var(--color-red-500);
    box-shadow: 0 0 0 3px rgba(230, 50, 36, 0.12);
}

.sidebar-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 2rem;
    cursor: pointer;
}

.sidebar-form textarea {
    resize: vertical;
    min-height: 90px;
}

.sidebar-form .btn-block {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-2);
}

/* Sidebar interlinks nav */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-nav__link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: 10px var(--space-4);
    border-radius: var(--radius-md);
    color: #374151;
    font-size: var(--text-sm);
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.18s;
}

.sidebar-nav__link:hover {
    color: var(--color-red-600);
    background: rgba(230, 50, 36, 0.06);
    border-color: rgba(230, 50, 36, 0.2);
}

.sidebar-nav__link i {
    width: 18px;
    color: var(--color-red-400);
    flex-shrink: 0;
    font-size: 14px;
}

/* Page hero quick-specs strip */
.hero-specs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-5);
    margin-top: var(--space-8);
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-border);
}

.hero-spec {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.hero-spec__icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: rgba(230, 50, 36, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-red-400);
    font-size: var(--text-sm);
    flex-shrink: 0;
}

.hero-spec__text strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-white);
}

.hero-spec__text span {
    font-size: var(--text-xs);
    color: var(--color-text-subtle);
}


/* ────────────────────────────────────────────────────────────
   ON-PAGE NAV (sticky section nav on long pages)
   ──────────────────────────────────────────────────────────── */
.on-page-nav {
    position: sticky;
    top: var(--header-height);
    z-index: var(--z-sticky);
    background: rgba(19, 22, 30, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    padding: 0;
}

.on-page-nav__list {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.on-page-nav__list::-webkit-scrollbar {
    display: none;
}

.on-page-nav__link {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    padding: var(--space-4) var(--space-5);
    white-space: nowrap;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.on-page-nav__link:hover {
    color: var(--color-white);
    border-bottom-color: var(--color-red-500);
}

.on-page-nav__link.active {
    color: var(--color-white);
    border-bottom-color: transparent;
}

.on-page-nav__link.active:hover {
    border-bottom-color: var(--color-red-500);
}


/* ────────────────────────────────────────────────────────────
   FEATURE LIST (product spec table)
   ──────────────────────────────────────────────────────────── */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.feature-list__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
    background: var(--color-surface-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast);
}

.feature-list__item:hover {
    border-color: var(--color-border-red);
}

.feature-list__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(230, 50, 36, 0.1);
    border: 1px solid var(--color-border-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-red-400);
    font-size: var(--text-sm);
    flex-shrink: 0;
}

.feature-list__body h4 {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-1);
}

.feature-list__body p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: 0;
}


/* ────────────────────────────────────────────────────────────
   SPEC TABLE
   ──────────────────────────────────────────────────────────── */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-surface-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.spec-table thead tr {
    background: var(--color-red-500);
}

.spec-table thead th {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-white);
    padding: var(--space-4) var(--space-5);
    text-align: left;
}

.spec-table tbody tr {
    border-bottom: 1px solid var(--color-border);
    transition: background-color var(--transition-fast);
}

.spec-table tbody tr:hover {
    background: rgba(230, 50, 36, 0.04);
}

.spec-table tbody tr:last-child {
    border-bottom: none;
}

.spec-table tbody td {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    padding: var(--space-3) var(--space-5);
}

.spec-table tbody td:first-child {
    font-weight: 600;
    color: var(--color-white);
    width: 40%;
}


/* ────────────────────────────────────────────────────────────
   APPLICATIONS / USE-CASE CARDS
   ──────────────────────────────────────────────────────────── */
.app-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.app-card {
    background: var(--color-surface-card);
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-sky-500);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: transform var(--transition-base),
        box-shadow var(--transition-base),
        border-color var(--transition-base);
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-top-color: var(--color-red-500);
}

.app-card__icon {
    font-size: 1.5rem;
    color: var(--color-sky-400);
    margin-bottom: var(--space-4);
    display: block;
}

.app-card:hover .app-card__icon {
    color: var(--color-red-400);
}

.app-card__title {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

.app-card__desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}


/* ────────────────────────────────────────────────────────────
   FAQ ACCORDION
   ──────────────────────────────────────────────────────────── */
.faq-accordion,
.product-faq {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.faq-item {
    background: var(--color-surface-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.faq-item.open {
    border-color: var(--color-border-red);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-white);
    padding: var(--space-5) var(--space-6);
    cursor: pointer;
    text-align: left;
    background: none;
    border: none;
    font-family: inherit;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-sky-400);
}

.faq-item.open .faq-question {
    color: var(--color-white);
}

.faq-icon {
    font-size: var(--text-base);
    color: var(--color-red-400);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 400ms ease;
}

.faq-item.open .faq-answer {
    max-height: 600px;
}

.faq-answer__inner {
    padding: 0 var(--space-6) var(--space-5);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
}

.faq-answer__inner p {
    margin-bottom: var(--space-3);
}

.faq-answer__inner p:last-child {
    margin-bottom: 0;
}


/* ────────────────────────────────────────────────────────────
   CONTENT + SIDEBAR LAYOUT
   ──────────────────────────────────────────────────────────── */
.content-sidebar-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-10);
    align-items: start;
}

.sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--space-6));
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.sidebar-card {
    background: var(--color-surface-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
}

.sidebar-card__title {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--color-red-500);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-decoration: none;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    border-left: 2px solid transparent;
    transition: all var(--transition-fast);
}

.sidebar-link:hover,
.sidebar-link.active {
    color: var(--color-white);
    background: rgba(230, 50, 36, 0.06);
    border-left-color: var(--color-red-500);
    padding-left: var(--space-4);
}

.sidebar-link i {
    color: var(--color-sky-400);
    width: 14px;
    flex-shrink: 0;
}


/* ────────────────────────────────────────────────────────────
   CHECKLIST  (benefits / advantages list)
   ──────────────────────────────────────────────────────────── */
.checklist {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.checklist__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

.checklist__icon {
    color: var(--color-red-400);
    flex-shrink: 0;
    margin-top: 2px;
}

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


/* ────────────────────────────────────────────────────────────
   STAT BOXES (used in hero visual)
   ──────────────────────────────────────────────────────────── */
.stat-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.stat-box {
    background: var(--color-surface-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    text-align: center;
    transition: border-color var(--transition-base);
}

.stat-box:hover {
    border-color: var(--color-border-red);
}

.stat-box__value {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.stat-box__label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    font-weight: 500;
}

/* ────────────────────────────────────────────────────────────
   RELATED PRODUCTS / CROSS-LINKS
   ──────────────────────────────────────────────────────────── */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.related-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: var(--radius-lg);
    padding: 0;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.related-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-sky-300);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.related-card__image-wrap {
    width: 100%;
    height: 200px;
    background: var(--color-slate-50);
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid var(--color-sky-500);
}

.related-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-card:hover .related-card__image {
    transform: scale(1.08);
}

.related-card__content {
    padding: var(--space-6);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-card__icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(91, 184, 212, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    transition: all 0.3s ease;
}

.related-card:hover .related-card__icon-wrap {
    background: var(--color-sky-100);
    transform: rotate(5deg);
}

.related-card__icon {
    font-size: 1.25rem;
    color: var(--color-sky-600);
}

.related-card__title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: #1a1f2e;
    margin-bottom: var(--space-2);
}

.related-card__desc {
    font-size: var(--text-sm);
    color: #5a6475;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ────────────────────────────────────────────────────────────
   ENGINEERING GUIDES PAGE
   ──────────────────────────────────────────────────────────── */
.page-hero--guides {
    background: linear-gradient(160deg, var(--color-slate-50) 0%, var(--color-white) 50%);
}

.page-hero--guides .page-hero__desc {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.guides-section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
    background-color: #ffffff;
}

.guides-section .section-header .section-label {
    color: var(--color-red-500);
    background: rgba(230, 50, 36, 0.08);
    border: 1px solid rgba(230, 50, 36, 0.2);
}

.guides-section .section-title {
    color: #1a1f2e;
}

.guides-section .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-top: var(--space-2);
    color: #5a6475;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.guide-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(230, 50, 36, 0.25);
}

.guide-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-red-500), var(--color-sky-500));
    opacity: 0.9;
}

.guide-card:hover .guide-card__accent {
    opacity: 1;
}

.guide-card__body {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.guide-card__icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(230, 50, 36, 0.08), rgba(91, 184, 212, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    transition: transform 0.3s ease, background 0.3s ease;
}

.guide-card:hover .guide-card__icon-wrap {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(230, 50, 36, 0.12), rgba(91, 184, 212, 0.16));
}

.guide-card__icon {
    font-size: 1.35rem;
    color: var(--color-red-500);
    transition: color 0.3s ease;
}

.guide-card:hover .guide-card__icon {
    color: var(--color-red-600);
}

.guide-card__title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-navy-950);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.guide-card__desc {
    font-size: var(--text-sm);
    color: var(--color-slate-600);
    line-height: 1.6;
    margin-bottom: 0;
}

.guides-cta {
    margin-top: var(--space-12);
    padding: var(--space-10);
    background: linear-gradient(135deg, rgba(230, 50, 36, 0.06), rgba(91, 184, 212, 0.06));
    border: 1px solid rgba(230, 50, 36, 0.15);
    border-radius: var(--radius-xl);
    text-align: center;
}

.guides-cta__text {
    font-size: var(--text-base);
    color: var(--color-slate-600);
    margin-bottom: var(--space-4);
}

.guides-cta .btn-cta {
    min-width: 200px;
}

.guides-how-section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
    background: linear-gradient(180deg, #f4f6f9 0%, #ffffff 100%);
}

.guides-how-section .section-header .section-label {
    color: var(--color-red-500);
    background: rgba(230, 50, 36, 0.08);
    border: 1px solid rgba(230, 50, 36, 0.2);
}

.guides-how-section .section-title {
    color: #1a1f2e;
}

.guides-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-8);
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.guides-step {
    position: relative;
    text-align: center;
    padding: var(--space-6);
    background: var(--color-white);
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.guides-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(230, 50, 36, 0.2);
}

.guides-step__num {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-red-500), var(--color-sky-500));
    color: var(--color-white);
    font-size: var(--text-sm);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guides-step__icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-4);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(230, 50, 36, 0.08), rgba(91, 184, 212, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
}

.guides-step__icon {
    font-size: 1.5rem;
    color: var(--color-red-500);
}

.guides-step__title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-navy-950);
    margin-bottom: var(--space-2);
}

.guides-step__desc {
    font-size: var(--text-sm);
    color: var(--color-slate-600);
    line-height: 1.6;
    margin-bottom: 0;
}

body.page-inner .guides-step {
    background: #ffffff;
    border-color: #e4e8ef;
}

body.page-inner .guides-step__title {
    color: #1a1f2e;
}

body.page-inner .guides-step__desc {
    color: #5a6475;
}


/* ────────────────────────────────────────────────────────────
   CONTACT CTA BAND (page-level)
   ──────────────────────────────────────────────────────────── */
.page-cta {
    background: linear-gradient(135deg, #1a0404 0%, var(--color-navy-800) 100%);
    border-top: 1px solid var(--color-border-red);
    padding: var(--space-16) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(230, 50, 36, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.page-cta__inner {
    position: relative;
    z-index: 1;
}

.page-cta__title {
    font-size: clamp(1.5rem, 3vw, var(--text-4xl));
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.page-cta__desc {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto var(--space-8);
}

.page-cta__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}


/* ────────────────────────────────────────────────────────────
   PAGES RESPONSIVE
   ──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .content-sidebar-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

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

@media (max-width: 991px) {

    /* Split hero: stack on tablet */
    .page-hero--split .page-hero__inner {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
        padding-bottom: var(--space-8);
    }

    .page-hero--split .page-hero__label,
    .page-hero--split h1,
    .page-hero--split .page-hero__desc,
    .page-hero--split .page-hero__actions,
    .page-hero--split .breadcrumb,
    .page-hero--split .hero-specs {
        text-align: center;
        justify-content: center;
    }

    .page-hero--split .page-hero__desc {
        margin-left: auto;
        margin-right: auto;
    }

    .product-hero-visual {
        order: -1;
    }

    .product-hero-image-wrap {
        height: 260px;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .product-showcase__image {
        height: 320px;
    }

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

    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-5);
    }

    .guides-section {
        padding-top: var(--space-12);
        padding-bottom: var(--space-12);
    }

    .guides-steps {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .careers-grid,
    .careers-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-5);
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: calc(var(--header-height) + var(--space-8)) 0 var(--space-10);
    }

    .page-hero__inner {
        text-align: center;
    }

    .page-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .product-hero__image-wrap {
        margin-left: calc(-1 * var(--space-4));
        margin-right: calc(-1 * var(--space-4));
        border-radius: 0;
    }

    .app-cards,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .guides-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        margin-top: var(--space-8);
    }

    .guide-card__body {
        padding: var(--space-5);
    }

    .guide-card__title {
        font-size: var(--text-base);
    }

    .guides-cta {
        margin-top: var(--space-8);
        padding: var(--space-6);
    }

    .guides-cta__text {
        font-size: var(--text-sm);
    }

    .guides-section {
        padding-top: var(--space-10);
        padding-bottom: var(--space-10);
    }

    .guides-how-section {
        padding-top: var(--space-8);
        padding-bottom: var(--space-8);
    }

    .guides-steps {
        margin-top: var(--space-6);
        gap: var(--space-4);
    }

    .guides-step {
        padding: var(--space-5);
    }

    .guides-step__title {
        font-size: var(--text-base);
    }

    .careers-grid,
    .careers-why-grid {
        grid-template-columns: 1fr;
    }

    .careers-grid {
        margin-top: var(--space-8);
        gap: var(--space-4);
    }

    .career-card__body {
        padding: var(--space-5);
    }

    .career-card__title {
        font-size: var(--text-base);
    }

    .careers-cta {
        margin-top: var(--space-8);
        padding: var(--space-6);
    }

    .careers-cta__text {
        font-size: var(--text-sm);
    }

    .careers-openings {
        padding-top: var(--space-12);
        padding-bottom: var(--space-12);
    }

    .careers-why-grid {
        margin-top: var(--space-8);
        gap: var(--space-4);
    }

    .careers-why {
        padding-top: var(--space-12);
        padding-bottom: var(--space-12);
    }

    .spec-table {
        font-size: var(--text-xs);
    }

    .spec-table tbody td,
    .spec-table thead th {
        padding: var(--space-2) var(--space-3);
    }

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

    .hero-specs {
        gap: var(--space-4);
    }

    .on-page-nav__link {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-xs);
    }
}


/* ============================================================
   INNER PAGE LIGHT THEME OVERRIDES
   Applied when body has .page-inner class (all pages except home).
   Overrides the dark navy sections to clean white/light backgrounds.
   ============================================================ */

/* ── Section backgrounds ── */
body.page-inner .section--dark {
    background-color: #ffffff;
}

body.page-inner .bg-white {
    background-color: #ffffff;
}

body.page-inner .bg-white p,
body.page-inner .bg-white p.reveal {
    color: #5a6475;
}

body.page-inner .section--alt {
    background-color: #f4f6f9;
}

/* ── Section text ── */
body.page-inner .section-title,
body.page-inner .section-subtitle,
body.page-inner .page-hero__title,
body.page-inner .page-hero__meta,
body.page-inner .page-hero__meta time {
    color: #dddddd;
}

body.page-inner .section-label {
    color: var(--color-red-500);
    background: rgba(230, 50, 36, 0.08);
    border-color: rgba(230, 50, 36, 0.2);
}

.section-label--pill {
    color: #ffffff !important;
    background: var(--color-red-500) !important;
    border-color: var(--color-red-600) !important;
    padding: 6px var(--space-4);
    border-radius: var(--radius-pill);
    font-weight: 600;
}

#related .related-card__title {
    color: #1a1f2e;
    font-weight: 700;
}

#related .related-card__desc {
    color: #5a6475;
}

/* ── Blog Card Overrides for Light Theme ── */
body.page-inner .blog-premium-card {
    background: #ffffff;
    border: 1px solid #e4e8ef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.page-inner .blog-premium-card:hover {
    border-color: rgba(230, 50, 36, 0.3);
    box-shadow: 0 10px 30px rgba(230, 50, 36, 0.08);
}

body.page-inner .blog-premium-card__body h3,
body.page-inner .blog-premium-card__title,
body.page-inner .blog-premium-card__title a {
    color: #1a1f2e;
}

body.page-inner .blog-premium-card__excerpt {
    color: #5a6475;
}

body.page-inner .blog-premium-card__meta {
    border-top-color: #f1f5f9;
}

/* Hero label badge — Red background with white text works well for emphasis */
.page-hero .section-label,
.page-hero .page-hero__label {
    color: #ffffff !important;
    background: var(--color-red-500) !important;
    border-color: var(--color-red-600) !important;
    text-shadow: none;
}

/* Hero specs text — Optimized for light hero background */
.page-hero .hero-spec__text strong {
    color: var(--color-navy-950) !important;
}

.page-hero .hero-spec__text span {
    color: var(--color-slate-600) !important;
}

/* Hero breadcrumb contrast */
.page-hero .breadcrumb__item,
.page-hero .breadcrumb__link {
    color: var(--color-slate-500) !important;
}

.page-hero .breadcrumb__current {
    color: var(--color-navy-950) !important;
}

.page-hero .breadcrumb__item:not(:last-child)::after {
    color: var(--color-slate-400) !important;
    opacity: 0.8 !important;
}

/* ── Feature list cards ── */
body.page-inner .feature-list__item {
    background: #ffffff;
    border-color: #e4e8ef;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

body.page-inner .feature-list__item:hover {
    border-color: rgba(230, 50, 36, 0.4);
    box-shadow: 0 4px 16px rgba(230, 50, 36, 0.08);
}

body.page-inner .feature-list__body h4 {
    color: #1a1f2e;
}

body.page-inner .feature-list__body p {
    color: #5a6475;
}

/* ── About: Our Story section ── */
.about-story__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.about-story__header .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.about-story__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.about-story__text {
    font-size: var(--text-base);
    color: #5a6475;
    line-height: 1.75;
    margin: 0;
    max-width: 520px;
}

.about-story__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.about-story__feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-5);
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: var(--radius-lg);
    padding: var(--space-5) var(--space-6);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.about-story__feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-red-500), var(--color-sky-400));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.about-story__feature:hover {
    border-color: rgba(230, 50, 36, 0.4);
    box-shadow: 0 4px 16px rgba(230, 50, 36, 0.08);
}

.about-story__feature:hover::before {
    opacity: 1;
}

.about-story__feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(230, 50, 36, 0.08);
    border: 1px solid rgba(230, 50, 36, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-red-500);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-story__feature-body {
    flex: 1;
}

.about-story__feature-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #1a1f2e;
    margin-bottom: var(--space-1);
}

.about-story__feature-desc {
    font-size: var(--text-sm);
    color: #5a6475;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1023px) {
    .about-story__grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .about-story__content {
        align-items: center;
        text-align: center;
    }

    .about-story__text {
        max-width: 100%;
    }
}

@media (max-width: 639px) {
    .about-story__header {
        margin-bottom: var(--space-8);
    }

    .about-story__feature {
        padding: var(--space-4) var(--space-5);
    }

    .about-story__feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* ── About: Core Values & Stats ── */
.about-values__heading {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1f2e;
    margin-bottom: var(--space-8);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.about-value-card {
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    overflow: hidden;
}

.about-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-red-500), var(--color-sky-400));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.about-value-card:hover {
    border-color: rgba(230, 50, 36, 0.4);
    box-shadow: 0 4px 16px rgba(230, 50, 36, 0.08);
}

.about-value-card:hover::before {
    opacity: 1;
}

.about-value-card__icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-4);
    border-radius: var(--radius-md);
    background: rgba(230, 50, 36, 0.08);
    border: 1px solid rgba(230, 50, 36, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-red-500);
    font-size: 1.35rem;
}

.about-value-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1f2e;
    margin-bottom: var(--space-2);
}

.about-value-card__desc {
    font-size: var(--text-sm);
    color: #5a6475;
    line-height: 1.6;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    max-width: 960px;
    margin: 0 auto;
}

.about-stat {
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: var(--radius-lg);
    padding: var(--space-8) var(--space-6);
    text-align: center;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.about-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-red-500), var(--color-sky-400));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.about-stat:hover {
    border-color: rgba(230, 50, 36, 0.4);
    box-shadow: 0 4px 16px rgba(230, 50, 36, 0.08);
}

.about-stat:hover::before {
    opacity: 1;
}

.about-stat__icon-wrap {
    width: 52px;
    height: 52px;
    margin: 0 auto var(--space-4);
    border-radius: var(--radius-md);
    background: rgba(230, 50, 36, 0.08);
    border: 1px solid rgba(230, 50, 36, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-red-500);
    font-size: 1.25rem;
}

.about-stat__value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #1a1f2e;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.about-stat__label {
    font-size: var(--text-sm);
    color: #5a6475;
    font-weight: 500;
}

@media (max-width: 1023px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 639px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
}

/* ── Company page (index) ── */
.company-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.company-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: var(--radius-lg);
    padding: var(--space-8) var(--space-6);
    text-decoration: none;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-red-500), var(--color-sky-400));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.company-card:hover {
    border-color: rgba(230, 50, 36, 0.4);
    box-shadow: 0 4px 16px rgba(230, 50, 36, 0.08);
}

.company-card:hover::before {
    opacity: 1;
}

.company-card:hover .company-card__link {
    gap: var(--space-3);
    color: var(--color-red-500);
}

.company-card__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(230, 50, 36, 0.08);
    border: 1px solid rgba(230, 50, 36, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-red-500);
    font-size: 1.35rem;
    margin-bottom: var(--space-5);
    flex-shrink: 0;
}

.company-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1f2e;
    margin-bottom: var(--space-3);
}

.company-card__desc {
    font-size: var(--text-sm);
    color: #5a6475;
    line-height: 1.6;
    margin-bottom: var(--space-5);
    flex: 1;
}

.company-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: #1a1f2e;
    transition: gap var(--transition-base), color var(--transition-base);
}

.company-about-strip {
    max-width: 720px;
    margin: 0 auto;
}

.company-about-strip__text {
    font-size: var(--text-base);
    color: #5a6475;
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

@media (max-width: 1023px) {
    .company-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 639px) {
    .company-cards {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .company-card {
        padding: var(--space-6) var(--space-5);
    }

    .page-cta__actions {
        flex-direction: column;
        align-items: center;
    }
}

body.page-inner .page-cta__actions {
    flex-wrap: wrap;
}

/* ── App cards ── */
body.page-inner .app-card {
    background: #ffffff;
    border-color: #e4e8ef;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

body.page-inner .app-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

body.page-inner .app-card__title {
    color: #1a1f2e;
}

body.page-inner .app-card__desc {
    color: #5a6475;
}

/* ── Related cards ── */
body.page-inner .related-card {
    background: #ffffff;
    border-color: #e4e8ef;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

body.page-inner .related-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    border-color: rgba(230, 50, 36, 0.4);
}

body.page-inner .related-card__title {
    color: #1a1f2e;
}

body.page-inner .related-card__desc {
    color: #5a6475;
}

body.page-inner .guide-card {
    background: #ffffff;
    border-color: #e4e8ef;
}

body.page-inner .guide-card__title {
    color: #1a1f2e;
}

body.page-inner .guide-card__desc {
    color: #5a6475;
}

body.page-inner .guides-cta__text {
    color: #5a6475;
}

/* ────────────────────────────────────────────────────────────
   CAREERS PAGE
   ──────────────────────────────────────────────────────────── */
.page-hero--careers .page-hero__desc {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.careers-openings {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
    background-color: #ffffff;
}

.careers-openings .section-header .section-label {
    color: var(--color-red-500);
    background: rgba(230, 50, 36, 0.08);
    border: 1px solid rgba(230, 50, 36, 0.2);
}

.careers-openings .section-title {
    color: #1a1f2e;
}

.careers-openings .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-top: var(--space-2);
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.career-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.career-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(230, 50, 36, 0.25);
}

.career-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-red-500), var(--color-sky-500));
    opacity: 0.9;
}

.career-card:hover .career-card__accent {
    opacity: 1;
}

.career-card__body {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.career-card__icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(230, 50, 36, 0.08), rgba(91, 184, 212, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    transition: transform 0.3s ease, background 0.3s ease;
}

.career-card:hover .career-card__icon-wrap {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(230, 50, 36, 0.12), rgba(91, 184, 212, 0.16));
}

.career-card__icon {
    font-size: 1.35rem;
    color: var(--color-red-500);
    transition: color 0.3s ease;
}

.career-card:hover .career-card__icon {
    color: var(--color-red-600);
}

.career-card__title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-navy-950);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.career-card__desc {
    font-size: var(--text-sm);
    color: var(--color-slate-600);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.career-card__btn {
    margin-top: auto;
}

.careers-cta {
    margin-top: var(--space-12);
    padding: var(--space-10);
    background: linear-gradient(135deg, rgba(230, 50, 36, 0.06), rgba(91, 184, 212, 0.06));
    border: 1px solid rgba(230, 50, 36, 0.15);
    border-radius: var(--radius-xl);
    text-align: center;
}

.careers-cta__text {
    font-size: var(--text-base);
    color: var(--color-slate-600);
    margin-bottom: var(--space-4);
}

.careers-why {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
}

.careers-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.careers-why-card {
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.careers-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(230, 50, 36, 0.25);
}

.careers-why-card__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(230, 50, 36, 0.08), rgba(91, 184, 212, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
}

.careers-why-card__icon {
    font-size: 1.25rem;
    color: var(--color-red-500);
}

.careers-why-card__title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: #1a1f2e;
    margin-bottom: var(--space-2);
}

.careers-why-card__desc {
    font-size: var(--text-sm);
    color: #5a6475;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Careers responsive overrides (must come after base careers styles) */
@media (max-width: 991px) {
    .careers-grid,
    .careers-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-5);
    }
}

@media (max-width: 767px) {
    .careers-grid,
    .careers-why-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        margin-top: var(--space-8);
    }

    .careers-grid {
        margin-top: var(--space-8);
    }

    .career-card__body,
    .careers-why-card {
        padding: var(--space-5);
    }

    .careers-cta {
        margin-top: var(--space-8);
        padding: var(--space-6);
    }
}

body.page-guides .site-main {
    background-color: #f8fafc;
}

body.page-guides .guides-section,
body.page-guides .guides-how-section {
    background-color: #ffffff;
}

body.page-guides .guides-how-section {
    background: linear-gradient(180deg, #f4f6f9 0%, #ffffff 100%);
}

/* ── Spec table ── */
body.page-inner .spec-table {
    background: #ffffff;
    border-color: #e4e8ef;
}

body.page-inner .spec-table tbody tr {
    border-bottom-color: #e4e8ef;
}

body.page-inner .spec-table tbody tr:hover {
    background: rgba(230, 50, 36, 0.03);
}

body.page-inner .spec-table tbody td {
    color: #5a6475;
}

body.page-inner .spec-table tbody td:first-child {
    color: #1a1f2e;
}

/* ── FAQ ── */
body.page-inner .faq-item {
    background: #ffffff;
    border-color: #e4e8ef;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

body.page-inner .faq-item.open {
    border-color: rgba(230, 50, 36, 0.35);
}

body.page-inner .faq-question {
    color: #1a1f2e;
}

body.page-inner .faq-question:hover {
    color: var(--color-red-500);
}

body.page-inner .faq-item.open .faq-question {
    color: var(--color-red-600, #c0281c);
}

body.page-inner .faq-answer__inner {
    color: #5a6475;
}

body.page-inner .faq-answer__inner p {
    color: #5a6475;
}

/* ── Stat boxes ── */
body.page-inner .stat-box {
    background: #ffffff;
    border-color: #e4e8ef;
}

body.page-inner .stat-box__value {
    color: #1a1f2e;
}

body.page-inner .stat-box__label {
    color: #5a6475;
}

/* ── Sidebar ── */
body.page-inner .sidebar-card {
    background: #ffffff;
    border-color: #e4e8ef;
}

body.page-inner .sidebar-card__title {
    color: #1a1f2e;
}

body.page-inner .sidebar-link {
    color: #5a6475;
}

body.page-inner .sidebar-link:hover,
body.page-inner .sidebar-link.active {
    color: #1a1f2e;
    background: rgba(230, 50, 36, 0.05);
}

/* ── On-page nav (sticky) ── */
body.page-inner .on-page-nav {
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: #e4e8ef;
}

body.page-inner .on-page-nav__link {
    color: #5a6475;
}

body.page-inner .on-page-nav__link:hover {
    color: #1a1f2e;
    border-bottom-color: var(--color-red-500);
}

body.page-inner .on-page-nav__link.active {
    color: #1a1f2e;
    border-bottom-color: transparent;
}

body.page-inner .on-page-nav__link.active:hover {
    border-bottom-color: var(--color-red-500);
}

/* ── Checklist ── */
body.page-inner .checklist__item {
    color: #5a6475;
}

body.page-inner .checklist__text strong {
    color: #1a1f2e;
}

/* ── Contact page (light theme) ── */
body.page-inner .contact-info__card {
    background: #f8fafc;
    border-color: #e2e8f0;
}

body.page-inner .contact-info__heading {
    color: #1a1f2e;
}

body.page-inner .contact-info__item,
body.page-inner .contact-info__link {
    color: #5a6475;
}

body.page-inner .contact-info__link:hover {
    color: var(--color-red-500);
}

body.page-inner .contact-info__muted {
    color: #94a3b8;
}

body.page-inner .contact-map-card {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

body.page-inner .contact-map-card__title {
    color: #1a1f2e;
}

body.page-inner .contact-map-card__address {
    color: #5a6475;
}

body.page-inner .contact-map-card__link {
    color: var(--color-red-500);
}

body.page-inner .contact-map-card__link:hover {
    color: var(--color-red-600);
}

/* ── Body base text on inner pages ── */
body.page-inner .section--dark p,
body.page-inner .section--alt p,
body.page-inner .section--dark li,
body.page-inner .section--alt li {
    color: #5a6475;
}

body.page-inner .section--dark h2,
body.page-inner .section--dark h3,
body.page-inner .section--dark h4,
body.page-inner .section--alt h2,
body.page-inner .section--alt h3,
body.page-inner .section--alt h4 {
    color: #1a1f2e;
}

/* ── Content Block Lists ── */
.content-block ul {
    margin-top: var(--space-4);
    margin-bottom: var(--space-8);
    padding-left: var(--space-6);
}

.content-block ul li {
    margin-bottom: var(--space-2);
}

/* ── Legal pages (Terms, Privacy Policy) — compact spacing ── */
.section--legal {
    padding-top: var(--space-4);
    padding-bottom: var(--space-12);
}

.content-block--legal h2 {
    font-size: clamp(1.25rem, 2.5vw, var(--text-2xl));
    margin-top: var(--space-4);
    margin-bottom: var(--space-2);
    color: var(--color-navy-950);
}

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

.content-block--legal p {
    margin-bottom: var(--space-2);
    color: var(--color-navy-700);
}

.content-block--legal p:last-of-type {
    margin-bottom: 0;
}

.content-block--legal ul {
    margin-top: var(--space-1);
    margin-bottom: var(--space-3);
    padding-left: var(--space-5);
}

.content-block--legal ul li {
    margin-bottom: var(--space-1);
    color: var(--color-navy-700);
}

/* ────────────────────────────────────────────────────────────
   CONTACT PAGE SPECIFIC
   ──────────────────────────────────────────────────────────── */
.contact-section .section-header {
    margin-bottom: var(--space-12);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-info__card {
    background: rgba(28, 33, 48, 0.6);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    backdrop-filter: blur(8px);
}

.contact-info__heading {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.contact-info__heading i {
    color: var(--color-red-400);
}

.contact-info__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.contact-info__icon {
    color: var(--color-sky-400);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info__link {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-info__link:hover {
    color: var(--color-sky-400);
}

.contact-info__muted {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-text-subtle);
    margin-top: 2px;
}

.contact-info__card--checklist .checklist {
    gap: var(--space-3);
}

.contact-form-wrap {
    position: sticky;
    top: calc(var(--header-height) + var(--space-4));
}

.contact-form {
    background: rgba(0, 0, 0, 0.178);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    backdrop-filter: blur(8px);
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: #000000;
    margin-bottom: var(--space-2);
}

.form-required {
    color: var(--color-amber-400);
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.7rem var(--space-4);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: #000000;
    background-color: rgb(255 255 255);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        background-color var(--transition-fast);
    outline: none;
}

.form-control::placeholder {
    color: var(--color-text-subtle);
}

.form-control:focus {
    border-color: var(--color-red-500);
    box-shadow: 0 0 0 3px rgba(230, 50, 36, 0.12);
}

.form-control.is-invalid {
    border-color: #ef4444;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Sidebar Form Overrides: Ensure visibility on light cards */
.sidebar-card .form-control {
    background-color: var(--color-white);
    color: var(--color-navy-950);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.sidebar-card .form-control::placeholder {
    color: var(--color-slate-400);
}

.sidebar-card .form-control:focus {
    background-color: var(--color-white);
    border-color: var(--color-red-500);
    box-shadow: 0 0 0 3px rgba(230, 50, 36, 0.08);
}

.contact-alert {
    padding: var(--space-4);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.contact-alert--success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #86efac;
}

.contact-alert--error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fca5a5;
}

.form-row--sm {
    grid-template-columns: 1fr 1fr;
}

.contact-maps-section .section-header {
    margin-bottom: var(--space-10);
}

.contact-maps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
}

.contact-map-card {
    background: var(--color-navy-800);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-map-card__title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-white);
    padding: var(--space-5) var(--space-5) 0;
    margin-bottom: var(--space-2);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.contact-map-card__title i {
    color: var(--color-red-400);
}

.contact-map-card__address {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
    padding: 0 var(--space-5);
    margin-bottom: var(--space-3);
}

.contact-map-card__link {
    font-size: var(--text-sm);
    color: var(--color-sky-400);
    text-decoration: none;
    padding: 0 var(--space-5) var(--space-4);
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    transition: color var(--transition-fast);
}

.contact-map-card__link:hover {
    color: var(--color-sky-300);
}

.contact-map-card__embed {
    margin-top: auto;
    height: 280px;
    min-height: 280px;
}

.contact-map-card__embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
}

.invalid-feedback {
    display: block;
    font-size: var(--text-xs);
    color: #ef4444;
    margin-top: var(--space-1);
}

/* Hide reCAPTCHA dummy input */
input[name="g-recaptcha-response-dummy"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .contact-form-wrap {
        position: static;
    }

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

@media (max-width: 767px) {

    .form-row,
    .form-row--sm {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: var(--space-5);
    }

    .contact-map-card__embed {
        height: 240px;
        min-height: 240px;
    }

    .contact-map-card__embed iframe {
        min-height: 240px;
    }
}

/* ────────────────────────────────────────────────────────────
   PRODUCT PAGE SCROLL OFFSETS
   Fix for sticky header and sub-nav covering section titles
   ──────────────────────────────────────────────────────────── */
#overview,
#features,
#specifications,
#applications,
#faq,
#get-quote,
#related {
    scroll-margin-top: 180px;
}

@media (max-width: 991px) {

    #overview,
    #features,
    #specifications,
    #applications,
    #faq,
    #get-quote,
    #related {
        scroll-margin-top: 150px;
    }
}

/* ────────────────────────────────────────────────────────────
   BLOG LISTING & BLOG DETAIL + SIDEBAR
   ──────────────────────────────────────────────────────────── */
.container--blog {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-10);
    align-items: start;
}

.blog-main {
    min-width: 0;
}

.page-hero--blog .page-hero__desc,
.page-hero--blog-single .page-hero__desc {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero__title--single {
    font-size: clamp(1.5rem, 3vw, 2rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero__meta {
    margin-top: var(--space-3);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.page-hero__meta time {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.blog-results-heading {
    margin-bottom: var(--space-4);
    font-size: var(--text-base);
    color: var(--color-text-muted);
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.blog-list-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-6);
    align-items: start;
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--color-border);
}

.blog-list-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-list-card__image-wrap {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 400 / 250;
    background: var(--color-surface-alt);
}

.blog-list-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-list-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--color-text-subtle);
    font-size: 2rem;
}

.blog-list-card__body {
    min-width: 0;
}

.blog-list-card__category {
    display: inline-block;
    margin-bottom: var(--space-2);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-red-500);
}

.blog-list-card__category:hover {
    color: var(--color-red-400);
}

.blog-list-card__title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.blog-list-card__title-link {
    color: inherit;
}

.blog-list-card__title-link:hover {
    color: var(--color-red-500);
}

.blog-list-card__excerpt {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-3);
    line-height: 1.5;
}

.blog-list-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-2);
    font-size: var(--text-sm);
}

.blog-list-card__date {
    color: var(--color-text-subtle);
}

.blog-list-card__date i {
    margin-right: var(--space-1);
}

.blog-list-card__read {
    font-weight: 500;
    color: var(--color-red-500);
}

.blog-list-card__read:hover {
    color: var(--color-red-400);
}

.blog-list-card__read i {
    margin-left: var(--space-1);
}

.blog-empty {
    text-align: center;
    padding: var(--space-12);
    color: var(--color-text-muted);
}

.blog-pagination {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-slate-200);
    text-align: center;
}

.blog-pagination__info {
    font-size: var(--text-sm);
    color: var(--color-slate-600);
    margin-bottom: var(--space-4);
}

.blog-pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    list-style: none;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.blog-pagination .page-item .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 var(--space-3);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-slate-200);
    background: var(--color-white);
    color: var(--color-slate-700);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.blog-pagination .page-item .page-link:hover {
    border-color: var(--color-red-500);
    color: var(--color-red-600);
    background: rgba(230, 50, 36, 0.06);
}

.blog-pagination .page-item.active .page-link {
    background: var(--color-red-500);
    border-color: var(--color-red-500);
    color: var(--color-white);
}

.blog-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--color-slate-100);
    border-color: var(--color-slate-200);
    color: var(--color-slate-500);
}

.blog-sidebar-wrap {
    position: sticky;
    top: calc(var(--header-height) + var(--space-4));
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.blog-sidebar__title {
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-3);
}

.blog-sidebar__block {
    padding: var(--space-5);
    background: rgb(0 0 0 / 75%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.blog-sidebar__form {
    display: flex;
    gap: var(--space-2);
}

.blog-sidebar__form--stacked {
    flex-direction: column;
}

.blog-sidebar__input {
    flex: 1;
    min-width: 0;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-navy-800);
    color: var(--color-text);
}

.blog-sidebar__input::placeholder {
    color: var(--color-text-subtle);
}

.blog-sidebar__input:focus {
    outline: none;
    border-color: var(--color-red-500);
}

.blog-sidebar__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface-alt);
    color: var(--color-text-muted);
    cursor: pointer;
}

.blog-sidebar__submit:hover {
    border-color: var(--color-red-500);
    color: var(--color-red-500);
}

.blog-sidebar__list {
    list-style: none;
}

.blog-sidebar__list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-2);
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--color-border);
}

.blog-sidebar__list-item:last-child {
    border-bottom: none;
}

.blog-sidebar__link {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.blog-sidebar__link:hover,
.blog-sidebar__link--active {
    color: var(--color-red-500);
}

.blog-sidebar__count {
    font-size: var(--text-xs);
    color: var(--color-text-subtle);
}

.blog-sidebar__posts {
    list-style: none;
}

.blog-sidebar__post {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border);
}

.blog-sidebar__post:last-child {
    border-bottom: none;
}

.blog-sidebar__post-thumb {
    flex-shrink: 0;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--color-surface-alt);
}

.blog-sidebar__post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-sidebar__post-content {
    min-width: 0;
}

.blog-sidebar__post-title {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: var(--space-1);
}

.blog-sidebar__post-title:hover {
    color: var(--color-red-500);
}

.blog-sidebar__post-date {
    font-size: var(--text-xs);
    color: var(--color-text-subtle);
}

.blog-sidebar__newsletter-desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
    line-height: 1.5;
}

.blog-sidebar__error {
    font-size: var(--text-xs);
    color: var(--color-red-400);
    margin-top: var(--space-1);
}

.blog-sidebar__alert {
    font-size: var(--text-sm);
    padding: var(--space-3);
    border-radius: var(--radius-md);
}

.blog-sidebar__alert--success {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
}

.blog-detail-main {
    min-width: 0;
}

.blog-detail__image-wrap {
    margin-bottom: var(--space-5);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface-alt);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.blog-detail__image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.blog-detail__lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-slate-700);
    margin-bottom: var(--space-3);
    line-height: 1.6;
    border-left: 4px solid var(--color-red-600);
    padding-left: var(--space-4);
}

.blog-detail__body.prose {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-slate-800);
}

.blog-detail__body.prose p {
    margin-top: 0;
    margin-bottom: var(--space-3);
}

.blog-detail__body.prose p:empty,
.blog-detail__body.prose p:has(br:only-child) {
    display: none;
    margin: 0;
}

.blog-detail__body.prose h2,
.blog-detail__body.prose h3 {
    margin-top: var(--space-4);
    margin-bottom: var(--space-1);
    font-weight: 700;
    color: var(--color-slate-900);
    line-height: 1.3;
}

.blog-detail__body.prose ul,
.blog-detail__body.prose ol {
    margin-top: 0;
    margin-bottom: var(--space-4);
    padding-left: var(--space-5);
    list-style: disc;
}

.blog-detail__body.prose li {
    margin-bottom: var(--space-1);
    color: var(--color-slate-700);
}

.blog-detail__body.prose img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.blog-detail__body.prose blockquote {
    margin: var(--space-6) 0;
    padding-left: var(--space-4);
    border-left: 4px solid var(--color-red-500);
    color: var(--color-text-muted);
}

.blog-detail__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-6);
    padding-top: var(--space-5);
    border-top: 1px solid var(--color-slate-200);
}

@media (max-width: 991px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar-wrap {
        position: static;
    }

    .blog-list-card {
        grid-template-columns: 1fr;
    }

    .blog-list-card__image-wrap {
        aspect-ratio: 16 / 9;
    }
}

/* ------------------------------------------------------------
   SOLUTIONS PAGES
   ------------------------------------------------------------ */
.sol-stats {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: var(--space-8) 0;
    margin-bottom: 0;
    /* Remove margin to eliminate black line */
    position: relative;
    z-index: 2;
}

.section-desc {
    color: var(--color-slate-600);
    /* Darker slate for better contrast on white */
    font-size: var(--text-base);
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sol-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
}

.sol-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-3);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.sol-stats__item:last-child {
    border-right: none;
}

.sol-stats__value {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-navy-950);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.sol-stats__label {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--color-slate-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.sol-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    color: inherit;
}

.sol-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.sol-card__image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.sol-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.sol-card:hover .sol-card__image {
    transform: scale(1.1);
}

.sol-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 17, 32, 0.4) 100%);
    opacity: 0.6;
}

.sol-card__icon-badge {
    position: absolute;
    bottom: var(--space-4);
    left: var(--space-4);
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-red-500);
    font-size: var(--text-xl);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.sol-card__body {
    padding: var(--space-6);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sol-card__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-red-500);
    background: rgba(230, 50, 36, 0.06);
    padding: 2px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-3);
}

.sol-card__title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-navy-950);
    margin-bottom: var(--space-3);
}

.sol-card__desc {
    font-size: var(--text-sm);
    color: var(--color-slate-600);
    line-height: 1.6;
    margin-bottom: var(--space-5);
}

.sol-card__pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    list-style: none;
    padding: 0;
}

.sol-card__pills li {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-slate-600);
    background: var(--color-slate-50);
    border: 1px solid var(--color-slate-200);
    padding: 2px 8px;
    border-radius: var(--radius-pill);
}

.sol-card__cta {
    margin-top: auto;
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-red-500);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: gap var(--transition-fast);
}

.sol-card:hover .sol-card__cta {
    gap: var(--space-3);
}

/* Why Rototech Light */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
}

.why-item--light {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: var(--space-8) var(--space-6);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.why-item--light:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.why-item__icon {
    width: 48px;
    height: 48px;
    background: rgba(230, 50, 36, 0.1);
    color: var(--color-red-500);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
}

.why-item__title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-navy-950);
    margin-bottom: var(--space-3);
}

.why-item__desc {
    font-size: var(--text-sm);
    color: var(--color-slate-600);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .sol-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .sol-stats__item:nth-child(2) {
        border-right: none;
    }

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

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

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

/* ────────────────────────────────────────────────────────────
   INDUSTRY PAGES UNIQUE LAYOUT
   ──────────────────────────────────────────────────────────── */

/* 1. Challenge Cards (3-column grid for specific industry issues) */
.challenge-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.challenge-card {
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.challenge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--color-red-400);
}

.challenge-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(230, 50, 36, 0.08);
    /* light red tint */
    color: var(--color-red-500);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: var(--space-4);
}

.challenge-card__title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-navy-950);
    margin-bottom: var(--space-2);
}

.challenge-card__desc {
    font-size: var(--text-sm);
    color: var(--color-slate-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* 2. Split Feature Section (50/50 Image + Content for "Rototech Approach") */
.split-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    margin-bottom: var(--space-8);
}

.split-feature--reverse {
    direction: rtl;
}

.split-feature--reverse>* {
    direction: ltr;
    /* Reset text direction inside */
}

.split-feature__image-wrap {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--color-border);
}

.split-feature__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}

.split-feature__content {
    padding-right: var(--space-4);
}

.split-feature--reverse .split-feature__content {
    padding-right: 0;
    padding-left: var(--space-4);
}

.split-feature__label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--color-sky-600);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.split-feature__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-navy-950);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.split-feature__desc {
    font-size: var(--text-base);
    color: var(--color-slate-600);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.split-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6);
}

.split-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: var(--text-sm);
    color: var(--color-slate-700);
    font-weight: 500;
}

.split-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-red-500);
    font-size: 14px;
}

/* 3. Tech Stack (Horizontal list of equipment for the sector) */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.tech-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: 12px 20px;
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.tech-item:hover {
    border-color: var(--color-sky-400);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
    background: rgba(14, 165, 233, 0.02);
}

.tech-item__icon {
    font-size: 18px;
    color: var(--color-sky-500);
}

.tech-item__name {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-navy-900);
}

/* Specific Media queries for new layout */
@media (max-width: 991px) {
    .split-feature {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .split-feature__content,
    .split-feature--reverse .split-feature__content {
        padding: 0;
    }

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

/* ────────────────────────────────────────────────────────────
   CASE STUDIES UNIQUE LAYOUT
   ──────────────────────────────────────────────────────────── */

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.cs-card {
    background: #ffffff;
    border: 1px solid #e4e8ef;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.cs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--color-red-300);
}

.cs-card__image-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--color-navy-950);
}

.cs-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform var(--transition-slow);
}

.cs-card:hover .cs-card__image {
    transform: scale(1.05);
}

.cs-card__badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--color-navy-900);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-sm);
}

.cs-card__badge i {
    color: var(--color-red-500);
}

.cs-card__content {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cs-card__title {
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--color-navy-950);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.cs-card__desc {
    font-size: var(--text-sm);
    color: var(--color-slate-600);
    line-height: 1.6;
    margin-bottom: var(--space-6);
    flex: 1;
}

.cs-card__specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
    padding-top: var(--space-5);
    border-top: 1px solid #f1f5f9;
}

.cs-spec {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cs-spec__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-slate-500);
    font-weight: 600;
}

.cs-spec__value {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-navy-900);
}

@media (max-width: 1024px) {
    .case-study-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 639px) {
    .case-study-grid {
        grid-template-columns: 1fr;
    }
}

/* ────────────────────────────────────────────────────────────
   BLOG PREMIUM GRID
   ──────────────────────────────────────────────────────────── */
.blog-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-6);
}

.blog-premium-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.section--alt .blog-premium-card {
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.blog-premium-card__image-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    background: var(--color-slate-100);
    overflow: hidden;
}

.blog-premium-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-premium-card:hover .blog-premium-card__image {
    transform: scale(1.05);
}

.blog-premium-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--color-slate-300);
    font-size: 2rem;
}

.blog-premium-card__badge {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    background: var(--color-red-600);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 600;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-premium-card__body {
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-premium-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-slate-900);
    line-height: 1.3;
    margin-bottom: var(--space-3);
}

.blog-premium-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.blog-premium-card__title a:hover {
    color: var(--color-red-600);
}

.blog-premium-card__excerpt {
    font-size: var(--text-sm);
    color: var(--color-slate-600);
    margin-bottom: var(--space-5);
    line-height: 1.6;
    flex-grow: 1;
}

.blog-premium-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-slate-200);
    margin-top: auto;
}

.blog-premium-card__meta time {
    font-size: var(--text-xs);
    color: var(--color-slate-500);
    font-weight: 500;
}

.blog-premium-card__meta time i {
    color: var(--color-red-600);
    margin-right: var(--space-1);
}

.blog-premium-card__read {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-red-600);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    transition: color var(--transition-fast);
}

.blog-premium-card__read:hover {
    color: var(--color-red-700);
}

.blog-premium-card__read:hover i {
    transform: translateX(4px);
}

.blog-premium-card__read i {
    font-size: 0.8em;
    transition: transform var(--transition-fast);
}

/* ────────────────────────────────────────────────────────────
   THANK YOU PAGE (aligned with site UI)
   ──────────────────────────────────────────────────────────── */
.page-hero--thank-you .thank-you-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-red-500);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto var(--space-4);
    box-shadow: 0 8px 24px rgba(230, 50, 36, 0.35);
    animation: thank-you-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes thank-you-pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

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

.thank-you-next-section .section-header {
    margin-bottom: var(--space-10);
}

.thank-you-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: var(--space-6);
    background: var(--color-white);
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.thank-you-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(230, 50, 36, 0.25);
}

.thank-you-card__icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(230, 50, 36, 0.08), rgba(91, 184, 212, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-red-500);
    font-size: 1.35rem;
    margin-bottom: var(--space-4);
    transition: background var(--transition-base), color var(--transition-base);
}

.thank-you-card:hover .thank-you-card__icon-wrap {
    background: linear-gradient(135deg, rgba(230, 50, 36, 0.14), rgba(91, 184, 212, 0.16));
    color: var(--color-red-600);
}

.thank-you-card__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-navy-950);
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.thank-you-card__desc {
    font-size: var(--text-sm);
    color: var(--color-slate-600);
    line-height: 1.6;
    margin-bottom: var(--space-4);
    flex: 1;
}

.thank-you-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-red-600);
    transition: gap var(--transition-fast), color var(--transition-fast);
}

.thank-you-card__link i {
    font-size: 0.75em;
    transition: transform var(--transition-fast);
}

.thank-you-card:hover .thank-you-card__link {
    gap: var(--space-3);
    color: var(--color-red-700);
}

.thank-you-card:hover .thank-you-card__link i {
    transform: translateX(4px);
}

.thank-you-cta {
    text-align: center;
    margin-top: var(--space-10);
}

.thank-you-cta .btn-cta {
    min-width: 200px;
}

@media (max-width: 991px) {
    .thank-you-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .thank-you-next-section .section-header {
        margin-bottom: var(--space-8);
    }

    .thank-you-cta {
        margin-top: var(--space-8);
    }
}
/* Stats Grid Styles for Industry pages */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.stat-card__value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--r-sky, #168dcc);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-card__label {
    font-size: 0.95rem;
    color: var(--color-gray-700, #4b5563);
    font-weight: 500;
    line-height: 1.4;
}

/* FAQ Accordion Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--r-sky, #168dcc);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-item__question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--r-navy, #1e293b);
    padding: 1.25rem 1.5rem;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    transition: background 0.3s ease;
}

.faq-item__question:hover {
    background: #f1f5f9;
}

.faq-item__question::after {
    content: '\f067'; /* FontAwesome Plus */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--r-sky, #168dcc);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-item__question::after {
    content: '\f068'; /* FontAwesome Minus */
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    margin: 0;
    color: var(--color-gray-700, #4b5563);
    line-height: 1.6;
}

.faq-item.active .faq-item__answer {
    padding: 1.25rem 1.5rem;
    max-height: 500px;
    border-top: 1px solid #e2e8f0;
}
