/* ============================================
   CSS VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
  --navy: #051b43;
  --blue: #0057df;
  --mid-blue: #073985;
  --light-blue: #eaf4ff;
  --ink: #071833;
  --muted: #4f5d74;
  --line: #dbe6f4;
  --soft: #f6fbff;
  --white: #ffffff;
  --serif: Georgia, 'Times New Roman', serif;
  --shadow: 0 18px 45px rgba(8, 38, 91, .13);
  --radius: 6px;
}

/* ============================================
   GLOBAL & BASE STYLES
   ============================================ */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.45;
  overflow-x: hidden;
}

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

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

/* ============================================
   HEADER & NAVIGATION STYLES
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 240px;
}

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

.menu {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.menu a {
  font-size: 14px;
  padding: 28px 0 25px;
  border-bottom: 3px solid transparent;
  transition: color .22s ease, border-color .22s ease;
}

.menu a.active,
.menu a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.nav-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .24s ease, opacity .24s ease;
}

.nav-toggle:hover {
  color: var(--blue);
  border-color: var(--blue);
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1101px) {
  .nav-toggle {
    display: none;
  }
}

/* ============================================
   CONTAINER & UTILITY CLASSES
   ============================================ */
.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .65s ease, transform .65s ease;
}

body.anim-ready .reveal {
  opacity: 1;
  transform: translateY(18px);
}

body.anim-ready .reveal.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.center {
  text-align: center;
  display: flex;
  justify-content: center;
}

/* ============================================
   BUTTON & CTA STYLES
   ============================================ */
.btn {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--white);
  border-radius: 6px;
  min-height: 44px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(0, 87, 223, .16);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.btn.secondary {
  color: var(--blue);
  background: var(--white);
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-2px);
  background: #003f9f;
  border-color: #003f9f;
  box-shadow: 0 13px 24px rgba(0, 67, 170, .22);
}

.btn.secondary:hover {
  color: #fff;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--navy);
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 5vw, 58px);
  max-width: 560px;
}

h1 span,
h2 span {
  color: var(--blue);
}

h2 {
  font-size: 28px;
}

.eyeline {
  width: 58px;
  height: 3px;
  background: var(--blue);
  margin: 22px 0 18px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(90deg, #fff 0%, #fff 36%, #eef7ff 100%);
  border-bottom: 1px solid #e4edf7;
  overflow: hidden;
}

.pillar img{
         width: 48px;
    height: 48px;
      color: var(--blue);
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
.hero-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns:1.9fr 1.1fr;
  align-items: center;
  gap: 36px;
}

.hero p {
  max-width: 560px;
  margin: 0 0 24px;
  font-size: 18px;
  color: #111927;
}

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

.hero-art {
  align-self: stretch;
  min-height: 438px;
  position: relative;
  display: flex;
  align-items: stretch;
  margin-right: calc((100vw - min(1120px, calc(100vw - 48px))) / -2);
}

.hero-art::after {
  /* Gradient overlay - commented out for reference */
}

.hero-art img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.035);
  transition: transform .12s linear;
}

/* ============================================
   SECTIONS & LAYOUT
   ============================================ */
.section {
  padding: 80px 0 80px;
}

.section-heading {
  text-align: center;
  margin-bottom: 22px;
}

.section-heading p {
  margin: 5px 0 0;
  color: #16263d;
  font-size: 14px;
}

/* ============================================
   PILLARS & GRID
   ============================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(130px, 1fr));
  justify-content: center;
  row-gap: 14px;
  margin-bottom: 20px;
}

.pillar:nth-child(7) {
  grid-column: 2;
}

.pillar {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px;
  text-align: center;
  border-left: 1px solid var(--line);
  transition: transform .22s ease, color .22s ease, background .22s ease;
}

.pillar:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(234, 244, 255, .65), rgba(255, 255, 255, 0));
}

.pillar:nth-child(6n+1) {
  border-left: 0;
}

.pillar strong {
  font-size: 14px;
  line-height: 1.25;
  max-width: 148px;
}

/* ============================================
   ICONS
   ============================================ */
.icon {
  width: 48px;
  height: 48px;
  color: var(--blue);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================
   WHY SECTION (Dark Background)
   ============================================ */
.why {
  padding: 80px 0 80px;
  color: #fff;
  background:
    radial-gradient(circle at 20% -20%, rgba(16, 103, 230, .42), transparent 34%),
    linear-gradient(135deg, #053d8a 0%, #00235c 45%, #00153b 100%);
  position: relative;
  overflow: hidden;
}

.why::before,
.why::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 200px;
  border: 1px solid rgba(98, 163, 255, .18);
  transform: rotate(17deg);
  border-radius: 50%;
}

.why::before {
  left: -160px;
  top: -80px;
}

.why::after {
  right: -140px;
  bottom: -90px;
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
}

.why h2 {
  color: #fff;
  text-align: left;
  margin-bottom: 12px;
}

.why p {
  font-size: 17px;
  margin: 0 0 20px;
  max-width: 510px;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 520px;
  margin: 0 auto;
}

.why-point {
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  display: grid;
}

.why-point .icon {
  color: #fff;
  margin: 0 auto 8px;
}

.diff {
  border-left: 1px solid rgba(255, 255, 255, .35);
  padding-left: 54px;
}

.checks {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.checks li::before {
  content: "✓";
  font-weight: 900;
  margin-right: 9px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
  padding: 80px 0;
  background: var(--white);
  border-bottom: 1px solid #ecf1f7;
}

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

.stat {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border-left: 1px solid var(--line);
}

.stat:first-child {
  border-left: 0;
}

.stat .icon {
  width: 44px;
  height: 44px;
}

.stat strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--navy);
  font-size: 36px;
  line-height: 1;
}

.stat strong::after {
  content: "+";
}

.stat span {
  font-size: 13px;
  color: #1d2d44;
}

/* ============================================
   INSIGHTS & CONTENT SECTION
   ============================================ */
.insights {
  padding: 80px 0 80px;
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.insights-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.link {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.65fr .9fr;
  gap: 36px;
  align-items: stretch;
}

/* ============================================
   CARDS
   ============================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(3, 31, 78, .08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: #b8d3f6;
  box-shadow: 0 18px 34px rgba(3, 31, 78, .14);
}

.card img {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
  transition: transform .35s ease;
}

.card:hover img {
  transform: scale(1.06);
}

.card-body {
  padding: 12px 14px 14px;
}

.card h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 14px;
}

/* ============================================
   AUDIENCE SECTION
   ============================================ */
.audience {
  border-radius: 8px;
  background: linear-gradient(135deg, #eef6ff, #f7fbff);
  padding: 28px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audience h2 {
  text-align: left;
  font-size: 26px;
  margin-bottom: 18px;
}

.audience-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.audience-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
}

.audience-item:nth-child(3) .audience-icon {
  background: var(--blue);
}

.audience-icon .icon {
  width: 30px;
  height: 30px;
  color: #fff;
}

.audience strong {
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}

.audience p {
  margin: 0;
  font-size: 13px;
  color: #2c3b50;
}

/* ============================================
   LOGOS & BRAND SLIDER
   ============================================ */
.logos {
  margin-top: 60px;
  text-align: center;
}

.logos p {
  margin: 0 0 14px;
  font-weight: 800;
  color: var(--navy);
  font-size: 14px;
}

.logo-row {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 22px;
}

.brand-slider {
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
  display: flex;
  width: max-content;
  gap: 18px;
  align-items: center;
  animation: brandMarquee 28s linear infinite;
}

.brand-track:hover {
  animation-play-state: paused;
}

.brand-track img {
  width: 150px;
  height: 58px;
  object-fit: contain;
  max-width: none;
  opacity: .78;
  filter: grayscale(100%);
  transition: opacity .24s ease, filter .24s ease;
}

.brand-track img:hover {
  opacity: .95;
  filter: grayscale(60%);
}

@keyframes brandMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.arrow {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  color: #fff;
  background: linear-gradient(135deg, #063e8a, #001c51);
  padding: 40px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-copy {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta .icon {
  color: #fff;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
}

.cta h2 {
  color: #fff;
  text-align: left;
  font-size: 28px;
  margin-bottom: 6px;
}

.cta p {
  margin: 0;
  font-size: 14px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: 80px 0;
  background: #fff;
}

.testimonial-slider {
  position: relative;
  margin-top: 22px;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform .5s ease;
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 33.3333%;
  padding: 0 9px;
}

.testimonial-card {
  height: 100%;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  padding: 24px;
  box-shadow: 0 10px 22px rgba(3, 31, 78, .07);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.quote-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: #fff;
  background: var(--blue);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 32px;
  line-height: 1;
}

.testimonial-card p {
  margin: 0 0 18px;
  color: #1e2e45;
  font-size: 15px;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #cfe1f8;
}

.person strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.person span {
  color: var(--muted);
  font-size: 13px;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.slider-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.slider-btn:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b9cce8;
  cursor: pointer;
  transition: width .22s ease, background .22s ease;
}

.testimonial-dots button.active {
  width: 24px;
  border-radius: 999px;
  background: var(--blue);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  color: #dce9ff;
  background: #031636;
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr 1fr;
  gap: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.footer-logo {
  width: 210px;
  padding: 7px;
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 14px;
}

.footer-grid h3 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 14px;
}

.footer-grid p,
.footer-grid a {
  color: #c6d5ee;
  font-size: 14px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.footer-grid a {
  transition: color .2s ease, transform .2s ease;
}

.footer-grid a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  font-size: 13px;
  color: #9fb3d1;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes floatSoft {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.why-point .icon,
.audience-icon {
  animation: floatSoft 4.5s ease-in-out infinite;
}

.why-point:nth-child(2) .icon,
.audience-item:nth-child(3) .audience-icon {
  animation-delay: .45s;
}

/* ============================================
   RESPONSIVE DESIGN - Tablets (1100px and below)
   ============================================ */
@media (max-width: 1100px) {
  .nav {
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: inline-flex;
    position: absolute;
    top: 15px;
    right: 0;
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    z-index: 12;
  }

  .site-header .btn {
    display: none;
  }

  .menu {
    order: 3;
    width: 100%;
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 18px;
    padding: 12px 0 4px;
    border-top: 1px solid var(--line);
  }

  .menu a {
    padding: 13px 4px;
    border-bottom-width: 1px;
  }

  body.nav-open .menu {
    display: grid;
  }

  .hero-art {
    margin-right: 0;
  }

  .stat {
    padding: 0 16px;
  }
}

/* ============================================
   RESPONSIVE DESIGN - Medium Tablets (980px and below)
   ============================================ */
@media (max-width: 980px) {
  .container {
    width: min(100% - 32px, 760px);
  }

  .nav {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .menu {
    order: 3;
    width: 100%;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 12px 0 4px;
    border-top: 1px solid var(--line);
  }

  .menu a {
    padding: 13px 4px;
    border-bottom-width: 1px;
  }

  body.nav-open .menu {
    display: grid;
  }

  .site-header .btn {
    display: none;
  }

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

  .hero-grid {
    padding-top: 36px;
    gap: 24px;
  }

  .hero-art {
    margin: 0 -16px;
    min-height: 320px;
  }

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

  .pillar:nth-child(7) {
    grid-column: auto;
  }

  .pillar:nth-child(6n+1) {
    border-left: 1px solid var(--line);
  }

  .pillar:nth-child(3n+1) {
    border-left: 0;
  }

  .diff {
    border-left: 0;
    padding-left: 0;
  }

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

  .stat:nth-child(odd) {
    border-left: 0;
  }

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

  .arrow {
    display: none;
  }

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

  .testimonial-slide {
    flex-basis: 50%;
  }
}

/* ============================================
   RESPONSIVE DESIGN - Mobile (620px and below)
   ============================================ */
@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 196px;
  }

  .menu {
    font-size: 13px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 12px 16px;
  }

  .menu a {
    padding-bottom: 8px;
    white-space: nowrap;
  }

  .hero-grid {
    min-height: auto;
  }

  h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }

  .actions,
  .cta-inner,
  .cta-copy {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .pillars-grid,
  .why-points,
  .stats-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .section,
  .why,
  .insights,
  .testimonials {
    padding: 34px 0;
  }

  .pillar,
  .pillar:nth-child(3n+1),
  .pillar:nth-child(6n+1),
  .stat {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .pillar:first-child,
  .stat:first-child {
    border-top: 0;
  }

  .insights-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .audience {
    padding: 24px 20px;
  }

  .logo-row {
    font-size: 20px;
  }

  .brand-track {
    gap: 14px;
    animation-duration: 18s;
  }

  .brand-track img {
    width: 142px;
    height: 56px;
  }

  .testimonial-slide {
    flex-basis: 100%;
    padding: 0;
  }

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

  .footer-bottom nav {
    gap: 28px;
  }
}

/* ============================================
   ACCESSIBILITY - Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================
   CTA FOOTER SECTION - Overrides
   ============================================ */
.cta {
  background: linear-gradient(135deg, #2e3194, #12144f) !important;
  padding: 60px 0 !important;
  color: #ffffff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-copy h2 {
  font-size: 34px;
  margin: 0 0 10px;
  color: #ffffff;
}

.cta-copy p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-width: 700px;
  color: rgba(255,255,255,0.85);
}

/* ============================================
   MAIN FOOTER - Overrides
   ============================================ */
.site-footer {
  background: #002b6b !important;
  color: #ffffff;
  padding: 28px 0 16px !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .75fr 1.05fr 1.2fr;
  gap: 76px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.22);
}

.footer-logo {
  max-width: 190px;
  margin-bottom: 18px;
}

.footer-brand h3 {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.12;
  margin-bottom: 14px;
}

.site-footer p {
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.site-footer h3 {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.2;
  margin: 0 0 13px;
  color: #ffffff;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 6px;
}

.site-footer a {
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s ease;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-grid > div:not(.footer-brand) a:hover {
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.footer-social a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.68);
  border-radius: 50%;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.12);
  padding-left: 0;
}

.footer-social .icon {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-contact p {
  display: grid;
  gap: 3px;
}

.footer-contact span {
  color: #ffffff;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 0;
  padding-top: 12px;
  border-top: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
}

.footer-bottom nav {
  display: flex;
  gap: 86px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
}

/* ============================================
   FOOTER RESPONSIVE - Medium Tablets (991px and below)
   ============================================ */
@media (max-width: 991px) {
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

/* ============================================
   FOOTER RESPONSIVE - Mobile (600px and below)
   ============================================ */
@media (max-width: 600px) {
  .cta-copy h2 {
    font-size: 26px;
  }

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

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

  .footer-bottom nav {
    gap: 28px;
  }
}



/* footer */

.hero-art{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;   
}