:root {
    --navy: #0b2545;
    --navy-dark: #081a31;
    --silver: #d0d4dc;
    --white: #ffffff;
    --accent: #627aad;
    --accent-soft: #b3bed6;
    --card-bg: #ffffff;
    --text-soft: #4a5263;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f6fa;
    color: #1b2430;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER / LOGO */
.site-header {
    background: var(--navy-dark);
    color: var(--white);
    border-bottom: 3px solid var(--silver);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--accent-soft);
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
}

.site-nav a {
    color: var(--silver);
    text-decoration: none;
    font-size: 0.9rem;
}

.site-nav a:hover {
    color: var(--white);
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, #020814 100%);
    color: var(--white);
    padding: 0.2rem 0;
    position: relative;
}

.hero-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text h1 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.hero-text h2 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--silver);
    margin-bottom: 1.5rem;
    max-width: 42rem;
}

.hero-lead {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 44rem;
    margin-bottom: 1.75rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    font-size: 0.98rem;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--silver);
    border-color: var(--silver);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* SECTIONS */
.section {
    padding: 3.5rem 0;
}

.section-alt {
    background: #eef1f7;
}

.section h2 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--navy-dark);
}

.section p.lead {
    font-size: 0.98rem;
    max-width: 46rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

  /* Brand / card grid */
  .brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.9rem;
    align-items: stretch;
  }

  .brand-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.75rem 1.9rem;
    border: 1px solid rgba(148, 163, 184, 0.55);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
  }

  .brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    border-color: var(--accent);
  }

  .brand-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-soft);
    margin: 0;
  }
.brand-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7284;
    margin-bottom: 0.35rem;
}

/* ABOUT / STRUCTURE */
.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.badge {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: #dde3f1;
    color: var(--navy-dark);
    margin-bottom: 0.75rem;
}

.about-highlight {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #dde1ec;
    padding: 1rem 1.1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.about-highlight ul {
    margin: 0.25rem 0 0;
    padding-left: 1.1rem;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2rem;
}

.contact-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #dde1ec;
    padding: 1.5rem 1.4rem;
}

.contact-card form {
    display: grid;
    gap: 0.9rem;
}

.contact-card label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-dark);
}

.contact-card input,
.contact-card textarea,
.contact-card select {
    width: 100%;
    padding: 0.55rem 0.6rem;
    border-radius: 8px;
    border: 1px solid #cfd4e3;
    font-size: 0.9rem;
    font-family: inherit;
}

.contact-card textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-note {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #4a5263;
}

/* FOOTER */
.site-footer {
    background: var(--navy-dark);
    color: var(--silver);
    padding: 1.5rem 0;
    font-size: 0.8rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.footer-inner a {
    color: var(--accent-soft);
    text-decoration: none;
}

.footer-inner a:hover {
    color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .site-nav ul {
        flex-wrap: wrap;
    }

    .hero {
        padding: 3rem 1.25rem 3.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.05rem;
    }

    .about-layout,
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}


.before h4 {
  color: #b83a3a;
}

.after h4 {
  color: #1b6f3a;
}

.before p, .after p {
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Premium grid refinement */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
  align-items: stretch;
}

/* Card shell */
.premium-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.6rem 1.7rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.22);
  border-color: rgba(59, 130, 246, 0.55);
}

/* Header row inside card: logo + pill */
.brand-card-header {
  display: flex;
  flex-direction: column;   /* NEW */
  align-items: flex-start;  /* logo + pill align left */
  gap: 0.5rem;              /* spacing between logo and pill */
  margin-bottom: 0.85rem;
}


/* Logos in cards */
.brand-card-logo {
  width: 150px;
  height: auto;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 3px 5px;
}

/* Small category pill */
.brand-pill {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.85);
  color: #4b5563;
  background: #f9fafb;
  white-space: nowrap;
}

/* Card body text */
.premium-card h3 {
  font-size: 1.05rem;
  margin: 0.2rem 0 0.5rem;
  color: #0b1120;
}

.premium-card p {
  font-size: 0.92rem;
  color: #4b5563;
  margin-bottom: 0.6rem;
}

/* Small bullet list inside cards */
.brand-card-list {
  margin: 0.35rem 0 0.9rem;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: #6b7280;
}

.brand-card-list li {
  margin-bottom: 0.25rem;
}

/* CTA button at bottom of card */
.brand-card-cta {
  margin-top: auto;
  align-self: flex-start;
  margin-top: 0.2rem;
}


