/* ================= RESET & UNIFIED BASE ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  
  --brand-blue: #2465b9;         
  --case-study-blue: #1a56b0;    /* Match Image 1 Royal Blue Background */
  --text-dark-navy: #152d4a;     
  
  --text-dark: #1e293b;
  --text-muted: #475569;
  --text-light: #94a3b8;
  
  --border-subtle: #e2e8f0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

/* ================= 1. HEADER & CLEAN MOBILE MENU ================= */
main {
  padding-top: 104px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2rem 2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 2.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  color: var(--text-dark);
}

.nav-links::after {
  content: '';
  width: 1px;
  height: 20px;
  background-color: var(--border-subtle);
}

.nav-item {
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--brand-blue);
  transition: width 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-item:hover::after {
  width: 100%;
}

.slide-down-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
  border: 1px solid var(--border-subtle);
  border-radius: 1.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.35s ease;
}

.slide-down-menu.open {
  max-height: 420px;
  opacity: 1;
  pointer-events: auto;
}

.menu-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2rem 2rem 2.25rem;
  text-align: center;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.mobile-nav-list a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.mobile-nav-list a:not(.mobile-menu-contact):hover {
  color: var(--brand-blue);
  background-color: var(--bg-secondary);
  transform: translateY(-2px);
}

.mobile-nav-list a.mobile-menu-contact {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-dark);
}

/* ================= ⚡ BUTTON STYLES ================= */
.btn-primary, .btn-black, .btn-talk, .btn-subscribe {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 9999px;
  font-weight: 600;
  z-index: 1;
  isolation: isolate;
  background-color: var(--brand-blue);
  color: #ffffff;
  border: 2px solid var(--brand-blue);
  box-shadow: none;
  transition: border-color 0.4s cubic-bezier(0.19, 1, 0.22, 1),
              color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-primary { font-size: 0.85rem; padding: 0.65rem 1.45rem; }
.btn-black { font-size: 0.95rem; padding: 0.5rem 1.7rem; }
.btn-talk { font-size: 1.05rem; padding: 0.75rem 2rem; }

.btn-primary::before, .btn-black::before, .btn-talk::before, .btn-subscribe::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  border-radius: 9999px;
  z-index: -1;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-primary:hover::before, 
.btn-black:hover::before, 
.btn-talk:hover::before, 
.btn-subscribe:hover::before {
  transform: translateX(0);
}

.btn-primary:hover, 
.btn-black:hover, 
.btn-talk:hover, 
.btn-subscribe:hover {
  color: var(--brand-blue) !important;
  border-color: var(--brand-blue) !important;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1) !important;
}

.btn-primary:hover .btn-arrow, 
.btn-black:hover .btn-arrow, 
.btn-talk:hover .btn-arrow {
  transform: translateX(5px);
}

.link-arrow, .all-programs-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-blue);
}

.link-arrow .arrow, .all-programs-link .arrow {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.link-arrow:hover .arrow, .all-programs-link:hover .arrow {
  transform: translateX(6px);
}

/* ================= HERO & VIDEO CONTAINER ================= */
.hero-section {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}

.hero-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 4.25rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  color: var(--text-dark);
  text-align: center;
}

.hero-description {
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 44rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.85rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  background-color: #ffffff;
  border: 1.5px solid var(--border-subtle);
  transition: border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.btn-outline:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  transform: translateY(-2px);
}

.video-container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1.5rem;
  overflow: hidden;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  box-shadow: none;
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-placeholder:hover .video-poster {
  transform: scale(1.03);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  text-align: left;
  width: 100%;
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.section-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================= 2. LEFT-ALIGNED PROGRAMS SECTION ================= */
.programs-section {
  padding-top: 1.5rem;
  padding-bottom: 4rem;
}

.programs-header {
  margin-bottom: 1.35rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.programs-header .serif-heading {
  margin-bottom: 0;
}

.category-tag {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
  display: block;
}

.serif-heading {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 2.25rem;
  max-width: 48rem;
  color: var(--text-dark);
}

.programs-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.program-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 1.35rem;
  margin-left: -1.35rem;
  margin-right: -1.35rem;
  border-radius: 0.85rem;
  background-color: transparent;
  border: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.program-row:hover,
.program-row:focus-within {
  transform: translateX(4px);
  background-color: #f6f8fb;
  border-color: rgba(36, 101, 185, 0.12);
  box-shadow: 0 10px 24px rgba(15, 35, 64, 0.025);
}

.programs-list .program-row:first-child {
  background-color: #f6f8fb;
  border-color: rgba(36, 101, 185, 0.12);
  box-shadow: 0 10px 24px rgba(15, 35, 64, 0.025);
}

.programs-list:has(.program-row:hover) .program-row:first-child:not(:hover),
.programs-list:has(.program-row:focus-within) .program-row:first-child:not(:focus-within) {
  transform: none;
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
}

.program-title {
  color: inherit;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.program-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.price-prefix {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
}

.program-desc {
  max-width: 32rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.5;
  text-align: right;
}

/* Link Under Programs Section */
.programs-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  text-align: left;
}

@media (max-width: 720px) {
  .program-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }

  .program-row:hover {
    transform: none;
  }

  .program-desc {
    text-align: left;
  }
}

.support-strip-section {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.support-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  background: #f6f8fb;
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  padding: 2rem;
}

@media (min-width: 900px) {
  .support-strip {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    padding: 2.5rem;
  }
}

.support-title {
  color: var(--text-primary);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  margin-top: 0.8rem;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.support-copy {
  max-width: 54ch;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.support-estimator {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  padding: 1.3rem;
}

.support-estimator-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.support-estimator-top span,
.support-estimator-top strong {
  color: var(--text-primary);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.support-estimator-top strong {
  font-size: 1.8rem;
}

.support-slider {
  width: 100%;
  accent-color: var(--brand-blue);
  margin-bottom: 1.1rem;
}

.support-link {
  width: 100%;
  text-align: center;
}

.support-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.support-link-secondary {
  justify-content: center;
  text-align: center;
  width: 100%;
}

@media (min-width: 520px) {
  .support-actions {
    grid-template-columns: 1fr 1fr;
  }
}

/* ================= 3. DARK BLUE CASE STUDIES SECTION (BLURRY GLASS CARDS) ================= */
.case-studies-section {
  background-color: var(--case-study-blue); /* Royal Blue Background */
  color: #ffffff;
  padding-top: 5rem;
  padding-bottom: 6rem;
  overflow: hidden;
}

.case-studies-header {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.light-tag {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.light-heading {
  color: #ffffff !important;
}

.btn-white {
  display: inline-block;
  background-color: transparent;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.65rem 1.8rem;
  border-radius: 9999px;
  border: 1.5px solid #ffffff;
  box-shadow: none;
  transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-white:hover {
  background-color: #ffffff;
  color: var(--case-study-blue);
}

/* Cards Gallery Grid */
.cards-wrapper {
  margin-top: 3.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-left: max(1.5rem, calc((100vw - 1140px) / 2));
  padding-right: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.cards-wrapper img {
  -webkit-user-drag: none;
  pointer-events: none;
}

.cards-wrapper.active { cursor: grabbing; }
.cards-wrapper::-webkit-scrollbar { display: none; }

.cards-container {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}

/* Frosted Blurry Glassmorphism Card Style */
.card-item {
  position: relative;
  width: 275px;
  background: rgba(255, 255, 255, 0.12); /* Semi-transparent White Fill */
  backdrop-filter: blur(16px);            /* Frosted Glass Blur Effect */
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.25); /* Subtle Translucent Border */
  border-radius: 1.25rem;
  padding: 0.75rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: border-color 0.35s ease, background-color 0.35s ease, transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.35s ease;
}

.card-img-box {
  width: 100%;
  height: 250px;
  border-radius: 0.85rem;
  overflow: hidden;
}

.card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-info {
  padding: 1.15rem 0.5rem 0.5rem;
  text-align: left;
}

.card-brand {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: #ffffff; /* White Text */
  margin-bottom: 0.25rem;
}

.card-sub {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85); /* Light Subtitle */
  text-transform: uppercase;
}

.card-item:hover {
  background: rgba(255, 255, 255, 0.2); /* Enhanced translucency on hover */
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.card-item:hover img { 
  transform: scale(1.08); 
}

/* ================= 4. REVIEWS CAROUSEL ================= */
.testimonials-section {
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .testimonials-grid { 
    grid-template-columns: minmax(180px, 0.85fr) minmax(180px, 0.85fr) minmax(420px, 1.6fr);
    align-items: center;
  }
}

.reviews-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.testimonial-col-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.author-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}

.author-name {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.author-title {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-col-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 560px;
  justify-self: center;
  text-align: center;
}

.quote-slider {
  position: relative;
  min-height: 140px;
  width: 100%;
}

.quote-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.quote-item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.testimonial-quote {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-dark);
  font-weight: 400;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.ctrl-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.ctrl-btn:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  transform: scale(1.05);
}

.review-counter {
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0 0.25rem;
}

.lets-talk-wrapper {
  margin-top: 6rem;
  text-align: center;
}

/* ================= 5. CENTERED NEWSLETTER & FOOTER ================= */
.footer-section {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newsletter-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 1.5rem;
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
  width: 100%;
  margin-bottom: 5rem;
  box-shadow: none;
}

@media (min-width: 768px) {
  .newsletter-card {
    flex-direction: row;
    text-align: left;
    align-items: center;
    justify-content: space-between;
  }
}

.newsletter-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.newsletter-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  max-width: 480px;
}

.email-input {
  flex: 1;
  padding: 0.85rem 1.4rem;
  border-radius: 9999px;
  border: 1.5px solid var(--border-subtle);
  background-color: #ffffff;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s ease;
}

.email-input:focus {
  border-color: var(--brand-blue);
}

.btn-subscribe {
  padding: 0.55rem 1.6rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  width: 100%;
  margin-bottom: 5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-columns { 
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
  }
}

.footer-col h5 {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), color 0.25s ease;
}

.footer-col a:hover {
  color: var(--brand-blue);
  transform: translateY(-2px);
}

/* Centered Bottom Footer Bar */
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2.25rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.825rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-bottom .divider { color: var(--border-subtle); }
.footer-bottom a:hover { color: var(--brand-blue); }

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title { font-size: 2.65rem; }
  .section-title, .serif-heading { font-size: 2rem; }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .header-actions { margin-left: auto; }
  .header-contact-btn { display: none; }
  .footer-columns { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form { flex-direction: column; }
  .email-input { width: 100%; min-width: 0; }
  .newsletter-card { padding: 2rem 1.5rem; }
}

/* ================= 🎨 ABOUT PAGE & QUICK LINKS STYLES ================= */
.about-hero-section {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.about-hero-title {
  font-size: 4.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.about-hero-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 48rem;
  margin: 0 auto 5rem;
  text-align: center;
}

/* Stats Row */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  text-align: left;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.85rem;
}

.stat-number {
  font-size: 3.75rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* Our Values Section */
.values-section {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.section-heading-large {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
  color: var(--text-dark);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem 2.5rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
}

.value-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.value-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Quick Links Section (Replacing Leadership) */
.quick-links-section {
  padding-top: 2rem;
  padding-bottom: 6rem;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

.quick-link-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border-subtle);
  background-color: #ffffff;
  transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.quick-link-pill:hover {
  border-color: var(--brand-blue);
  box-shadow: 0 10px 25px rgba(36, 101, 185, 0.08);
  transform: translateY(-3px);
}

.pill-left {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.pill-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.quick-link-pill:hover .pill-icon {
  background-color: var(--brand-blue);
  color: #ffffff;
}

.pill-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.pill-sub {
  font-size: 0.825rem;
  color: var(--text-muted);
}

.pill-arrow {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), color 0.3s ease;
}

.quick-link-pill:hover .pill-arrow {
  color: var(--brand-blue);
  transform: translate(3px, -3px);
}

/* ================= 🎨 WORK PAGE SPECIFIC STYLES ================= */
.work-hero-section {
  text-align: left;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.work-page-title {
  font-size: 3.25rem;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-top: 1rem;
}

.work-catalogue-section {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}

.work-catalogue-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  min-height: 140px;
  padding: 1.65rem 1.8rem;
  border-radius: 1rem;
  color: #ffffff;
  background: var(--brand-blue);
  box-shadow: 0 16px 38px rgba(36, 101, 185, 0.16);
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.35s ease;
}

.work-catalogue-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(36, 101, 185, 0.2);
}

.work-catalogue-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.work-catalogue-kicker {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.work-catalogue-card h2 {
  color: #ffffff;
  font-size: 2.15rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.work-catalogue-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.55;
}

.work-catalogue-action {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-blue);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: none;
  white-space: nowrap;
}

.work-catalogue-card:hover .work-catalogue-action {
  transform: translateY(-1px);
}

.work-grid-section {
  padding-top: 1rem;
  padding-bottom: 6rem;
}

.work-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 1.5rem;
}

@media (min-width: 600px) {
  .work-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .work-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Adapt Card Item for Page Grid Layout */
.work-card {
  width: 100% !important; /* Overrides fixed gallery width */
  border: 1px solid var(--border-subtle);
  background-color: #ffffff;
  box-shadow: none;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.work-card .card-brand {
  color: var(--text-dark-navy);
}

.work-card .card-sub {
  color: #5d718a;
}

.work-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-blue);
  box-shadow: 0 16px 36px rgba(36, 101, 185, 0.14);
}

@media (max-width: 699px) {
  .work-catalogue-card {
    align-items: flex-start;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 1.55rem;
  }

  .work-catalogue-card h2 {
    font-size: 2rem;
  }

  .work-catalogue-action {
    width: 100%;
  }
}

/* ================= 🎨 MASTER CASE STUDY PAGE STYLES ================= */
.cs-hero-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: left;
}

.cs-big-title {
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1;
}

.cs-hero-banner {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 680px;
  border-radius: 1.5rem;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.cs-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About & Metadata Card (Screenshot 1) */
.cs-about-section {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.cs-about-card {
  background-color: var(--about-bg, #eaf2fc);
  border-radius: 1.5rem;
  padding: 3.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 900px) {
  .cs-about-card {
    grid-template-columns: 1.1fr 1fr;
  }
}

.cs-about-heading {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark-navy);
  margin-bottom: 1.5rem;
}

.cs-about-p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--about-text, #33517a);
}

/* Right Column Metrics */
.cs-about-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.cs-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.cs-meta-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--about-label, #5d7ba3);
  display: block;
  margin-bottom: 0.35rem;
}

.cs-stat-num {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--text-dark-navy);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.cs-stat-sub {
  font-size: 0.825rem;
  color: var(--about-text, #4a6890);
  line-height: 1.4;
}

.cs-meta-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(36, 101, 185, 0.15);
}

.cs-meta-row p, .cs-meta-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark-navy);
}

.cs-meta-link {
  text-decoration: underline;
  transition: color 0.25s ease;
}

.cs-meta-link:hover {
  color: var(--brand-blue);
}

/* Asymmetric Masonry Image Gallery (Screenshot 2) */
.cs-gallery-section {
  padding-bottom: 6rem;
}

.cs-masonry-grid {
  column-count: 1;
  column-gap: 1.25rem;
}

@media (min-width: 600px) {
  .cs-masonry-grid { column-count: 2; }
}

@media (min-width: 992px) {
  .cs-masonry-grid { column-count: 3; }
}

.cs-masonry-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.cs-masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cs-masonry-item:hover img {
  transform: scale(1.04);
}

.cs-what-we-did-section {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.cs-section-heading {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 48rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.cs-section-p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 52rem;
}

.cs-showcase-section {
  padding-bottom: 6rem;
}

.cs-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .cs-showcase-grid { grid-template-columns: repeat(3, 1fr); }
}

.cs-showcase-item {
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.cs-showcase-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cs-showcase-item:hover img {
  transform: scale(1.04);
}

/* ================= 🎨 REVIEWS PAGE STYLES ================= */
.reviews-hero-section {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.reviews-page-title {
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.reviews-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.reviews-image-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .reviews-image-strip { grid-template-columns: repeat(4, 1fr); }
}

.reviews-image-item {
  aspect-ratio: 1 / 1;
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.reviews-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reviews-proof-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

@media (min-width: 700px) {
  .reviews-proof-strip { grid-template-columns: repeat(3, 1fr); }
}

.reviews-proof-item {
  aspect-ratio: 4 / 5;
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.reviews-proof-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  display: block;
}

.whatsapp-proof-strip .reviews-proof-item {
  aspect-ratio: 9 / 16;
}

.whatsapp-proof-strip .reviews-proof-item img {
  object-position: top center;
}

/* Reviews List Layout */
.reviews-list-section {
  padding-top: 2rem;
  padding-bottom: 6rem;
}

.review-group-block {
  margin-bottom: 5rem;
}

.review-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.25rem;
}

.btn-upwork {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
  background-color: #14a800;
  color: #ffffff;
  border: 2px solid #14a800;
  transition: background-color 0.35s cubic-bezier(0.19, 1, 0.22, 1),
              color 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-upwork:hover {
  background-color: #ffffff;
  color: #14a800;
}

.btn-upwork svg {
  flex-shrink: 0;
}

/* Reviewer Profile Card */
.reviewer-profile-card {
  background-color: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  padding: 1.1rem 1.25rem;
  margin-bottom: 2rem;
  width: fit-content;
  max-width: 100%;
}

.reviewer-profile-main {
  display: block;
}

.reviewer-profile-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
}

.reviewer-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.1rem;
}

.reviewer-title {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.reviewer-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dark);
}

.reviewer-rating .review-stars {
  font-size: 0.75rem;
}

.reviewer-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border-subtle);
}

.reviewer-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.reviewer-stat-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.reviewer-stat .stat-label {
  margin-bottom: 0;
  font-size: 0.68rem;
}

.reviewer-clients {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border-subtle);
}

.reviewer-clients-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.reviewer-clients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.client-chip {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
}


.review-group-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.reviews-cards-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .reviews-cards-stack {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review-card-item {
  background-color: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 1.5rem;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.review-card-item:hover {
  transform: translateY(-6px);
  border-color: rgba(36, 101, 185, 0.3);
  box-shadow: 0 16px 36px rgba(36, 101, 185, 0.08);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.review-stars {
  color: #f59e0b; /* Amber Gold Stars */
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-card-quote {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 2rem;
  flex: 1;
}

.review-author-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-author-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

.review-card-item:hover .review-author-img {
  filter: grayscale(0%);
}

.review-author-name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
}

.review-author-role {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* ================= 🎨 PRICING PAGE STYLES ================= */
.pricing-hero-section {
  padding-bottom: 1rem;
}

.pricing-hero-section .about-hero-description {
  margin-bottom: 2rem;
}

.pricing-cards-section {
  padding-top: 1rem;
  padding-bottom: 6rem;
}

.pricing-wrapper {
  padding-top: 2rem;
}

@media (min-width: 900px) {
  .pricing-wrapper {
    padding-left: 2rem;
  }

  .pricing-wrapper .cards-container {
    justify-content: safe flex-end;
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .pricing-wrapper {
    overflow: visible;
    cursor: default;
    user-select: auto;
    padding: 2rem 1.5rem 0;
  }

  .pricing-wrapper .cards-container {
    flex-direction: column;
    width: 100%;
  }

  .pricing-wrapper .pricing-card {
    width: 100%;
  }
}

.pricing-card {
  position: relative;
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 1.5rem;
  padding: 2.25rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
              border-color 0.35s ease, box-shadow 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-blue);
  box-shadow: 0 16px 36px rgba(36, 101, 185, 0.14);
}

.pricing-card.custom-card {
  background-color: var(--text-dark-navy);
  border-color: var(--text-dark-navy);
  color: #ffffff;
}

.pricing-card.custom-card:hover {
  border-color: var(--brand-blue);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--brand-blue);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-plan-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-plan-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.8em;
}

.custom-card .pricing-plan-desc {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-price {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-bottom: 1.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.custom-card .pricing-price {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-price .prefix {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-light);
}

.pricing-price .amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-dark);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.original-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: line-through;
}

.custom-card .pricing-price .prefix {
  color: rgba(255, 255, 255, 0.55);
}

.custom-card .pricing-price .amount {
  font-size: 2rem;
  color: #ffffff;
}

.pricing-cta {
  width: 100%;
  margin-top: 1.75rem;
  text-align: center;
}

.pricing-cta-top {
  margin-top: 1.25rem;
  margin-bottom: 1.75rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-top: 1.25rem;
}

.custom-card .pricing-features {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.pricing-features .check {
  color: var(--brand-blue);
  font-weight: 700;
  flex-shrink: 0;
}

.custom-card .pricing-features .check {
  color: #ffffff;
}

/* ================= 🎨 CONTACT PAGE STYLES ================= */
.contact-hero-section {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

@media (max-width: 768px) {
  .contact-hero-section .about-hero-title {
    font-size: 2.75rem;
  }
}

.contact-options-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-option-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
}

.contact-option-card.whatsapp-card {
  background-color: #f0fdf6;
  border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-card-horizontal {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
}

.whatsapp-card-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.whatsapp-card-info .contact-option-title {
  margin-bottom: 0.35rem;
}

.whatsapp-card-info .contact-option-desc {
  margin-bottom: 0;
}

.whatsapp-card-horizontal .btn-whatsapp {
  flex-shrink: 0;
  align-self: center;
  margin-top: 0;
}

@media (max-width: 720px) {
  .whatsapp-card-horizontal {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-card-horizontal .btn-whatsapp {
    align-self: stretch;
    justify-content: center;
  }
}

.contact-option-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}

.whatsapp-card-info .contact-option-icon {
  margin-bottom: 0;
}

.contact-option-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-option-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.btn-whatsapp {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.8rem;
  z-index: 1;
  isolation: isolate;
  background-color: #25d366;
  color: #ffffff;
  border: 2px solid #25d366;
  align-self: flex-start;
  margin-top: auto;
  transition: border-color 0.4s cubic-bezier(0.19, 1, 0.22, 1),
              color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  border-radius: 9999px;
  z-index: -1;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-whatsapp:hover::before {
  transform: translateX(0);
}

.btn-whatsapp:hover {
  color: #25d366;
  border-color: #25d366;
}

.contact-quick-details {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  text-align: center;
}

.contact-quick-details a, .contact-quick-details p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-quick-details a:hover {
  color: var(--brand-blue);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 0.85rem;
  border: 1.5px solid var(--border-subtle);
  background-color: #ffffff;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--brand-blue);
}

.contact-form .btn-primary {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ================= 🎨 SHOP PAGE STYLES ================= */
.shop-hero-section {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.shop-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.shop-section-header {
  margin-bottom: 2.5rem;
}

.shop-section-header .category-tag {
  margin-bottom: 0.75rem;
}

.landing-shop-section {
  padding-top: 1rem;
}

.landing-free-section {
  padding-top: 0.5rem;
}

.landing-shop-header {
  max-width: 850px;
}

.section-subcopy {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.premium-product-grid {
  align-items: stretch;
  gap: 2.5rem;
}

@media (min-width: 600px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .shop-grid { grid-template-columns: repeat(4, 1fr); }
  .shop-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .shop-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.shop-card {
  background-color: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 1.2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
              border-color 0.35s ease, box-shadow 0.35s ease;
}

.shop-card:hover {
  transform: translateY(-6px);
  border-color: rgba(36, 101, 185, 0.38);
  box-shadow: 0 28px 70px rgba(20, 42, 72, 0.14);
}

.shop-grid-3 .shop-card:hover {
  transform: none;
  border-color: var(--border-subtle);
  box-shadow: none;
}

.shop-card-featured {
  background:
    linear-gradient(180deg, rgba(246, 248, 251, 0.9), rgba(255, 255, 255, 0) 44%),
    #ffffff;
  border-color: rgba(36, 101, 185, 0.14);
  box-shadow: 0 18px 48px rgba(20, 42, 72, 0.08);
}

.shop-product-media {
  position: relative;
  aspect-ratio: 16 / 10.2;
  overflow: hidden;
  margin: 0.85rem 0.85rem 0;
  border: 1px solid rgba(18, 30, 45, 0.08);
  border-radius: 0.95rem;
  background: #f5f8fb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.shop-product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.shop-card-featured:hover .shop-product-media img {
  transform: scale(1.035);
}

.shop-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-blue), #17427a);
}

.shop-card-img svg {
  width: 52px;
  height: 52px;
  color: rgba(255, 255, 255, 0.92);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.shop-card:hover .shop-card-img svg {
  transform: scale(1.1);
}

.shop-grid-3 .shop-card:hover .shop-card-img svg {
  transform: none;
}

.shop-cover {
  aspect-ratio: 1.8 / 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.5rem 1.75rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(18, 30, 45, 0.08);
}

.shop-cover-paid {
  background: linear-gradient(135deg, #101010, var(--brand-blue));
}

.shop-cover-library {
  background:
    radial-gradient(circle at 82% 16%, rgba(64, 190, 123, 0.26), transparent 34%),
    linear-gradient(135deg, #10243f, #2465b9 58%, #f6f8fb);
}

.shop-cover-video {
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, #0d1727, #2f6fbc 54%, #67a4d8);
}

.shop-cover-ads {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 118, 83, 0.32), transparent 28%),
    linear-gradient(135deg, #101923, #245ca3 55%, #0e345f);
}

.shop-cover::before,
.shop-cover::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2rem;
  transform: rotate(18deg);
  pointer-events: none;
}

.shop-cover::before {
  top: -55%;
  right: -15%;
  width: 55%;
  height: 180%;
}

.shop-cover::after {
  top: -20%;
  right: 12%;
  width: 22%;
  height: 180%;
  background: rgba(255, 255, 255, 0.045);
}

.shop-cover-badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  background-color: #ffffff;
  color: var(--brand-blue);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.shop-cover-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shop-cover-title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: #ffffff;
}

.shop-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  background-color: rgba(36, 101, 185, 0.08);
  color: var(--brand-blue);
}

.shop-tag-free {
  background-color: rgba(26, 147, 73, 0.1);
  color: #1a9349;
}

.shop-card-body {
  padding: 1.45rem 1.55rem 1.55rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shop-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1.05rem;
}

.shop-price {
  color: var(--text-primary);
  font-size: 1.45rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.shop-price-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 0.65rem;
  min-width: 0;
}

.shop-old-price {
  color: #9ca8b7;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(156, 168, 183, 0.85);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.shop-card-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.shop-card-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.shop-best-for {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 1.2rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(36, 101, 185, 0.13);
  border-radius: 0.85rem;
  background: rgba(36, 101, 185, 0.045);
}

.shop-best-for span {
  color: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shop-best-for strong {
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
}

.shop-includes {
  display: grid;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.shop-includes li {
  position: relative;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
  padding-left: 1.45rem;
}

.shop-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.05rem;
  display: grid;
  place-items: center;
  width: 0.92rem;
  height: 0.92rem;
  border-radius: 999px;
  background: rgba(36, 101, 185, 0.12);
  color: var(--brand-blue);
  font-size: 0.58rem;
  font-weight: 900;
}

.shop-cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
  justify-content: center;
  min-height: 3rem;
}

.support-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

@media (max-width: 599px) {
  .shop-section .section-heading-large {
    font-size: 2.3rem;
    line-height: 1.12;
  }

  .shop-card-topline {
    align-items: flex-start;
  }

  .support-actions {
    grid-template-columns: 1fr;
  }
}
