@font-face {
  font-family: 'Aeonik';
  src: url('fonts/AEONIK-REGULAR.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Aeonik';
  src: url('fonts/AEONIK-MEDIUM.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Aeonik';
  src: url('fonts/AEONIK-BOLD.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Aeonik';
  src: url('fonts/AeonikBlack.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

:root {
  /* CW Lagos Color Palette */
  --cw-bg-white: #FFFFFF;
  --cw-bg-offwhite: #F8F9FA;
  --cw-bg-subtle: #F1F3F5;
  --cw-navy: #1B2537;
  --cw-navy-dark: #0F172A;
  --cw-navy-button: #1E293B;
  
  --cw-text-dark: #1E293B;
  --cw-text-body: #475569;
  --cw-text-muted: #64748B;
  --cw-text-light: #94A3B8;

  --cw-gold: #C5A059;
  --cw-gold-bright: #D4AF37;
  --cw-yellow-badge: #FEF08A;
  --cw-yellow-badge-text: #854D0E;
  
  --cw-green-whatsapp: #25D366;
  --cw-border-light: #E2E8F0;

  /* Typography */
  --font-cw-sans: 'Aeonik', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-cw-serif: 'Playfair Display', Georgia, serif;

  /* Radius & Transitions */
  --radius-card: 20px;
  --radius-sm: 8px;
  --radius-pill: 50px;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-cw-sans);
  background-color: var(--cw-bg-white);
  color: var(--cw-text-dark);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* --------------------------------------------------------------------------
   Header / Navbar
   -------------------------------------------------------------------------- */
.cw-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  background: transparent;
}

.cw-navbar .navbar-brand img {
  height: 48px;
  object-fit: contain;
}

.cw-nav-link {
  color: #FFFFFF !important;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem !important;
  transition: opacity var(--transition-smooth);
}

.cw-nav-link:hover {
  opacity: 0.8;
}

.cw-btn-signup {
  background-color: var(--cw-navy-button);
  color: #FFFFFF !important;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-pill);
  border: none;
  transition: background-color var(--transition-smooth);
}

.cw-btn-signup:hover {
  background-color: #0F172A;
}

/* --------------------------------------------------------------------------
   SCREENSHOT 1: Hero Section (Exact Match)
   -------------------------------------------------------------------------- */
.hero-cw-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0B0F19;
  color: #FFFFFF;
}

.hero-cw-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.hero-cw-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.4) 0%, rgba(11, 15, 25, 0.75) 100%);
  z-index: 2;
}

.hero-cw-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.hero-cw-text-box {
  max-width: 860px;
}

.hero-cw-title {
  font-family: var(--font-cw-sans);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
}

.hero-cw-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  margin-bottom: 2rem;
  font-weight: 400;
  max-width: 680px;
}

/* Simplified Filter Bar in Hero */
.hero-filter-bar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 8px 10px 8px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 840px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.6);
  margin-bottom: 0.85rem;
}

.hero-filter-field {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 105px;
}

.hero-filter-keyword {
  flex: 1.4;
  min-width: 135px;
}

.hero-filter-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cw-text-muted);
  margin-bottom: 2px;
}

.hero-filter-input,
.hero-filter-select {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cw-text-dark);
  padding: 2px 0;
  cursor: pointer;
}

.hero-filter-input {
  cursor: text;
}

.hero-filter-input::placeholder {
  color: #94A3B8;
  font-weight: 400;
}

.hero-filter-divider {
  width: 1px;
  height: 32px;
  background-color: var(--cw-border-light);
  flex-shrink: 0;
}

.hero-filter-btn-col {
  flex-shrink: 0;
}

.hero-filter-btn {
  background-color: var(--cw-gold);
  color: #0F172A;
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-filter-btn:hover {
  background-color: #B38E46;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200, 155, 60, 0.4);
}

@media (max-width: 767px) {
  .hero-filter-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 14px;
    gap: 10px;
  }

  .hero-filter-divider {
    display: none;
  }

  .hero-filter-field {
    border-bottom: 1px solid var(--cw-border-light);
    padding-bottom: 6px;
  }

  .hero-filter-btn {
    width: 100%;
    justify-content: center;
    padding: 11px;
  }
}

.hero-cw-caption {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Right Side Awards & Badges Grid (Bottom Right of Hero) */
.hero-cw-awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 320px;
  margin-left: auto;
}

.award-wreath-card {
  text-align: center;
  color: #FFFFFF;
  padding: 8px;
}

.award-wreath-year {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-cw-sans);
}

.award-wreath-text {
  font-size: 0.6rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}

.award-seal-box {
  background: rgba(255, 255, 255, 0.95);
  color: var(--cw-text-dark);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.award-seal-title {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.award-seal-winner {
  font-size: 0.85rem;
  font-weight: 800;
  color: #000000;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   SCREENSHOT 2: Brand Story & Metrics Section (Exact Match)
   -------------------------------------------------------------------------- */
.story-cw-section {
  padding: 7rem 0;
  background-color: var(--cw-bg-white);
}

.story-cw-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 991px) {
  .story-cw-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.blueprint-vector-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blueprint-vector-box svg, .blueprint-vector-box img {
  max-width: 100%;
  height: auto;
  opacity: 0.85;
}

.story-cw-heading {
  font-family: var(--font-cw-sans);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: var(--cw-text-dark);
  margin-bottom: 1.5rem;
}

.story-cw-desc {
  font-size: 0.98rem;
  color: var(--cw-text-body);
  line-height: 1.65;
  margin-bottom: 3rem;
}

.story-cw-metrics-row {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--cw-border-light);
  padding-top: 2rem;
}

.story-metric-num {
  font-family: var(--font-cw-sans);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--cw-navy);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.story-metric-label {
  font-size: 0.85rem;
  color: var(--cw-text-muted);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   SCREENSHOT 3: Explore Properties by Categories (Marquee Effect)
   -------------------------------------------------------------------------- */
.marquee-cw-section {
  padding: 6rem 0;
  background-color: var(--cw-bg-offwhite);
  overflow: hidden;
}

.section-indicator-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cw-text-dark);
  margin-bottom: 0.5rem;
}

.section-indicator-line::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--cw-navy);
}

.marquee-heading {
  font-family: var(--font-cw-sans);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

/* Continuous Marquee Track */
.marquee-track-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

.marquee-track-wrapper::before,
.marquee-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.marquee-track-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--cw-bg-offwhite) 0%, transparent 100%);
}

.marquee-track-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--cw-bg-offwhite) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: continuousMarquee 35s linear infinite;
}

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

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

.marquee-card {
  width: 310px;
  height: 420px;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-smooth);
}

.marquee-card:hover {
  transform: translateY(-8px);
}

.marquee-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.marquee-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(15, 23, 42, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #FFFFFF;
}

.marquee-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #FFFFFF;
}

.marquee-card-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   SCREENSHOT 4: Explore Luxury Properties in Lagos (Exact Match)
   -------------------------------------------------------------------------- */
.curated-cw-section {
  padding: 7rem 0;
  background-color: var(--cw-bg-white);
}

.curated-top-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

@media (max-width: 991px) {
  .curated-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.curated-heading {
  font-family: var(--font-cw-sans);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.curated-subtitle {
  font-size: 0.95rem;
  color: var(--cw-text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.curated-metrics-row {
  display: flex;
  gap: 2.5rem;
}

.curated-metric-val {
  font-family: var(--font-cw-sans);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--cw-navy);
  line-height: 1;
  margin-bottom: 4px;
}

.curated-metric-lbl {
  font-size: 0.8rem;
  color: var(--cw-text-muted);
}

/* Right Side Featured Hero Card */
.curated-hero-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow-md);
}

.curated-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.curated-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(15, 23, 42, 0.85) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.8rem;
  color: #FFFFFF;
}

.curated-hero-location {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2px;
}

.curated-hero-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
}

.curated-open-btn {
  background: #FFFFFF;
  color: var(--cw-text-dark);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform var(--transition-smooth);
}

.curated-open-btn:hover {
  transform: scale(1.05);
}

/* Detailed Filter Bar Container (Screenshot 4 Style) */
.filter-bar-card {
  background-color: var(--cw-bg-offwhite);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid var(--cw-border-light);
}

.filter-controls-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 1.25rem;
}

.filter-field-col {
  flex: 1;
  min-width: 140px;
}

.filter-field-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cw-text-muted);
  margin-bottom: 4px;
}

.filter-control-select, .filter-control-input {
  width: 100%;
  padding: 10px 12px;
  background: #FFFFFF;
  border: 1px solid var(--cw-border-light);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--cw-text-dark);
  outline: none;
}

.btn-filter-reset {
  background-color: var(--cw-navy-button);
  color: #FFFFFF;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.filter-checkboxes-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--cw-text-body);
}

.filter-checkbox-item {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* 4-Column Property Cards Grid (Screenshot 4) */
.props-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1199px) {
  .props-grid-4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .props-grid-4col {
    grid-template-columns: 1fr;
  }
}

.prop-card-cw {
  border-radius: 16px;
  overflow: hidden;
  background: var(--cw-bg-white);
  border: 1px solid var(--cw-border-light);
  transition: all var(--transition-smooth);
}

.prop-card-cw:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.prop-thumb-container {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.prop-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.prop-card-cw:hover .prop-thumb-img {
  transform: scale(1.05);
}

.prop-badges-floating {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}

.badge-pill-sale {
  background-color: var(--cw-yellow-badge);
  color: var(--cw-yellow-badge-text);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-pill-type {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--cw-navy);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.prop-location-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* --------------------------------------------------------------------------
   Floating WhatsApp Button (Exact Match)
   -------------------------------------------------------------------------- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background-color: var(--cw-green-whatsapp);
  color: #FFFFFF;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform var(--transition-smooth);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer-cw {
  background-color: var(--cw-navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cw a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-cw a:hover {
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   Scroll & Reveal Animations
   -------------------------------------------------------------------------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   Mobile View Enhancements & Navbar Fixes
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .cw-navbar {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 1rem 0;
  }

  .cw-navbar .navbar-collapse {
    background: #0F172A !important;
    padding: 1.5rem;
    border-radius: 20px;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  }

  .cw-navbar .navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .cw-nav-link {
    font-size: 1rem !important;
    padding: 0.5rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cw-navbar .navbar-toggler {
    padding: 0.5rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }

  .cw-navbar .navbar-toggler-icon {
    filter: invert(1) brightness(2);
  }

  .cw-btn-signup {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* Custom Card & Image Container Fixes */
.art-details-card-img-wrapper {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  display: flex;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.art-details-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.badge-yellow-tag {
  background-color: #FFC107;
  color: #000000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-check-yellow {
  background-color: #FFC107;
  color: #000000;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  width: 100%;
  display: block;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-check-yellow:hover {
  background-color: #E0A800;
  color: #000000;
  transform: translateY(-2px);
}

.features-horizontal-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0;
  margin: 1.25rem 0;
  list-style: none;
}

.features-horizontal-row li {
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  line-height: 1.2;
}

.features-horizontal-row li img,
.features-horizontal-row li i {
  display: block;
  margin: 0 auto 6px auto;
}

.floating-call-icon {
  color: #0066FF !important;
}


@media (max-width: 768px) {
  html {
    font-size: 13.5px !important;
  }

  .hero-cw-title {
    font-size: 2.2rem !important;
    line-height: 1.25 !important;
  }

  .story-cw-heading, .curated-heading {
    font-size: 1.75rem !important;
  }

  .hero-cw-email-box {
    flex-direction: column;
    border-radius: 20px;
    padding: 8px;
    gap: 8px;
  }

  .hero-cw-email-btn {
    width: 100%;
    text-align: center;
    border-radius: 14px;
    padding: 12px;
  }
}


