/* ==========================================================================
   GRGC - Modern Steevlp-Inspired Design System
   Matches the attached reference image with inset hero, floating badge, 
   purpose cards, highlighted feature box, and dark tailored section.
   ========================================================================== */

/* Page Background */
body {
  background-color: #f6f7f9;
  color: #111827;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
}

/* ==========================================================================
   1. HERO SECTION (INSET ROUNDED CONTAINER)
   ========================================================================== */
.hero-wrapper {
  margin: 0 auto;
  position: relative;
}

.hero-rounded-card {
  position: relative;
  background-color: #0b1523;
  overflow: visible;
  /* to allow get in touch badge to overlap */
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(11, 21, 35, 0.25);
}

.hero-inner-bg {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  overflow: hidden;
  z-index: 1;
}

.hero-inner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.7) contrast(1.05);
}

.hero-inner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(11, 21, 35, 0.45) 0%,
      rgba(11, 21, 35, 0.75) 55%,
      rgba(11, 21, 35, 0.95) 100%);
}

/* Header inside Hero */
.hero-header {
  position: relative;
  z-index: 10;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero-logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.hero-logo-box img {
  height: 48px;
  width: auto;
}

/* Pill Navigation Bar */
.hero-nav-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 5px 8px;
  border-radius: 9999px;
  list-style: none;
}

.hero-nav-pill .nav-link,
.hero-nav-pill a {
  color: #334155;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 9999px;
  transition: all 0.2s ease;
  position: relative;
  display: inline-block;
}

.hero-nav-pill .nav-link::after {
  display: none !important;
}

.hero-nav-pill .nav-link:hover,
.hero-nav-pill a:hover {
  color: #0b1523;
  background: #ffffff;
}

.hero-nav-pill .nav-link.active,
.hero-nav-pill a.active {
  color: #ffffff !important;
  background: #143659 !important;
  box-shadow: 0 2px 8px rgba(11, 21, 35, 0.18);
}

/* Header Actions */
.hero-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-quote {
  background: #ffffff;
  color: #0b1523 !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-header-quote:hover {
  background: #f37021;
  color: #ffffff !important;
  /* transform: translateY(-2px); */
  box-shadow: 0 4px 15px rgba(243, 112, 33, 0.4);
}

.btn-search-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-search-icon:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Hero Center / Bottom Content */
.hero-main-content {
  position: relative;
  z-index: 5;
  padding: 80px 48px 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text-left {
  max-width: 680px;
}

.hero-version-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 9999px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-version-tag span.badge-num {
  color: #ff8533;
  font-weight: 700;
}

.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 5.8vw, 4.4rem);
  font-weight: 600;
  line-height: 1.08;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-subheading {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #cbd5e1;
  max-width: 580px;
  margin-bottom: 36px;
}

/* Wide Quote Bar */
.hero-quote-bar {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border-radius: 9999px;
  padding: 6px 8px 6px 26px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  width: 100%;
  max-width: 440px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-quote-bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.45);
}

.hero-quote-bar input {
  flex-grow: 1;
  border: none;
  outline: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0b1523;
  background: transparent;
}

.hero-quote-bar input::placeholder {
  color: #64748b;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.hero-quote-bar-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f37021;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-quote-bar-btn:hover {
  background: #e05d10;
  transform: scale(1.06);
}

/* Floating Preview Card (Bottom Right) */
.hero-preview-card {
  background: rgba(11, 21, 35, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 16px;
  max-width: 320px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.preview-thumb {
  width: 78px;
  height: 78px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
}

.preview-text {
  color: #ffffff;
}

.preview-number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ff8533;
  margin-bottom: 4px;
}

.preview-title {
  font-size: 0.84rem;
  line-height: 1.4;
  color: #cbd5e1;
}

/* ==========================================================================
   ROTATING "GET IN TOUCH" CIRCULAR BADGE (OVERLAPPING BOTTOM OF HERO)
   ========================================================================== */
.get-in-touch-badge {
  position: absolute;
  bottom: -46px;
  right: 64px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #0b1523;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.get-in-touch-badge:hover {
  transform: scale(1.08);
}

.rotating-text-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spinSlow 18s linear infinite;
}

.get-in-touch-badge:hover .rotating-text-svg {
  animation-play-state: paused;
}

.badge-center-arrow {
  color: #ff8533;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.get-in-touch-badge:hover .badge-center-arrow {
  transform: translateY(3px);
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   2. STATS DIVIDER ROW (4 COLUMNS WITH VERTICAL DIVIDERS)
   ========================================================================== */
.stats-divider-section {
  padding: 72px 0 48px;
}

.stats-divider-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-col {
  padding: 12px 36px;
  position: relative;
}

.stat-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: #e2e8f0;
}

.stat-col-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: #0b1523;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-col-label {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
}

/* ==========================================================================
   3. "WHAT WE BUILD, WE BUILD WITH PURPOSE" (3 VERTICAL PHOTO CARDS)
   ========================================================================== */
.purpose-section {
  padding: 30px 0 96px;
}

.purpose-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.purpose-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: #0b1523;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.purpose-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
}

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

.purpose-card {
  position: relative;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(11, 21, 35, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.purpose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(11, 21, 35, 0.16);
}

.purpose-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  z-index: 1;
}

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

.purpose-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(11, 21, 35, 0.15) 0%,
      rgba(11, 21, 35, 0.3) 40%,
      rgba(11, 21, 35, 0.85) 100%);
  z-index: 2;
}

.purpose-top-tag {
  position: relative;
  z-index: 3;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 9999px;
  letter-spacing: 0.5px;
}

.purpose-glass-caption {
  position: relative;
  z-index: 3;
  background: rgba(11, 21, 35, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 20px 24px;
  color: #ffffff;
}

.purpose-caption-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 6px;
}

.purpose-caption-desc {
  font-size: 0.86rem;
  color: #cbd5e1;
  line-height: 1.5;
}

/* ==========================================================================
   4. "COMPREHENSIVE ELECTRICAL / INDUSTRIAL SERVICES NEED" (6 CARDS + 1 DARK)
   ========================================================================== */
.features-section {
  padding: 80px 0 96px;
  background: #f1f3f7;
}

.features-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}

.features-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 600;
  color: #0b1523;
  margin-bottom: 12px;
}

.features-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
}

.features-grid-steevlp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Center Highlighted Dark Box */
.feature-box.box-highlight {
  background: #0b1523;
  color: #ffffff;
  border-color: #0b1523;
  box-shadow: 0 14px 36px rgba(11, 21, 35, 0.25);
}

.feature-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(243, 112, 33, 0.12);
  color: #f37021;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-box.box-highlight .feature-icon-circle {
  background: #f37021;
  color: #ffffff;
}

.feature-icon-circle svg {
  width: 24px;
  height: 24px;
}

.feature-box-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #0b1523;
  margin-bottom: 8px;
}

.feature-box.box-highlight .feature-box-title {
  color: #ffffff;
}

.feature-box-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
}

.feature-box.box-highlight .feature-box-desc {
  color: #94a3b8;
}

/* ==========================================================================
   5. DARK TAILORED SERVICES SECTION (ACCORDION + RIGHT TEAM SHOWCASE)
   ========================================================================== */
.tailored-section {
  padding: 32px 20px 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.tailored-dark-card {
  background: #0b1523;
  border-radius: 32px;
  padding: 64px 56px;
  color: #ffffff;
}

.tailored-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.tailored-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.tailored-desc {
  color: #94a3b8;
  font-size: 1.02rem;
  line-height: 1.6;
}

.tailored-body-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

/* Accordion list */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item-steevlp {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 20px;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 12px 0;
  text-align: left;
}

.accordion-trigger-left {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.acc-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ff8533;
}

.acc-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
}

.acc-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.25s ease;
}

.accordion-content {
  padding: 8px 0 8px 36px;
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* Right Showcase */
.tailored-showcase-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
}

.tailored-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tailored-floating-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  left: 24px;
  background: rgba(11, 21, 35, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 20px;
}

.tailored-floating-badge h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 6px;
}

.tailored-floating-badge p {
  font-size: 0.84rem;
  color: #cbd5e1;
  line-height: 1.45;
}

/* ==========================================================================
   6. TESTIMONIALS & TRUST SECTION
   ========================================================================== */
.testimonials-section {
  padding: 80px 0 96px;
}

.testimonials-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.avatars-cluster {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.avatar-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.25s ease;
}

.avatar-circle:hover {
  transform: scale(1.12);
}

.avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quote-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid #e2e8f0;
}

.testimonial-quote-text {
  font-size: 1.15rem;
  color: #1e293b;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #f37021;
}

.testimonial-role {
  font-size: 0.85rem;
  color: #64748b;
}

/* ==========================================================================
   7. FOOTER WITH MASSIVE WATERMARK
   ========================================================================== */
.footer-steevlp {
  background: #0b1523;
  color: #ffffff;
  padding: 80px 80px 30px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.footer-top-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 64px;
}

.footer-title-large {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
  max-width: 480px;
}

.footer-links-row {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ff8533;
  margin-bottom: 18px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: #94a3b8;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: #ffffff;
}

/* Massive Brand Watermark at Bottom */
.footer-watermark-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.5rem, 9.5vw, 8.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-align: center;
  color: rgba(255, 255, 255, 0.08);
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  user-select: none;
  pointer-events: none;
}

/* Responsive adjustments for reference layout */
@media (max-width: 1024px) {
  .hero-nav-pill {
    display: none;
    /* Collapses to mobile drawer on smaller screens */
  }

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

  .stat-col:nth-child(2)::after {
    display: none;
  }

  .purpose-cards-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .features-grid-steevlp {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .tailored-body-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SUB-PAGE HERO BANNER (MODERN STEEVLP INSET BANNER)
   ========================================================================== */
.page-hero-wrapper {
  margin: 0 auto;
}

.page-hero-card {
  position: relative;
  background-color: #0b1523;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 56px;
  box-shadow: 0 16px 40px rgba(11, 21, 35, 0.2);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.38) contrast(1.1);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(11, 21, 35, 0.25) 0%,
      rgba(11, 21, 35, 0.88) 100%);
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 5;
  max-width: 840px;
}

.breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  padding: 6px 18px;
  border-radius: 9999px;
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.breadcrumb-pill a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-pill a:hover {
  color: #ff8533;
}

.breadcrumb-pill span.sep {
  color: #94a3b8;
}

.breadcrumb-pill span.cur {
  color: #ff8533;
  font-weight: 700;
}

.page-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.page-hero-ar {
  font-family: 'Cairo', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ff8533;
  margin-bottom: 12px;
}

.page-hero-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-hero-card {
    padding: 36px 24px;
    min-height: 300px;
  }
}