/* :root {
    --primary-color: #003366;
    --accent-color: #006699;
    --light-bg: #f5f8fa;
    --text-color: #222;
    --card-bg: #fff;
    --radius: 16px;
    --shadow: 0 6px 18px rgba(0, 0, 0, .08);
} */

/* Typography helpers */

.kicker {
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: .5rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sub {
    color: #555;
    font-size: .98rem;
    line-height: 1.6;
}

/* Layout */

.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section-block {
    padding: 3rem 0;
}

.section-block--alt {
    padding: 3rem 0;
    background: var(--light-bg);
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: .4rem;
}

.section-header .sub {
    max-width: 44rem;
}

/* Hero */

.section-hero {
    padding: 2rem 0 3rem;
}

.hero > div > div > p.sub {
	color: #f3f7fb;
}

.section-hero--dark {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
}

.section-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.section-hero-copy h1 {
    margin-bottom: 1rem;
}

.section-hero-copy .sub {
    color: #f3f7fb;
}

.section-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1rem 0 1.5rem;
    font-size: .9rem;
}

.section-hero-meta span {
    background: rgba(255, 255, 255, .15);
    border-radius: 999px;
    padding: .3rem .7rem;
}

.section-hero-art img {
    max-width: 380px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Grids */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

/* Cards & panels */

.card,
.panel {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.75rem;
}

.card--shaded,
.panel--shaded {
    background: #e8f1f8;
}

.card--border,
.panel--border {
    border: 1px solid #d0dde8;
}

.card h3,
.panel h2,
.panel h3 {
    color: var(--primary-color);
    margin-bottom: .5rem;
}

/* Tags / badges */

.tag {
    display: inline-block;
    margin-top: .6rem;
    padding: .18rem .55rem;
    font-size: .78rem;
    border-radius: 999px;
    background: var(--light-bg);
    color: var(--primary-color);
}

/* Bullets */

.bullets {
    list-style: none;
    padding: 0;
    margin: .5rem 0 0;
}

.bullets li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: .35rem;
    font-size: .95rem;
}

.bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Links */

.inline-link,
.section-link {
    display: inline-block;
    margin-top: .75rem;
    font-weight: 600;
    font-size: .9rem;
    color: var(--accent-color);
    text-decoration: none;
}

/* Buttons */

.btn-primary,
.btn-outline,
.btn-wide {
    display: inline-block;
    padding: .7rem 1.3rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: #fff;
    color: var(--primary-color);
    border: none;
}

.btn-outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.card-btn-outline {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.btn-wide {
    min-width: 220px;
    text-align: center;
}



/* CTA band */

.cta-band {
    padding: 3rem 0 3.5rem;
    background: #001b3d;
    color: #fff;
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-band-copy h2 {
    margin-bottom: .75rem;
}

.cta-band-actions {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.cta-band .btn-primary {
    background: #fff;
    color: var(--primary-color);
}

.cta-band .btn-outline {
    border-color: #fff;
    color: #fff;
}

/* Distribution / simple cards */

.dist-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.25rem 1.5rem;
}

.dist-card h3 {
    color: var(--primary-color);
    margin-bottom: .3rem;
}

/* Page wrappers */

.page {
    /* padding-bottom: 2rem; */
}

/* Responsive */

@media (max-width: 900px) {

    .section-hero-inner,
    .cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* New styles for the reworked solutions section */
.solutions__grid--reworked {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card--solution {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  padding: 1.5rem;
}

.card--solution .card__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.card--solution .card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px; /* Soften edges of images like config.jpg */
}

.card--solution .card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card--solution .card__body {
  margin-bottom: 1rem;
  flex-grow: 1; /* Allows cards to have same height */
}

.card--solution .card__actions {
  margin-top: auto; /* Pushes button to the bottom */
}
