/* =========================================
   BYALL AUTOMATION â€” PREMIUM GLOBAL STYLE
   v2.0 â€” Production Grade
   ========================================= */

/* =========================================
   CSS CUSTOM PROPERTIES
   ========================================= */

:root {
  /* Brand Colors */
  --blue:          #1a9fe0;
  --blue-mid:      #1a6fc4;
  --blue-deep:     #0d52a0;
  --blue-glow:     rgba(26, 159, 224, 0.22);
  --gold:          #f5c518;
  --gold-muted:    rgba(245, 197, 24, 0.18);
  --gold-glow:     rgba(245, 197, 24, 0.32);

  /* Backgrounds */
  --bg-base:       #020b1a;
  --bg-surface:    #0a1628;
  --bg-elevated:   #0d1b3e;
  --bg-glass:      rgba(10, 22, 40, 0.82);

  /* Text */
  --text-primary:   #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.80);
  --text-muted:     rgba(255, 255, 255, 0.48);
  --text-dark:      #0f172a;
  --text-mid:       #475569;
  --text-soft:      #64748b;

  /* Borders */
  --border-subtle:  rgba(255, 255, 255, 0.09);
  --border-mid:     rgba(255, 255, 255, 0.15);
  --border-blue:    rgba(26, 159, 224, 0.28);
  --border-gold:    rgba(245, 197, 24, 0.28);

  /* Shadows */
  --shadow-sm:      0 4px 16px rgba(0, 0, 0, 0.16);
  --shadow-md:      0 12px 36px rgba(0, 0, 0, 0.24);
  --shadow-lg:      0 24px 60px rgba(0, 0, 0, 0.36);
  --shadow-blue:    0 16px 48px rgba(26, 159, 224, 0.28);
  --shadow-gold:    0 8px 28px rgba(245, 197, 24, 0.26);

  /* Typography */
  --font-display:   'Plus Jakarta Sans', sans-serif;
  --font-body:      'Inter', sans-serif;

  /* Radii */
  --r-sm:  12px;
  --r-md:  18px;
  --r-lg:  24px;
  --r-xl:  32px;

  /* Transitions */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:  0.18s;
  --t-mid:   0.30s;
  --t-slow:  0.50s;
}

/* =========================================
   RESET & BASE
   ========================================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

/* Subtle noise grain overlay for depth */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 99998;
  mix-blend-mode: overlay;
}

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

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

section,
nav,
footer {
  width: 100%;
}

/* =========================================
   SELECTION
   ========================================= */

::selection {
  background: rgba(12, 163, 227, 0.28);
  color: #ffffff;
}

/* =========================================
   SCROLLBAR
   ========================================= */

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue), var(--gold));
  border-radius: 99px;
}

/* =========================================
   NAVBAR
   ========================================= */

.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 36px);
  max-width: 1240px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  transition: background var(--t-mid) var(--ease-out),
              box-shadow var(--t-mid) var(--ease-out);
}

.navbar.scrolled {
  background: rgba(2, 6, 23, 0.94);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(12,163,227,0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 46px;
  position: relative;
}

/* =========================================
   LOGO
   ========================================= */

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  text-decoration: none;
  transition: opacity var(--t-mid) var(--ease-out);
  gap: 2px;
}

.logo:hover { opacity: 0.85; }

.logo span {
  color: var(--blue);
  margin-left: 1px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 10px;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px var(--gold-muted));
}


/* =========================================
   INFO CARDS
   ========================================= */

.info-card {
  background: #ffffff;
  padding: 34px;
  border-radius: var(--r-xl);
  box-shadow: 0 2px 12px rgba(15,23,42,.06), 0 8px 32px rgba(15,23,42,.05);
  border: 1px solid rgba(12,163,227,.14);
  transition: transform var(--t-mid) var(--ease-spring),
              box-shadow var(--t-mid) var(--ease-out),
              border-color var(--t-mid);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease-out);
}

.info-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 52px rgba(15,23,42,.13), var(--shadow-blue);
  border-color: rgba(12,163,227,.28);
}

.info-card:hover::before { opacity: 1; }

.info-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(12,163,227,.12), rgba(12,163,227,.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--blue);
  margin-bottom: 22px;
  border: 1px solid rgba(12,163,227,.18);
  transition: transform var(--t-mid) var(--ease-spring);
}

.info-card:hover .info-icon { transform: scale(1.1) rotate(3deg); }

.info-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.info-card p {
  font-size: 15px;
  line-height: 1.72;
  color: var(--text-soft);
}
/* =========================================
   NAV LINKS
   ========================================= */

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  position: relative;
  padding: 10px 15px;
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  transition: color var(--t-fast) var(--ease-out),
              background var(--t-fast) var(--ease-out);
  letter-spacing: 0.01em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
  transition: transform var(--t-mid) var(--ease-spring);
}

.nav-links a:hover {
  background: rgba(12, 163, 227, 0.10);
  color: #ffffff;
}

.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* =========================================
   NAV BUTTON
   ========================================= */

.nav-btn {
  position: relative;
  overflow: hidden;
  padding: 12px 20px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform var(--t-mid) var(--ease-spring),
              box-shadow var(--t-mid) var(--ease-out),
              background var(--t-mid) var(--ease-out);
  box-shadow: var(--shadow-blue);
}

.nav-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), #d4920f);
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease-out);
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--bg-base);
}

.nav-btn:hover::before {
  opacity: 1;
}

.nav-btn span {
  position: relative;
  z-index: 1;
}

/* =========================================
   MOBILE TOGGLE
   ========================================= */

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 15px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.mobile-toggle:hover {
  background: rgba(12, 163, 227, 0.12);
  border-color: var(--border-blue);
}





/* =========================================
   BUTTONS
   ========================================= */

.btn-primary,
.btn-secondary {
  position: relative;
  overflow: hidden;
  padding: 17px 34px;
  border-radius: var(--r-md);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  transition: transform var(--t-mid) var(--ease-spring),
              box-shadow var(--t-mid) var(--ease-out);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-blue);
  border: 1px solid rgba(12,163,227,.35);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #14b8f5, var(--blue-mid));
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease-out);
}

.btn-primary span,
.btn-primary i { position: relative; z-index: 1; }

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(12,163,227,.38);
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--text-primary);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.095);
  border-color: rgba(255,255,255,.25);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}




/* =========================================
   SECTIONS
   ========================================= */

 .white-section{
  background:
  linear-gradient(
  180deg,
  #f7fafc 0%,
  #edf3f9 100%);
}
  

.light-section {
  padding: 96px 24px;
  background: #f8fafc;
  color: var(--text-dark);
}

.section-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1.05;
}

.section-text {
  font-size: 17.5px;
  line-height: 1.78;
  color: #4b6280;
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
  font-weight: 300;
}

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

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

/* =========================================
   TWO COLUMN
   ========================================= */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.two-col h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.06;
  margin-bottom: 22px;
  color: var(--text-dark);
  letter-spacing: -1.2px;
}

.two-col p {
  font-size: 17px;
  line-height: 1.78;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-weight: 300;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  gap: 12px;
  font-size: 15.5px;
  color: #334155;
  line-height: 1.62;
  align-items: flex-start;
}

.check-list i {
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}

.image-rounded {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(15,23,42,.16),
              0 0 0 1px var(--border-blue);
  position: relative;
}

.image-rounded::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  pointer-events: none;
}

.image-rounded img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.image-rounded:hover img { transform: scale(1.03); }

/* =========================================
   CTA
   ========================================= */

.final-cta {
  padding: 96px 24px;
  text-align: center;
  background: linear-gradient(145deg, #071428 0%, #0c2440 45%, #0a3255 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(12,163,227,.18), transparent 50%),
    radial-gradient(ellipse at 75% 30%, rgba(232,173,23,.14), transparent 45%);
  pointer-events: none;
}

.final-cta h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  letter-spacing: -0.5px;
}

.final-cta p {
  font-size: 19px;
  line-height: 1.72;
  color: rgba(255,255,255,.72);
  max-width: 740px;
  margin: 0 auto 40px;
  font-weight: 300;
  position: relative;
}

/* =========================================
   FOOTER
   ========================================= */

.byall-footer {
  width: 100%;
  background:
    radial-gradient(ellipse at 88% 8%, rgba(12,163,227,.15), transparent 52%),
    radial-gradient(ellipse at 12% 92%, rgba(232,173,23,.08), transparent 44%),
    linear-gradient(145deg, #020617, #03111d 55%, #071428);
  color: #ffffff;
  padding: 84px 20px 44px;
  position: relative;
}

.byall-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.byall-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 70px;
  align-items: start;
}

.byall-brand h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  line-height: 1.22;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.5px;
}

.byall-brand span {
  font-size: 15px;
  color: rgba(12,163,227,.65);
}

.byall-brand p {
  color: #c8d5e4;
  font-size: 15px;
  line-height: 1.72;
  max-width: 620px;
  font-weight: 300;
}

.byall-services {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.byall-services span {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  color: #c0cfdf;
  white-space: nowrap;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.byall-services span:hover {
  background: rgba(12,163,227,.10);
  border-color: rgba(12,163,227,.28);
}

.byall-soft-cta {
  margin-top: 26px;
  color: #c0cfdf;
  font-size: 15px;
  font-weight: 300;
}

.byall-soft-cta a {
  color: var(--gold);
  font-weight: 700;
  transition: color var(--t-fast);
}

.byall-soft-cta a:hover { color: #f0c030; }

.byall-social {
  margin-top: 30px;
  display: flex;
  gap: 12px;
}

.byall-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(232,173,23,.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(232,173,23,.32);
  font-size: 15px;
  transition: background var(--t-mid),
              color var(--t-mid),
              border-color var(--t-mid),
              transform var(--t-mid) var(--ease-spring);
}

.byall-social a:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  transform: translateY(-4px);
}

.byall-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(12,163,227,.28);
  padding: 32px;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 56px rgba(0,0,0,.22),
              inset 0 1px 0 rgba(255,255,255,.06);
}

.byall-card span {
  display: block;
  font-size: 11.5px;
  color: #8a9ab0;
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.byall-card a {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--text-primary);
  transition: color var(--t-fast);
}

.byall-card a:hover { color: var(--gold); }

.byall-bottom {
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  font-size: 12.5px;
  color: #7a8fa8;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
/* =========================================
   ANIMATION KEYFRAMES
   ========================================= */

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(12, 163, 227, 0); }
  50%       { box-shadow: 0 0 24px 8px rgba(12, 163, 227, 0.18); }
}
/* =========================================
   RESPONSIVE â€” TABLET
   ========================================= */

@media (max-width:900px){

  .navbar{
    top:10px;
    width:calc(100% - 20px);
    border-radius:18px;
    padding:8px 14px;
  }

  .nav-inner{
    min-height:44px;
  }

  .logo{
    font-size:16px;
  }

  .mobile-toggle{
    display:flex;
  }

  .nav-btn{
    display:none;
  }

  .nav-links{
    display:none;
  }

  .nav-links.active{
    display:flex;
    flex-direction:column;
  }

  .grid-4,
  .grid-3,
  .two-col,
  .location-grid,
  .byall-top{
    grid-template-columns:1fr;
  }

}

/* =========================================
   RESPONSIVE â€” MOBILE
   ========================================= */

@media (max-width:768px){

  html,
  body{
    overflow-x:hidden;
  }

  .light-section,
  .white-section,
  .blue-section,
  .final-cta{
    padding:60px 18px;
  }

  .section-title{
    font-size:28px;
    line-height:1.12;
    margin-bottom:14px;
  }

  .section-text{
    font-size:15px;
    line-height:1.65;
    margin-bottom:34px;
  }

  .grid-4,
  .grid-3{
    grid-template-columns:1fr;
    gap:16px;
  }

  .info-card{
    padding:26px 22px;
    border-radius:20px;
  }

  .service-card{
    border-radius:20px;
  }

  .service-content{
    padding:24px 22px;
  }

  .service-image{
    height:200px;
  }

  .location-card{
    padding:24px 20px;
    border-radius:18px;
  }

  .location-card i{
    font-size:28px;
  }

  .location-card h3{
    font-size:20px;
  }

  .partner-card{
    flex:0 0 110px;
    height:68px;
    padding:10px;
  }

  .byall-footer{
    padding:56px 18px 36px;
  }

  .byall-top,
  .byall-brand,
  .byall-card{
    text-align:center;
  }

  .byall-social,
  .byall-services{
    justify-content:center;
  }

  .byall-bottom{
    flex-direction:column;
    gap:8px;
    text-align:center;
  }

}
/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width:480px){

  .section-title{
    font-size:24px;
  }

  .section-text{
    font-size:14px;
  }

  .light-section,
  .white-section,
  .blue-section,
  .final-cta{
    padding:52px 16px;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;
    max-width:320px;
    justify-content:center;
  }

}

/* =========================================
   ICON COLORS
   ========================================= */

.info-icon i,
.location-card i,
.infra-icon i,
.low-icon i{
  color:#1a9fe0;
}

.info-card:hover .info-icon i,
.location-card:hover i{
  color:#f5c518;
}


/* =========================================
   MOBILE MENU â€” GLOBAL
   ========================================= */

@media (max-width:900px){

  .mobile-toggle{
    display:flex !important;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    cursor:pointer;
    z-index:99999;
  }

  .mobile-toggle i{
    font-size:22px;
    color:#ffffff;
  }

  .nav-links,
  .main-menu{
    display:none;
  }

  .nav-links.active,
  .main-menu.active{
    display:flex !important;
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    right:0;
    flex-direction:column;
    background:rgba(2,11,26,.98);
    border:1px solid rgba(255,255,255,.12);
    border-radius:18px;
    padding:12px;
    gap:6px;
    z-index:99999;
    box-shadow:var(--shadow-lg);
  }

  .nav-links.active a,
  .main-menu.active a{
    width:100%;
    text-align:center;
    padding:13px;
  }

  .nav-btn,
  .nav-cta{
    display:none !important;
  }
}

/* =========================================
   HERO TITLE FIX - CLEAN VERSION
   ========================================= */

.infrastructure-hero,
.low-hero,
.projects-hero,
.page-hero{
  position:relative;
  min-height:520px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  padding:130px 24px 80px;
}

.infrastructure-hero .hero-content,
.low-hero .hero-content,
.projects-hero .hero-content,
.page-hero .hero-content{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

.hero-title,
.infrastructure-hero h1,
.low-hero h1,
.projects-hero h1,
.page-hero h1{
  font-family:var(--font-display);
  font-size:clamp(30px, 4.6vw, 58px);
  font-weight:800;
  line-height:1.05;
  color:#ffffff;
  margin:0 auto 18px;
  letter-spacing:-1px;
  text-align:center;
  max-width:1100px;

  word-break:normal;
  overflow-wrap:normal;
  hyphens:none;
}

.hero-title span,
.hero-title .gradient,
.hero-title .white,
.hero-title .gold{
  display:inline-block;
  white-space:nowrap;
}

.infrastructure-hero p,
.low-hero p,
.projects-hero-sub,
.page-hero p,
.hero-desc{
  max-width:720px;
  margin:0 auto;
  font-size:18px;
  line-height:1.7;
  color:rgba(255,255,255,.82);
}

/* Mobile */

@media (max-width:768px){

  .infrastructure-hero,
  .low-hero,
  .projects-hero,
  .page-hero{
    min-height:auto;
    padding:115px 18px 65px;
  }

  .hero-title,
  .infrastructure-hero h1,
  .low-hero h1,
  .projects-hero h1,
  .page-hero h1{
    font-size:26px !important;
    line-height:1.12 !important;
    letter-spacing:-0.4px !important;
    max-width:100% !important;
    text-align:center !important;

    word-break:normal !important;
    overflow-wrap:normal !important;
    hyphens:none !important;
  }

  .hero-title span,
  .hero-title .gradient,
  .hero-title .white,
  .hero-title .gold{
    display:inline-block !important;
    white-space:nowrap !important;
  }

  .infrastructure-hero p,
  .low-hero p,
  .page-hero p,
  .projects-hero-sub,
  .hero-desc{
    max-width:340px !important;
    font-size:15px !important;
    line-height:1.6 !important;
  }
}

@media (max-width:480px){

  .hero-title,
  .infrastructure-hero h1,
  .low-hero h1,
  .projects-hero h1,
  .page-hero h1{
    font-size:24px !important;
  }
}