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

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* --- 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: #F1F5F9;
  --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: var(--green);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
}

.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: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-border);
  transition: box-shadow 0.3s;
}

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

.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.95rem;
  font-weight: 500;
  color: var(--dark-blue);
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s;
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--teal);
}

.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.95rem;
  font-weight: 500;
  color: var(--dark-blue);
  padding: 4px 0;
}

.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: var(--dark-blue);
  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: var(--dark-blue);
  color: rgba(255, 255, 255, 0.65);
  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;
}

.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: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--white);
}

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

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

.footer__socials a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer__socials a:hover {
  color: var(--white);
}

.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__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;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 2;
}

.video-card__play:hover {
  transform: 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;
  }
}
