  /* ── Call Now Bar ────────────────────────────────────────────── */

  .cew-call-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 12px 24px;
  }

  .cew-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 100px;
    background-color: #58CBE6;
    color: #0D0D0D;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
  }

  .cew-call-btn:hover {
    background-color: #fff;
    color: #0D0D0D;
  }

  .cew-call-btn i,
  .cew-call-btn svg {
    font-size: 13px;
  }

  /* ── Custom Hero Banner ────────────────────────────────────── */

.cew-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 200px 24px 100px;
}

/* dark overlay */
.cew-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,9,14,0.85) 0%, rgba(7,9,14,0.55) 60%, rgba(7,9,14,0.2) 100%);
  z-index: 0;
}

/* ── 2-column grid ───────────────────────────────────────────── */
.cew-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  flex: 1;
}

  /* ── LEFT column ─────────────────────────────────────────────── */
  .cew-col-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Badge */
  .cew-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    color:  #FFF;
    font-size: 11px;
    font-weight:  700;
    letter-spacing:  1.1px;
    text-transform: uppercase;
    width: fit-content;
    border-radius: 100px;
    border: var(--stroke-weight-1, 1px) solid var(--color-white-14, rgba(255, 255, 255, 0.14));
    background: var(--color-white-8, rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(6px);
    font-family: 'Instrument Sans';
  }

  .cew-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #58CBE6;
    flex-shrink: 0;
  }

  /* Heading */
  .cew-heading {
    color: #FFF;
    font-family: 'Manrope';
    color: #FFF;
    font-size: 64px;
    font-weight: var(--font-weight-800, 800);
    line-height: 68px;
    letter-spacing: var(--letter-spacing--3_08, -3.08px);
  }

  .cew-highlight {
    color: #58CBE6;
  }

  .cew-heading-break {
    display: block;
  }

  /* Description */
  .cew-description {
    color:  rgba(255, 255, 255, 0.60);
    font-family: 'Manrope';
    font-size: 16px;
    font-weight: 500;
    line-height: 24px; 
    letter-spacing: var(--letter-spacing--0_16, -0.16px);
  }

  /* Buttons */
  .cew-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
  }

  .cew-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.30);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .cew-btn-arrow {
    font-size: 16px;
    line-height: 1;
  }

  .cew-btn-primary {
    color: #fff;
    background: var(--spw-01, linear-gradient(90deg, #58CBE6 0%, #317180 100%));
    box-shadow: 0 4px 24px 0 rgba(0, 85, 255, 0.28);
  }

  .cew-btn-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
  }

  .cew-btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
  }

  .cew-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
  }

  /* ── RIGHT column ────────────────────────────────────────────── */
  .cew-col-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  /* ── Right Column Image ─────────────────────────────────────── */
  .cew-right-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }


/* ── Call Now Bar (inside hero, new row) ────────────────────── */
.cew-call-now-bar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
}

  .cew-call-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 100px;
    background-color: #58CBE6;
    color: #0D0D0D;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
  }

  .cew-call-now-btn:hover {
    background-color: #fff;
    color: #0D0D0D;
  }

  .cew-call-now-btn i,
  .cew-call-now-btn svg {
    font-size: 13px;
  }

/* Mobile buttons duplicate — hidden on desktop */
.cew-buttons-mobile {
  display: none;
}

/* ── Responsive ──────────────────────────────────────────────── */

/* Laptop — 1280px and below */
@media (max-width: 1280px) {
  .cew-heading {
    font-size: 54px;
    line-height: 58px;
    letter-spacing: -2px;
  }

}

/* Tablet landscape — 1024px and below */
@media (max-width: 1024px) {
  .cew-heading {
    font-size: 44px;
    line-height: 48px;
    letter-spacing: -1.5px;
  }

  .cew-description {
    font-size: 14px;
  }

}

/* Tablet portrait — 768px and below */
@media (max-width: 768px) {
  .cew-heading {
    font-size: 40px;
    line-height: 44px;
    letter-spacing: -1.2px;
  }

  .cew-description {
    max-width: 100% !important;
    font-size: 14px;
  }

  .cew-col-right {
    width: 100%;
    padding-bottom: 20px;
  }

}

/* Mobile — 480px and below */
@media (max-width: 480px) {
  .cew-hero {
    padding: 150px 24px 100px;
  }

  .cew-inner{
    gap: 0px;
  }
  .cew-col-right {
    padding-bottom: 0px;
  }
  .cew-badge {
    font-size: 9px;
    padding: 5px 11px;
    letter-spacing: 0.8px;
  }

  .cew-heading {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -1px;
  }

  .cew-col-left {
    gap: 18px;
  }

  .cew-description {
    font-size: 13px;
    line-height: 1.6;
  }

  /* Hide desktop buttons from left col, show mobile duplicate */
  .cew-col-left .cew-buttons {
    display: none;
  }

  .cew-buttons-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }

  .cew-btn {
    padding: 11px 20px;
    font-size: 13px;
  }
}
