/* =========================
   Hero 
========================= */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  height: 600px;
  aspect-ratio: 16 / 9;
  width: 100%;
}

/* Slides */
.hero-slider {
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Background image */
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1200px) {
  .hero {
    min-height: 90vh;
  }
}

@media (max-width: 991px) {
  .hero {
    max-height: 430px;
  }
}

@media (max-width: 576px) {
  .hero {
    max-height: 280px;
  }
}
@media (max-width: 400px) {
  .hero {
    max-height: 200px;
  }
}

/* Content panel */
.hero-content {
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 600px;
  background: #00000030;
  padding: 36px;
  border-radius: 14px;
  color: #f6f7fb;
}
/* Text */
.hero-title {
  margin: 14px 0 10px;
  font-size: clamp(24px, 2.7vw, 44px);
  line-height: 1.1;
  font-weight: 700;
}

.hero-text {
  line-height: 1.6;
  font-size: 15px;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.hero-btn {
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
}

.hero-btn.primary {
  background: var(--brand-navy);
  color: #fff;
}

.hero-btn.secondary {
  background: #e5e7eb;
  color: #111;
}

/* Navigation */
.hero-nav {
  position: absolute;
  background-color: transparent;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dark-navy);
  border: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 5;
}

.hero-nav.prev {
  left: 20px;
}
.hero-nav.next {
  right: 20px;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  border: none;
  background: #d1d5db;
  transition: all 0.3s ease;
}

.hero-dots button.active {
  background: var(--brand-navy);
  width: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-content {
    left: 50%;
    bottom: 24px;
    top: auto;
    transform: translateX(-50%);
    width: calc(100% - 32px);
  }
}

/* =========================
   About Us
========================= */
.about-us {
  background: #fff;
}

.about-us-content {
  padding-right: clamp(0px, 2vw, 26px);
}

.section-badge {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(214, 6, 5, 0.1);
  color: var(--brand-red);
  font-size: 13px;
  letter-spacing: 0.2px;
}

.section-title {
  margin: 15px auto 18px;
  line-height: 1.2;
  font-size: clamp(26px, 3vw, 38px);
  max-width: 26ch;
  font-weight: 700;
  color: #1d255e;
}

.about-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

/* feature row */
.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(12, 8, 134, 0.08);
  border: 1px solid rgba(12, 8, 134, 0.12);
  flex: 0 0 auto;
}

.about-icon i {
  font-size: 18px;
}

.about-feature-title {
  font-weight: 600;
  color: #111827;
  line-height: 1.15;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  justify-content: space-around;
  gap: 0;
  height: 48px;
  border-radius: 0;
  background: var(--brand-navy);
  color: var(--offwhite);
  box-shadow: 0 12px 22px rgba(12, 8, 134, 0.1);
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
  width: 220px;
  border-radius: 10px;
}

.about-cta-arrow {
  width: 52px;
  height: 100%;
  display: grid;
  place-items: center;
  background: rgba(12, 8, 134, 0.1);
  border-left: 2px solid rgba(12, 8, 134, 0.25);
  transition: background 0.18s ease;
}

.about-cta:hover {
  transform: translateY(-2px);
  filter: brightness(0.98);
}
.about-cta:hover .about-cta-arrow {
  background: rgba(12, 8, 134, 0.16);
}

/* RIGHT VISUAL */
.about-us-visual {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* purple rounded rectangle behind */
.about-bg-shape {
  position: absolute;
  right: 18px;
  top: 34px;
  width: 250px;
  height: 260px;
  background: var(--shape);
  border-radius: 18px;
}

/* main image card */
.about-main-img {
  position: absolute;
  right: 34px;
  top: 78px;
  width: min(430px, 92%);
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.12);
  z-index: 2;
}

.about-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* mini image card */
.about-mini-img {
  position: absolute;
  left: 40px;
  top: 18px;
  width: 160px;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.12);
  z-index: 3;
  border: 6px solid #fff;
}

.about-mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* experience pill bottom-right */
.about-pill {
  position: absolute;
  right: 58px;
  bottom: 24px;
  background: var(--brand-navy);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  box-shadow: 0 16px 30px rgba(12, 8, 134, 0.18);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-pill span {
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .section-title {
    max-width: 100%;
  }
  .about-us-visual {
    min-height: 340px;
    margin-top: 12px;
  }
  .about-mini-img {
    left: 10px;
  }
  .about-bg-shape {
    right: 10px;
    width: 220px;
    height: 240px;
  }
  .about-main-img {
    right: 12px;
    width: 96%;
  }
  .about-pill {
    right: 20px;
  }
}

@media (max-width: 575px) {
  .about-main-img {
    height: 220px;
    top: 86px;
  }
  .about-mini-img {
    width: 140px;
    height: 105px;
    border-width: 5px;
  }
}
/* =========================
  CTA
========================= */

.cta {
  padding: 50px 0;
  background-color: var(--dark-navy);
  color: white;
}

.cta .cta-title {
  font-size: clamp(24px, 2.5vw, 35px);
}

.cta .cta-text {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.cta-btn {
  font-size: 20px;
  padding: 15px 40px;
  background-color: white;
  border: 2px solid white;
}

@media (max-width: 767px) {
  .cta-btn {
    margin-top: 20px;
  }
}
.cta-btn:hover {
  border: 2px solid white;
}

/* =========================
  Mission & Vision
========================= */

.principles {
  background: #fff;
}

/* List */
.principle-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.principle-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* Icon circle */
.p-icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.06);
}

.p-icon i {
  font-size: 20px;
  color: #1d255e;
}

.p-icon-vision {
  background: rgba(154, 156, 214, 0.35);
}
.p-icon-mission {
  background: rgba(244, 166, 166, 0.45);
}
.p-icon-goal {
  background: rgba(247, 226, 140, 0.55);
}

.principle-item-content h5 {
  margin: 0 0 6px;
  font-weight: 700;
  color: #1d255e;
  font-size: 16px;
}

.principle-item-content p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.principle-visual {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.p-bg-shape {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 120px;
  height: 360px;
  background: var(--shape);
  border-radius: 16px;
  z-index: 1;
}

.p-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.12);
  background: #eee;
}

.p-photo img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.p-photo::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  border: 2px solid rgba(12, 8, 134);
  pointer-events: none;
}

/* Responsive */
@media (max-width: 991px) {
  .principle-visual {
    min-height: 300px;
  }
  .p-photo img {
    height: 280px;
  }
  .p-bg-shape {
    width: 110px;
    height: 280px;
    right: 8px;
  }
}

@media (max-width: 575px) {
  .principle-item {
    gap: 14px;
  }
  .p-icon {
    width: 52px;
    height: 52px;
  }
  .p-photo img {
    height: 240px;
  }
}

/* =========================
  Product
========================= */
.products {
  background: var(--offwhite);
  padding: 60px 0;
  min-height: 500px;
}

.product-tabs-wrap {
  display: flex;
  justify-content: center;
}

.product-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: 10px 12px 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(6px);
}

/* Chrome-like tab */
.product-tab {
  position: relative;
  border: 0;
  background: transparent;
  color: #1d255e;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  opacity: 0.75;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease,
    background 0.18s ease;
}

.product-tab:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.product-tab.is-active {
  opacity: 1;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-bottom-color: transparent;
  box-shadow: 0 -6px 18px rgba(12, 8, 134, 0.08);
}

/* little "tab notch" */
.product-tab.is-active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -1px;
  height: 2px;
  background: #fff;
}

.product-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  height: 100%;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(12, 8, 134, 0.12);
}

.product-image {
  padding: 14px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-footer {
  background: #1d255e;
  color: #fff;
  padding: 12px 12px;
}

.product-name {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
}

.product-meta {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}

.product-card-col[hidden] {
  display: none !important;
}

.product-card-col {
  opacity: 1;
  transition: opacity 250ms ease;
}

.product-card-col.is-fade-in {
  opacity: 0;
}

@media (max-width: 576px) {
  .product-image {
    height: 200px;
  }
  .product-tabs {
    gap: 8px;
  }
  .product-tab {
    padding: 9px 12px;
    font-size: 13px;
  }
}

/* =========================
  FAQ
========================= */

.faq {
  background: var(--offwhite);
}

.faq-qna {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* item */
.faq-item {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(154, 156, 214, 0.25);
  border: 1px solid rgba(12, 8, 134, 0.1);
}

/* question row */
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
  color: #1d255e;
  cursor: pointer;
}

.faq-question i {
  color: #1d255e;
  font-size: 12px;
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.65);
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 12px 16px 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 576px) {
  .faq-question {
    font-size: 14px;
  }
}

/* open state */
.faq-item.open .faq-answer {
  max-height: 220px;
}
.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-visual {
  position: relative;
  width: 100%;
  min-height: 420px;
}

/* image cards */
.faq-img {
  position: absolute;
  right: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.12);
}

.faq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* top image */
.faq-img-top {
  top: 0;
  width: 78%;
  height: 190px;
}

/* bottom image */
.faq-img-bottom {
  bottom: 0;
  width: 88%;
  height: 250px;
}

/* =========================
  Contact Us
========================= */

.contact-us {
  background: var(--offwhite);
}

.contact-subtitle {
  margin: 6px 0 0;
  color: #9ca3af;
  font-size: 13px;
}

.contact-card {
  margin-top: 26px;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.1);
  border: 1px solid rgba(17, 24, 39, 0.06);
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
}

/* LEFT PANEL */
.card-info {
  position: relative;
  padding: 26px 22px;
  background: var(--brand-navy);
  color: #fff;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin: 14px;
}

.card-info h5 {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.2px;
}

.card-info p {
  margin: 6px 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.6;
  max-width: 28ch;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.contact-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.c-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.c-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.88);
}

/* social icons bottom-left */
.social-info {
  position: absolute;
  left: 22px;
  bottom: 18px;
  display: flex;
  gap: 14px;
  z-index: 3;
}

.c-social {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}
.c-social:hover {
  transform: translateY(-2px);
  opacity: 1;
  color: #fff;
}

/* bubble decoration (bottom-right like UI) */
.c-big-circle {
  position: absolute;
  right: -26px;
  bottom: -22px;
  width: 90px;
  height: 90px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.14);
  z-index: 1;
}

.c-bubbles {
  position: absolute;
  right: 42px;
  bottom: 38px;
  width: 120px;
  height: 120px;
  z-index: 2;
}

.c-bubbles span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0.85;
}

.c-bubbles span:nth-child(1) {
  right: 0;
  bottom: 30px;
}
.c-bubbles span:nth-child(2) {
  right: 14px;
  bottom: 48px;
  width: 8px;
  height: 8px;
}
.c-bubbles span:nth-child(3) {
  right: 26px;
  bottom: 66px;
  width: 7px;
  height: 7px;
}
.c-bubbles span:nth-child(4) {
  right: 40px;
  bottom: 82px;
  width: 6px;
  height: 6px;
}
.c-bubbles span:nth-child(5) {
  right: 56px;
  bottom: 92px;
  width: 5px;
  height: 5px;
}
.c-bubbles span:nth-child(6) {
  right: 18px;
  bottom: 16px;
  width: 7px;
  height: 7px;
}
.c-bubbles span:nth-child(7) {
  right: 34px;
  bottom: 30px;
  width: 6px;
  height: 6px;
}
.c-bubbles span:nth-child(8) {
  right: 50px;
  bottom: 44px;
  width: 5px;
  height: 5px;
}

/* RIGHT FORM */
.contact-form {
  padding: 32px 34px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 34px;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}
.input-select,
.input-line {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.28);
  padding: 10px 0 10px;
  outline: none;
  font-size: 14px;
  color: var(--text);
  background: transparent;
}

.input-line:focus {
  border-bottom-color: var(--brand-navy);
  box-shadow: 0 8px 0 -7px rgba(12, 8, 134, 0.25);
}

.form-message {
  grid-column: 1 / -1;
}

.input-area {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.28);
  padding: 10px 0 10px;
  outline: none;
  resize: vertical;
  min-height: 56px;
  font-size: 14px;
  background: transparent;
}

.input-area:focus {
  border-bottom-color: var(--brand-navy);
  box-shadow: 0 8px 0 -7px rgba(12, 8, 134, 0.25);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}

.btn-send {
  background: var(--brand-navy);
  color: #fff;
  border: 0;
  height: 42px;
  min-width: 180px;
  padding: 0 18px;
  border-radius: 6px;
  box-shadow: 0 14px 26px rgba(12, 8, 134, 0.16);
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}

.btn-send:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
}

/* Responsive */
@media (max-width: 991px) {
  .contact-card {
    grid-template-columns: 1fr;
  }
  .card-info {
    margin: 14px 14px 0;
    border-radius: var(--radius-xl);
    min-height: 320px;
  }
  .contact-form {
    padding: 26px 18px 30px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .form-actions {
    justify-content: flex-start;
  }
  .btn-send {
    width: 100%;
    min-width: unset;
  }
}

/* =========================
  Testimonials
========================= */

.testimonials {
  background: #fff;
}

/* grid */
.t-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* card */
.t-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.1);
  border: 1px solid rgba(17, 24, 39, 0.06);
  padding: 22px 22px 0;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.t-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(17, 24, 39, 0.12);
}

/* top row */
.t-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.t-quote {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--brand-navy);
  background: rgba(12, 8, 134, 0.08);
  border: 1px solid rgba(12, 8, 134, 0.1);
}

.t-quote i {
  font-size: 18px;
}

.t-person h6 {
  margin: 2px 0 2px;
  font-weight: 700;
  color: var(--text);
  font-size: 15px;
}

.t-person p {
  margin: 0;
  font-size: 12px;
  color: #9ca3af;
  font-weight: 700;
}

/* body */
.t-text {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.75;
}

/* bottom area */
.t-bottom {
  position: relative;
  padding: 0 0 18px;
  background: #fff;
}

.t-stars {
  display: flex;
  gap: 6px;
  align-items: center;
}

.t-star {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: var(--brand-navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 10px;
}

.t-rev {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.t-corner {
  position: absolute;
  right: -10px;
  bottom: -18px;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.12);
}

/* active card (center highlight) */
.t-card.is-active {
  box-shadow: 0 24px 56px rgba(17, 24, 39, 0.14);
}

.t-card.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: var(--brand-navy);
}

/* Responsive */
@media (max-width: 992px) {
  .t-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .t-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   BLOG SECTION 
========================= */
.blog {
  padding: 70px 0;
  background: var(--offwhite);
}

/* header */
.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.blog-header .section-title {
  margin: 15px 0 18px;
}

.blog-heading {
  margin: 12px 0 0;
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.12;
  font-size: clamp(22px, 2.6vw, 34px);
}

/* view all pill */
.blog-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px 10px 16px;
  border-radius: 999px;
  background: var(--brand-navy);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 16px 30px rgba(12, 8, 134, 0.16);
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
  margin-top: 8px;
  white-space: nowrap;
}
.blog-cta-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
}
.blog-cta:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
  color: #fff;
}

/* grid layout: big, big, stack */
.blog-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.9fr;
  gap: 18px;
}

.blog-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

/* blog card base */
.blog-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
  border: 1px solid rgba(17, 24, 39, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(17, 24, 39, 0.12);
}

.blog-card.blog-card--small {
  overflow: visible;
}

.blog-card--big {
  height: 300px;
}

.blog-card--small {
  height: 140px;
}

.blog-media,
.blog-media img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.blog-media img {
  object-fit: cover;
  display: block;
}

.blog-media::after {
  position: absolute;
  content: "";
  background-color: #0b0f2a4a;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 12px;
}

.blog-body {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);

  width: calc(100% - 24px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 10px;

  padding: 14px 14px 14px;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.18);

  transition:
    height 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
  z-index: 1000;
}

.blog-card--big .blog-body {
  height: 90px;
}

.blog-card--small .blog-body {
  height: 85px;
}

.blog-date {
  position: absolute;
  top: -30px;
  left: 14px;
  width: 44px;
  border-radius: 6px;
  background: var(--brand-navy);
  color: #fff;
  text-align: center;
  padding: 8px 0 7px;
  box-shadow: 0 5px 15px rgba(12, 8, 134, 0.25);
}
.blog-date b {
  display: block;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}
.blog-date span {
  font-size: 10px;
  opacity: 0.9;
  margin-top: 0;
  text-transform: capitalize;
}

.blog-card-title {
  margin-top: 15px;
  font-weight: 700;
  color: #1d255e;
  font-size: 14px;
  line-height: 1.25;
}

.blog-link {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.blog-link i {
  transition: transform 0.18s ease;
}
.blog-link:hover {
  color: var(--brand-navy);
}
.blog-link:hover i {
  transform: translateX(4px);
}

.blog-snippet {
  display: none;
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.6;
}

.blog-card--big:hover .blog-body {
  height: 110px;
  background: var(--brand-navy);
  color: #fff;
}
.blog-card--big:hover .blog-date {
  background: #fff;
  color: var(--brand-navy);
}

.blog-card--big:hover .blog-card-title {
  color: #fff;
}

.blog-card--big:hover .blog-snippet {
  display: block;
  color: rgba(255, 255, 255, 0.78);
}

.blog-card--big:hover .blog-link {
  color: rgba(255, 255, 255, 0.88);
}
.blog-card--big:hover .blog-link:hover {
  color: #fff;
}

/* small cards DO NOT change */
.blog-card--small:hover .blog-body {
  background: rgba(255, 255, 255, 0.95);
  color: inherit;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-stack {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .blog-card--big {
    height: 290px;
  }
  .blog-card--small {
    height: 160px;
  }
  .blog-card--small .blog-body {
    height: 130px;
  }
}

@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-stack {
    grid-template-columns: 1fr;
  }
  .blog-card--big {
    height: 280px;
  }
  .blog-card--small .blog-body {
    height: 106px;
  }
}

/* =========================
  Feed Highlights
========================= */

.feed-highlights {
  background: var(--offwhite);
}

.section-subtitle {
  max-width: 760px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.7;
}

.feed-card {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.feed-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  background: linear-gradient(180deg, rgba(12, 8, 134, 0.06), transparent);
}

.feed-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(12, 8, 134, 0.1);
  color: var(--brand-navy);
  flex: 0 0 auto;
}

.feed-card__title {
  color: #1d255e;
  font-weight: 600;
  font-size: clamp(20px, 2vw, 30px);
}

.feed-card__lead {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.feed-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

@media (max-width: 450px) {
  .feed-card__body {
    min-height: 430px;
  }
}
.feed-card__subtitle {
  font-size: 18px;
  color: #1d255e;
}

.check-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.55;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(12, 8, 134, 0.1);
  color: var(--brand-navy);
  font-weight: 900;
  font-size: 12px;
}

.feed-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.pill {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(12, 8, 134, 0.08);
  color: var(--brand-navy);
  font-size: 12px;
}

.process-strip {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.05);
}

.process-strip__title {
  color: #1d255e;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.step {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(214, 6, 5, 0.08);
  color: #1d255e;
  font-size: 12px;
}
