/* ============================================
   CRMXO — Global Stylesheet
   ============================================ */

/* --- Fonts --- */
/* Fonts loaded via <link> in HTML <head> for faster parallel loading */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #FFFFFF;
  --dark-blue: #1E3A5F;
  --teal: #0891B2;
  --green: #059669;
  --green-hover: #047857;
  --slate-bg: #F5F9FE;
  --body-text: #475569;
  --light-border: #E2E8F0;
  --logo-gold: #F0B040;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--dark-blue);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* --- Layout Utilities --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--slate-bg);
}

.section__eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 12px;
}

.section__heading {
  margin-bottom: 20px;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--body-text);
  max-width: 640px;
  margin-bottom: 48px;
}

.section__subtitle--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn--primary {
  background: #EF9F27;
  color: var(--white);
}

.btn--primary:hover {
  background: #D97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 159, 39, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--dark-blue);
  border: 2px solid var(--dark-blue);
}

.btn--outline:hover {
  background: var(--dark-blue);
  color: var(--white);
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
}

.btn--teal:hover {
  background: #0e7490;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8, 145, 178, 0.3);
}

.btn--large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #EF9F27;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: box-shadow 0.3s;
}

.nav--scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo img {
  height: 40px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  padding: 8px 16px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}

.nav__link--active {
  background: #ffffff;
  color: #EF9F27;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.nav__link--active:hover {
  background: #ffffff;
  color: #EF9F27;
}

.nav__cta {
  margin-left: 8px;
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  transition: background 0.2s;
}

.nav__dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.nav__dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.nav__dropdown:hover .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.nav__dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--dark-blue);
  transition: background 0.2s;
}

.nav__dropdown-item:hover {
  background: var(--slate-bg);
  color: var(--teal);
}

/* Mobile nav toggle */
.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  transition: all 0.3s;
}

/* --- Hero --- */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  max-width: 580px;
}

.hero__headline {
  margin-bottom: 24px;
}

.hero__headline .highlight {
  color: var(--teal);
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--body-text);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
}

.hero__graphic {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #E0F2FE 0%, #CCFBF1 50%, #D1FAE5 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero__graphic-inner {
  text-align: center;
  z-index: 1;
}

.hero__graphic-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.hero__graphic-icon svg {
  width: 40px;
  height: 40px;
  color: var(--teal);
}

.hero__graphic::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(8, 145, 178, 0.08);
  top: -60px;
  right: -60px;
}

.hero__graphic::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.08);
  bottom: -40px;
  left: -40px;
}

/* Floating cards on hero graphic */
.hero__float-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
}

.hero__float-card:nth-child(2) { animation-delay: -1s; }
.hero__float-card:nth-child(3) { animation-delay: -2s; }

.hero__float-card--top {
  top: 30px;
  right: -20px;
}

.hero__float-card--mid {
  bottom: 120px;
  left: -20px;
}

.hero__float-card--bottom {
  bottom: 20px;
  right: 20px;
}

.hero__float-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__float-icon--teal { background: #E0F7FA; color: var(--teal); }
.hero__float-icon--green { background: #D1FAE5; color: var(--green); }
.hero__float-icon--blue { background: #DBEAFE; color: var(--dark-blue); }

.hero__float-icon svg {
  width: 18px;
  height: 18px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --- Stats Bar --- */
.stats {
  padding: 48px 0;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}

.stats__label {
  font-size: 0.92rem;
  color: var(--body-text);
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon--teal { background: #E0F7FA; color: var(--teal); }
.service-card__icon--green { background: #D1FAE5; color: var(--green); }
.service-card__icon--blue { background: #DBEAFE; color: #3B82F6; }
.service-card__icon--indigo { background: #E0E7FF; color: #6366F1; }
.service-card__icon--amber { background: #FEF3C7; color: #D97706; }
.service-card__icon--rose { background: #FFE4E6; color: #E11D48; }

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__title {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--body-text);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.service-card:hover .service-card__link svg {
  transform: translateX(4px);
}

/* --- Process Steps --- */
.process {
  counter-reset: process-step;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--green));
  opacity: 0.2;
  z-index: 0;
}

.process__step {
  text-align: center;
  position: relative;
  z-index: 1;
  counter-increment: process-step;
}

.process__step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(8, 145, 178, 0.25);
}

.process__step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.process__step-desc {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.6;
}

/* --- Testimonials --- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #FBBF24;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--body-text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dark-blue);
  font-size: 0.95rem;
}

.testimonial-card__role {
  font-size: 0.82rem;
  color: var(--body-text);
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #0F2847 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 36px;
}

/* --- Footer --- */
.footer {
  background: #EF9F27;
  color: rgba(255, 255, 255, 0.9);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
  color: #ffffff;
}

.footer__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__link {
  display: block;
  padding: 5px 0;
  font-size: 0.9rem;
  color: #ffffff;
  transition: opacity 0.2s;
}

.footer__link:hover {
  opacity: 0.75;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #ffffff;
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials a {
  color: #ffffff;
  transition: opacity 0.2s;
}

.footer__socials a:hover {
  opacity: 0.75;
}

.footer__socials svg {
  width: 20px;
  height: 20px;
}

/* --- Service Page Hero --- */
.page-hero {
  padding: 140px 0 80px;
  background: var(--slate-bg);
  text-align: center;
}

.page-hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 16px;
}

.page-hero__title {
  max-width: 780px;
  margin: 0 auto 20px;
}

.page-hero__subtitle {
  font-size: 1.15rem;
  color: var(--body-text);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* --- Service Detail Content --- */
.service-detail__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 16px;
}

.feature-item__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: #E0F7FA;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item__icon svg {
  width: 22px;
  height: 22px;
}

.feature-item h4 {
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* --- Booking / Contact Form --- */
.booking {
  max-width: 640px;
  margin: 0 auto;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark-blue);
  margin-bottom: 6px;
}

.form__input,
.form__textarea,
.form__select {
  padding: 12px 16px;
  border: 1px solid var(--light-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-blue);
  background: var(--white);
  transition: border-color 0.2s;
  width: 100%;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.calendar-placeholder {
  background: var(--slate-bg);
  border: 2px dashed var(--light-border);
  border-radius: 12px;
  padding: 48px 24px;
  text-align: center;
  margin-top: 24px;
}

.calendar-placeholder p {
  color: var(--body-text);
  font-size: 0.95rem;
}

.calendar-placeholder code {
  display: inline-block;
  background: var(--white);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  margin-top: 8px;
  color: var(--teal);
}

/* --- About Page --- */
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  padding: 32px 24px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--light-border);
  text-align: center;
}

.value-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card__icon svg {
  width: 28px;
  height: 28px;
}

.value-card h3 {
  margin-bottom: 10px;
}

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__visual {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .process__steps::before {
    display: none;
  }

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

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

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--light-border);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }

  .nav__links--open {
    display: flex;
  }

  .nav__links--open .nav__link,
  .nav__links--open .nav__dropdown-toggle {
    color: var(--dark-blue);
  }

  .nav__links--open .nav__link:hover {
    background: var(--slate-bg);
  }

  .nav__links--open .nav__link--active {
    background: #EF9F27;
    color: #ffffff;
  }

  .nav__burger {
    display: block;
  }

  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 16px;
  }

  .nav__cta {
    margin-left: 0;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    text-align: center;
    justify-content: center;
  }

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

  .process__steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .service-detail__features {
    grid-template-columns: 1fr;
  }

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

  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }
}

/* --- Video Testimonials Carousel --- */
.video-carousel {
  position: relative;
  overflow: hidden;
}

.video-carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 20px;
}

.video-carousel__track::-webkit-scrollbar {
  display: none;
}

.video-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.video-card__thumb {
  position: relative;
  width: 100%;
  height: 180px;
  background: var(--slate-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-card__thumb video,
.video-card__thumb iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 2;
}

.video-card__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card__play svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
  margin-left: 3px;
}

.video-card__info {
  padding: 16px 18px;
}

.video-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark-blue);
  margin-bottom: 4px;
}

.video-card__role {
  font-size: 0.85rem;
  color: var(--body-text);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--light-border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.carousel-btn:hover {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
  color: var(--white);
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

/* --- Fulfillment Spotlight --- */
.fulfillment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.fulfillment-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fulfillment-point {
  display: flex;
  gap: 14px;
  align-items: start;
}

.fulfillment-point__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fulfillment-point__icon svg {
  width: 22px;
  height: 22px;
}

.fulfillment-point h4 {
  margin-bottom: 4px;
}

.fulfillment-point p {
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.7;
}

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.blog-card__thumb {
  width: 100%;
  height: 180px;
  background: var(--slate-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__content {
  padding: 20px;
}

.blog-card__tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  margin-bottom: 8px;
}

.blog-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark-blue);
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--body-text);
  margin-bottom: 12px;
  line-height: 1.6;
}

.blog-card__meta {
  font-size: 0.8rem;
  color: var(--body-text);
  opacity: 0.7;
}

/* --- Blog Listing Page --- */
.blog-hero {
  padding: 140px 0 60px;
  background: var(--slate-bg);
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.blog-featured__thumb {
  width: 100%;
  height: 300px;
  background: var(--slate-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--light-border);
}

.blog-featured__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 768px) {
  .fulfillment-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .blog-grid,
  .blog-list {
    grid-template-columns: 1fr;
  }

  .blog-featured {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .video-card {
    flex: 0 0 260px;
  }
}

/* --- Sliding Reviews Section --- */
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.reviews-track--left {
  animation: slideReviewsLeft 100s linear infinite;
}

.reviews-track--right {
  animation: slideReviewsLeft 100s linear infinite;
}

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

@keyframes slideReviewsLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  flex: 0 0 300px;
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 14px;
  padding: 22px;
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-card__stars svg {
  width: 15px;
  height: 15px;
}

.review-card__text {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark-blue);
}

.review-card__role {
  font-size: 0.78rem;
  color: var(--body-text);
}

.review-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

.review-avatar--1 { background: #E6F1FB url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='27' rx='11' ry='12' fill='%23DEB088'/%3E%3Cpath d='M20 25Q19 10 32 10Q45 10 44 25Q44 19 39 16Q35 13 32 15Q29 13 25 16Q20 19 20 25Z' fill='%233E2A1E'/%3E%3Crect x='16' y='46' width='32' height='20' rx='10' fill='%23185FA5'/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--2 { background: #EAF3DE url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='27' rx='11' ry='12' fill='%23F0C8A0'/%3E%3Cpath d='M19 24Q17 9 32 9Q47 9 45 24Q46 18 41 15Q37 12 32 14Q27 12 23 15Q18 18 19 24Z' fill='%238B6914'/%3E%3Crect x='16' y='46' width='32' height='20' rx='10' fill='%23639922'/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--3 { background: #FBEAF0 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='27' rx='11' ry='12' fill='%23C68642'/%3E%3Ccircle cx='22' cy='16' r='5' fill='%231A1A1A'/%3E%3Ccircle cx='28' cy='11' r='6' fill='%231A1A1A'/%3E%3Ccircle cx='36' cy='11' r='6' fill='%231A1A1A'/%3E%3Ccircle cx='42' cy='16' r='5' fill='%231A1A1A'/%3E%3Crect x='16' y='46' width='32' height='20' rx='10' fill='%23D4537E'/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--4 { background: #FAEEDA url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='27' rx='11' ry='12' fill='%238D5524'/%3E%3Crect x='16' y='46' width='32' height='20' rx='10' fill='%23854F0B'/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--5 { background: #EEEDFE url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='27' rx='11' ry='12' fill='%23F5D6B8'/%3E%3Cpath d='M19 24Q17 9 32 9Q47 9 45 24Q46 30 44 38L40 38Q41 28 40 22Q37 13 32 14Q27 13 24 22Q23 28 24 38L20 38Q18 30 19 24Z' fill='%23C48040'/%3E%3Crect x='16' y='46' width='32' height='20' rx='10' fill='%23534AB7'/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--6 { background: #FAECE7 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='27' rx='11' ry='12' fill='%23E8B88A'/%3E%3Cpath d='M20 25Q19 10 32 10Q45 10 44 25Q44 19 39 16Q35 13 32 15Q29 13 25 16Q20 19 20 25Z' fill='%232C1A0E'/%3E%3Crect x='16' y='46' width='32' height='20' rx='10' fill='%23993C1D'/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--7 { background: #E1F5EE url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='27' rx='11' ry='12' fill='%23C68642'/%3E%3Cpath d='M15 30Q13 8 32 8Q51 8 49 30L49 40L43 40Q44 26 42 20Q38 12 32 12Q26 12 22 20Q20 26 21 40L15 40Z' fill='%231A1A1A'/%3E%3Crect x='16' y='46' width='32' height='20' rx='10' fill='%230F6E56'/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--8 { background: #E6F1FB url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='27' rx='11' ry='12' fill='%23DEB088'/%3E%3Cpath d='M21 22Q21 11 32 11Q43 11 43 22' fill='none' stroke='%233E2A1E' stroke-width='4' stroke-linecap='round'/%3E%3Crect x='16' y='46' width='32' height='20' rx='10' fill='%23185FA5'/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--9 { background: #FBEAF0 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='27' rx='11' ry='12' fill='%23F5D6B8'/%3E%3Cpath d='M19 26Q18 9 32 9Q46 9 45 26Q45 32 43 36L41 36Q42 28 41 22Q38 14 32 15Q26 14 23 22Q22 28 23 36L21 36Q19 32 19 26Z' fill='%235C3D2E'/%3E%3Crect x='16' y='46' width='32' height='20' rx='10' fill='%23D4537E'/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--10 { background: #FAEEDA url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='27' rx='11' ry='12' fill='%238D5524'/%3E%3Ccircle cx='24' cy='17' r='4.5' fill='%230F0F0F'/%3E%3Ccircle cx='30' cy='12' r='5' fill='%230F0F0F'/%3E%3Ccircle cx='36' cy='12' r='5' fill='%230F0F0F'/%3E%3Ccircle cx='41' cy='18' r='4.5' fill='%230F0F0F'/%3E%3Crect x='16' y='46' width='32' height='20' rx='10' fill='%23854F0B'/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--11 { background: #EAF3DE url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='27' rx='11' ry='12' fill='%23E8C4A0'/%3E%3Cpath d='M20 24Q19 10 32 10Q45 10 44 24Q44 18 39 15Q35 12 32 14Q29 12 25 15Q20 18 20 24Z' fill='%238B6914'/%3E%3Cpath d='M43 20Q52 22 50 34Q49 38 45 36Q48 28 43 20Z' fill='%238B6914'/%3E%3Crect x='16' y='46' width='32' height='20' rx='10' fill='%233B6D11'/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--12 { background: #EEEDFE url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='18' r='17' fill='%231A1A1A'/%3E%3Cellipse cx='32' cy='27' rx='11' ry='12' fill='%23C68642'/%3E%3Crect x='16' y='46' width='32' height='20' rx='10' fill='%23534AB7'/%3E%3C/svg%3E") no-repeat center/cover; }

@media (max-width: 900px) {
  .review-card { flex: 0 0 260px; }
}

@media (max-width: 480px) {
  .review-card { flex: 0 0 220px; padding: 16px; }
  .review-card__text { font-size: 0.8rem; }
}

@media (max-width: 900px) {
  section > .container > div[style*="grid-template-columns: 340px 1fr"] {
    grid-template-columns: 1fr !important;
  }
  section > .container > div[style*="grid-template-columns: 340px 1fr"] > div[style*="position: sticky"] {
    position: relative !important;
    top: 0 !important;
    max-width: 280px;
    margin: 0 auto;
  }
}
.review-avatar--13 { background: #FAEEDA url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2064%2064%27%3E%3Cellipse%20cx%3D%2732%27%20cy%3D%2727%27%20rx%3D%2711%27%20ry%3D%2712%27%20fill%3D%27%23F0C8A0%27/%3E%3Cpath%20d%3D%27M19%2025Q18%2010%2032%2010Q46%2010%2045%2025Q45%2030%2043%2033L41%2033Q42%2026%2041%2021Q38%2014%2032%2015Q26%2014%2023%2021Q22%2026%2023%2033L21%2033Q19%2030%2019%2025Z%27%20fill%3D%27%235C3D2E%27/%3E%3Crect%20x%3D%2716%27%20y%3D%2746%27%20width%3D%2732%27%20height%3D%2720%27%20rx%3D%2710%27%20fill%3D%27%23854F0B%27/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--14 { background: #E6F1FB url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2064%2064%27%3E%3Cellipse%20cx%3D%2732%27%20cy%3D%2727%27%20rx%3D%2711%27%20ry%3D%2712%27%20fill%3D%27%238D5524%27/%3E%3Ccircle%20cx%3D%2732%27%20cy%3D%2719%27%20r%3D%2715%27%20fill%3D%27%231A1A1A%27/%3E%3Cellipse%20cx%3D%2732%27%20cy%3D%2727%27%20rx%3D%2711%27%20ry%3D%2712%27%20fill%3D%27%238D5524%27/%3E%3Crect%20x%3D%2716%27%20y%3D%2746%27%20width%3D%2732%27%20height%3D%2720%27%20rx%3D%2710%27%20fill%3D%27%23185FA5%27/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--15 { background: #EAF3DE url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2064%2064%27%3E%3Cellipse%20cx%3D%2732%27%20cy%3D%2727%27%20rx%3D%2711%27%20ry%3D%2712%27%20fill%3D%27%23DEB088%27/%3E%3Cpath%20d%3D%27M21%2024Q20%209%2033%209Q45%2010%2044%2024Q44%2018%2038%2015Q34%2012%2031%2014Q28%2012%2024%2015Q21%2018%2021%2024Z%27%20fill%3D%27%233E2A1E%27/%3E%3Crect%20x%3D%2716%27%20y%3D%2746%27%20width%3D%2732%27%20height%3D%2720%27%20rx%3D%2710%27%20fill%3D%27%233B6D11%27/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--16 { background: #FBEAF0 url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2064%2064%27%3E%3Cellipse%20cx%3D%2732%27%20cy%3D%2727%27%20rx%3D%2711%27%20ry%3D%2712%27%20fill%3D%27%23F5D6B8%27/%3E%3Ccircle%20cx%3D%2723%27%20cy%3D%2717%27%20r%3D%275%27%20fill%3D%27%23C48040%27/%3E%3Ccircle%20cx%3D%2729%27%20cy%3D%2711%27%20r%3D%275.5%27%20fill%3D%27%23C48040%27/%3E%3Ccircle%20cx%3D%2736%27%20cy%3D%2711%27%20r%3D%275.5%27%20fill%3D%27%23C48040%27/%3E%3Ccircle%20cx%3D%2742%27%20cy%3D%2717%27%20r%3D%275%27%20fill%3D%27%23C48040%27/%3E%3Crect%20x%3D%2716%27%20y%3D%2746%27%20width%3D%2732%27%20height%3D%2720%27%20rx%3D%2710%27%20fill%3D%27%23D4537E%27/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--17 { background: #FAECE7 url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2064%2064%27%3E%3Cellipse%20cx%3D%2732%27%20cy%3D%2727%27%20rx%3D%2711%27%20ry%3D%2712%27%20fill%3D%27%23C68642%27/%3E%3Cpath%20d%3D%27M20%2022Q20%2010%2032%2010Q44%2010%2044%2022%27%20fill%3D%27none%27%20stroke%3D%27%230F0F0F%27%20stroke-width%3D%274.5%27%20stroke-linecap%3D%27round%27/%3E%3Crect%20x%3D%2716%27%20y%3D%2746%27%20width%3D%2732%27%20height%3D%2720%27%20rx%3D%2710%27%20fill%3D%27%23993C1D%27/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--18 { background: #E1F5EE url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2064%2064%27%3E%3Cellipse%20cx%3D%2732%27%20cy%3D%2727%27%20rx%3D%2711%27%20ry%3D%2712%27%20fill%3D%27%23E8C4A0%27/%3E%3Cpath%20d%3D%27M18%2024Q16%208%2032%208Q48%208%2046%2024Q47%2032%2045%2040L41%2040Q42%2029%2041%2022Q37%2012%2032%2013Q27%2012%2023%2022Q22%2029%2023%2040L19%2040Q17%2032%2018%2024Z%27%20fill%3D%27%238B6914%27/%3E%3Crect%20x%3D%2716%27%20y%3D%2746%27%20width%3D%2732%27%20height%3D%2720%27%20rx%3D%2710%27%20fill%3D%27%230F6E56%27/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--19 { background: #EEEDFE url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2064%2064%27%3E%3Cellipse%20cx%3D%2732%27%20cy%3D%2727%27%20rx%3D%2711%27%20ry%3D%2712%27%20fill%3D%27%238D5524%27/%3E%3Crect%20x%3D%2716%27%20y%3D%2746%27%20width%3D%2732%27%20height%3D%2720%27%20rx%3D%2710%27%20fill%3D%27%23534AB7%27/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--20 { background: #E6F1FB url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2064%2064%27%3E%3Cellipse%20cx%3D%2732%27%20cy%3D%2727%27%20rx%3D%2711%27%20ry%3D%2712%27%20fill%3D%27%23F0C8A0%27/%3E%3Cpath%20d%3D%27M20%2024Q19%2010%2032%2010Q45%2010%2044%2024Q44%2018%2039%2015Q35%2012%2032%2014Q29%2012%2025%2015Q20%2018%2020%2024Z%27%20fill%3D%27%235C3D2E%27/%3E%3Cpath%20d%3D%27M20%2020Q11%2022%2013%2034Q14%2038%2018%2036Q15%2028%2020%2020Z%27%20fill%3D%27%235C3D2E%27/%3E%3Crect%20x%3D%2716%27%20y%3D%2746%27%20width%3D%2732%27%20height%3D%2720%27%20rx%3D%2710%27%20fill%3D%27%23185FA5%27/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--21 { background: #FAEEDA url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2064%2064%27%3E%3Cellipse%20cx%3D%2732%27%20cy%3D%2727%27%20rx%3D%2711%27%20ry%3D%2712%27%20fill%3D%27%23DEB088%27/%3E%3Cpath%20d%3D%27M14%2031Q12%208%2032%208Q52%208%2050%2031L50%2041L44%2041Q45%2027%2043%2021Q39%2012%2032%2012Q25%2012%2021%2021Q19%2027%2020%2041L14%2041Z%27%20fill%3D%27%232C1A0E%27/%3E%3Crect%20x%3D%2716%27%20y%3D%2746%27%20width%3D%2732%27%20height%3D%2720%27%20rx%3D%2710%27%20fill%3D%27%23854F0B%27/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--22 { background: #EAF3DE url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2064%2064%27%3E%3Cellipse%20cx%3D%2732%27%20cy%3D%2727%27%20rx%3D%2711%27%20ry%3D%2712%27%20fill%3D%27%23C68642%27/%3E%3Ccircle%20cx%3D%2722%27%20cy%3D%2716%27%20r%3D%275.5%27%20fill%3D%27%230F0F0F%27/%3E%3Ccircle%20cx%3D%2728%27%20cy%3D%2710%27%20r%3D%276.5%27%20fill%3D%27%230F0F0F%27/%3E%3Ccircle%20cx%3D%2736%27%20cy%3D%2710%27%20r%3D%276.5%27%20fill%3D%27%230F0F0F%27/%3E%3Ccircle%20cx%3D%2742%27%20cy%3D%2716%27%20r%3D%275.5%27%20fill%3D%27%230F0F0F%27/%3E%3Ccircle%20cx%3D%2719%27%20cy%3D%2723%27%20r%3D%275%27%20fill%3D%27%230F0F0F%27/%3E%3Ccircle%20cx%3D%2745%27%20cy%3D%2723%27%20r%3D%275%27%20fill%3D%27%230F0F0F%27/%3E%3Crect%20x%3D%2716%27%20y%3D%2746%27%20width%3D%2732%27%20height%3D%2720%27%20rx%3D%2710%27%20fill%3D%27%233B6D11%27/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--23 { background: #FBEAF0 url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2064%2064%27%3E%3Cellipse%20cx%3D%2732%27%20cy%3D%2727%27%20rx%3D%2711%27%20ry%3D%2712%27%20fill%3D%27%23E8C4A0%27/%3E%3Cpath%20d%3D%27M20%2023Q20%209%2032%209Q44%209%2044%2023Q44%2017%2039%2014Q35%2011%2032%2013Q29%2011%2025%2014Q20%2017%2020%2023Z%27%20fill%3D%27%238B6914%27/%3E%3Crect%20x%3D%2716%27%20y%3D%2746%27%20width%3D%2732%27%20height%3D%2720%27%20rx%3D%2710%27%20fill%3D%27%23D4537E%27/%3E%3C/svg%3E") no-repeat center/cover; }
.review-avatar--24 { background: #FAECE7 url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2064%2064%27%3E%3Cellipse%20cx%3D%2732%27%20cy%3D%2727%27%20rx%3D%2711%27%20ry%3D%2712%27%20fill%3D%27%23F5D6B8%27/%3E%3Cpath%20d%3D%27M18%2026Q17%209%2032%209Q47%209%2046%2026Q46%2034%2044%2040L40%2040Q41%2030%2040%2023Q37%2013%2032%2014Q27%2013%2024%2023Q23%2030%2024%2040L20%2040Q18%2034%2018%2026Z%27%20fill%3D%27%233E2A1E%27/%3E%3Crect%20x%3D%2716%27%20y%3D%2746%27%20width%3D%2732%27%20height%3D%2720%27%20rx%3D%2710%27%20fill%3D%27%23993C1D%27/%3E%3C/svg%3E") no-repeat center/cover; }
@media (max-width: 900px) {
  section[style*="background: #0F2847"] > .container > div[style*="grid-template-columns: 1.1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* --- Hero Photo with Service Badges --- */
.hero-photo-wrap {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.hero-photo {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: 999px;
  padding: 9px 18px 9px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-blue);
  white-space: nowrap;
  z-index: 2;
}

.hero-badge svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.hero-badge--1 { top: 5%; left: -12%; }
.hero-badge--2 { top: 19%; right: -16%; }
.hero-badge--3 { top: 39%; left: -18%; }
.hero-badge--4 { top: 57%; right: -18%; }
.hero-badge--5 { top: 75%; left: -10%; }
.hero-badge--6 { bottom: -3%; right: 3%; }
.hero-badge--7 { top: -5%; right: 10%; }

@media (max-width: 1024px) {
  .hero-photo-wrap {
    max-width: 340px;
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 7px 14px 7px 10px;
  }
  .hero-badge svg { width: 14px; height: 14px; }
}

@media (max-width: 640px) {
  .hero-photo-wrap {
    max-width: 260px;
    margin: 40px auto 0;
  }
  .hero-badge {
    font-size: 0.62rem;
    padding: 5px 10px 5px 8px;
    gap: 5px;
  }
  .hero-badge svg { width: 11px; height: 11px; }
  .hero-badge--1 { left: -6%; }
  .hero-badge--2 { right: -8%; }
  .hero-badge--3 { left: -10%; }
  .hero-badge--4 { right: -10%; }
  .hero-badge--5 { left: -4%; }
  .hero-badge--7 { right: 4%; }
}

/* --- Services Grid v2 (5x2, no icons, yellow hover) --- */
.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.service-card-v2 {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 20px 18px;
  transition: all 0.25s ease;
}

.service-card-v2:hover,
.service-card-v2.active {
  background: #EF9F27;
  border-color: #EF9F27;
}

.service-card-v2__title-box {
  display: inline-block;
  background: #E0F7FA;
  border-radius: 8px;
  padding: 6px 12px;
  margin-bottom: 12px;
  transition: background 0.25s ease;
}

.service-card-v2:hover .service-card-v2__title-box,
.service-card-v2.active .service-card-v2__title-box {
  background: #ffffff;
}

.service-card-v2__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-blue);
  transition: color 0.25s ease;
}

.service-card-v2:hover .service-card-v2__title,
.service-card-v2.active .service-card-v2__title {
  color: #EF9F27;
}

.service-card-v2__desc {
  font-size: 0.82rem;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 14px;
  transition: color 0.25s ease;
}

.service-card-v2:hover .service-card-v2__desc,
.service-card-v2.active .service-card-v2__desc {
  color: #ffffff;
}

.service-card-v2__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.25s ease;
}

.service-card-v2:hover .service-card-v2__link,
.service-card-v2.active .service-card-v2__link {
  color: #ffffff;
}

.service-card-v2__link svg {
  width: 13px;
  height: 13px;
}

@media (max-width: 1100px) {
  .services-grid-v2 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .services-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-grid-v2 {
    grid-template-columns: 1fr;
  }
}

/* --- Global mobile safety net --- */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

img, video, svg {
  max-width: 100%;
}

@media (max-width: 640px) {
  h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  h2 { font-size: clamp(1.4rem, 6vw, 1.9rem); }

  .section {
    padding: 44px 0;
  }

  .container {
    padding: 0 18px;
  }

  .hero {
    padding: 110px 0 50px;
  }

  .service-card-v2 {
    padding: 16px;
  }

  .service-card-v2__desc {
    font-size: 0.78rem;
  }
}
