:root {
  --navy: #0D1B3E;
  --navy-m: #0A3E7A;
  --accent: #1B7FE1;
  --accent-l: #E8F1FC;
  --glow: #00D4FF;
  --text: #0D0D0D;
  --text-2: #1A1A2E;
  --text-3: #333344;
  --border: #E2E8F0;
  --bg-off: #F8FAFD;
  --white: #FFFFFF;
  --green: #0A7C4A;
}

html {
  scroll-behavior: smooth;
}


a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.nav-cta {
  background: var(--accent);
  color: white;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--navy);
  text-decoration: none;
  color: white;
}

/* HERO */
.hero {
  /* background: #ccc; */
  padding: 0 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

@media (max-width: 575px) { 
   .hero {
  padding: 0 15px; 
}
}

.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 60% at 75% 50%, rgba(27, 127, 225, 0.1) 0%, transparent 70%), radial-gradient(ellipse 35% 40% at 15% 80%, rgba(0, 212, 255, 0.07) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  padding: 10px 0 100px 0;
}

@media (max-width: 1023px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #0094d1;
  color: #0094d1;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7EC8F7;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.4;
    transform: scale(0.75)
  }
}

.hero h2 {
  font-size: clamp(38px, 4.5vw, 30px);
  font-weight: 800;
  color: #000;
  margin-bottom: 22px;
  line-height: 1.08;
}

.hero h2 .accent {
  color: #0094d1;;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  font-size: 18px;
  color: #000;
  margin-bottom: 38px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  background: var(--accent);
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(27, 127, 225, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27, 127, 225, 0.45);
  text-decoration: none;
  color: white;
}

.btn-ghost {
  border: 1px solid #0094d1;
  color: #0094d1;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: #000;
  color: #000;
  text-decoration: none;
}

.hero-proof {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.proof-pill {
    background: #174276;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.proof-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--glow);
  letter-spacing: -0.5px;
}

.proof-label {
    font-size: 12px;
    color: #fff;
    line-height: 1.3;
}

/* SECTIONS */
.section {
  padding: 88px 30px;
}

@media (max-width: 575px) {
    .section {
        padding: 30px 15px;
    }
}

.section-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.section-alt {
  background: var(--bg-off);
}

.section-dark {
  background: var(--navy);
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent);
  display: block;
}

.section-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: var(--text);
  
  margin-bottom: 16px;
}

.section-dark .section-title {
  color: white;
}

.section-lead {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  font-weight: 400;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.section-header {
  margin-bottom: 56px;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* WHAT IS SECTION */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

@media (max-width: 1023px) {
  .what-grid {
    grid-template-columns: 1fr;
  }
}

.pain-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pain-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pain-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(27, 127, 225, 0.08);
}

.pain-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.pain-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.what-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.what-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: var(--accent-l);
  border: 1px solid #C5D9F0;
  border-radius: 14px;
  transition: border-color 0.2s;
}

.what-point:hover {
  border-color: var(--accent);
}

.what-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.what-point h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.what-point p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

/* STATS BAR */
.stats-bar {
    background: #161f2d;
    padding: 56px 30px;
}


@media (max-width: 575px) {
  .stats-bar {

    padding: 56px 15px;
}
}



.stats-row {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}


@media (max-width: 767px) {
.stats-row {
  grid-template-columns: 1fr;
  gap: 20px;
}

}


.stat-item {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
    .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-right: 0 !important;
        padding: 0 0 20px 0 !important;
    }
}

.stat-item:last-child {
  border-right: none;
}

.stat-big {
    font-size: 52px;
    font-weight: 800;
    color: #0d9eda;
    letter-spacing: -2px;
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-desc {
  font-size: 15px;
  color: #fff;
  line-height: 1.4;
}

.stat-source {
  font-size: 13px;
  color: #fff;
  margin-top: 15px;
}

/* SERVICES GRID */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 767px) {
.svc-grid {
  grid-template-columns: 1fr;
}
}

.svc-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-card:hover {
  box-shadow: 0 10px 36px rgba(27, 127, 225, 0.1);
  transform: translateY(-4px);
  border-color: #C5D9F0;
}

.svc-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.svc-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.svc-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 16px;
}

.svc-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.svc-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: #FEE2E2;
  color: #991B1B;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

/* DELIVERY */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

@media (max-width: 767px) {
.delivery-grid {
  grid-template-columns: 1fr;
 }
}



.phases {
  display: flex;
  flex-direction: column;
}

.phase {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.phase:first-child {
  border-top: 1px solid var(--border);
}

.phase-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--accent);
}

.phase h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.phase p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

.phase-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--accent-l);
  color: var(--accent);
  margin-left: 8px;
  vertical-align: middle;
}

.packages {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pkg-card {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s, background 0.2s;
}

.pkg-card:hover {
  border-color: var(--accent);
  background: white;
}

.pkg-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.pkg-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 12px;
}

.pkg-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
}

.tag-g {
  background: #D1FAE5;
  color: #065F46;
}

.tag-b {
  background: #DBEAFE;
  color: #1E40AF;
}

.tag-o {
  background: #FEE2E2;
  color: #991B1B;
}

.tag-p {
  background: #EDE9FE;
  color: #5B21B6;
}

/* CLOUDS */
.clouds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 767px) {
.clouds-grid {
  grid-template-columns: 1fr;
}
}




.cloud-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: default;
}

.cloud-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(27, 127, 225, 0.1);
  transform: translateY(-3px);
}

.cloud-icon {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}

.cloud-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.cloud-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 8px;
}

.cloud-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

.ct-hot {
  background: #FEE2E2;
  color: #991B1B;
}

.ct-pop {
  background: #D1FAE5;
  color: #065F46;
}

.ct-new {
  background: #DBEAFE;
  color: #1E40AF;
}

/* INDUSTRIES */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 767px) {
.ind-grid {
  grid-template-columns: 1fr;
}
}


.ind-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s;
}

.ind-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(27, 127, 225, 0.1);
  transform: translateY(-2px);
}

.ind-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ind-icon {
  font-size: 26px;
}

.ind-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.ind-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

.ind-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ind-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--accent-l);
  color: var(--accent);
}

/* WHY ARESS */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 767px) {
.why-grid {
  grid-template-columns: 1fr;
}
}



.why-pts {
  display: flex;
  flex-direction: column;
}

.why-pt {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.why-pt:first-child {
  border-top: 1px solid var(--border);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-l);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-pt h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-pt p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}


.proof-highlight {
    color: #0d9eda;
}
.proof-box {
  background: #161f2d;
  border-radius: 16px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 767px) {
.proof-box {

  grid-template-columns: 1fr;

}
}



.proof-cell {
  padding: 24px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-cell:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-cell:nth-last-child(-n+2) {
  border-bottom: none;
}

.proof-big {
  font-size: 40px;
  font-weight: 800;
  color: var(--glow);
  letter-spacing: -1.5px;
  display: block;
  margin-bottom: 6px;
}

.proof-desc {
  font-size: 12px;
  color: #fff;
  line-height: 1.4;
}

/* INLINE HEALTH CHECK CTA */
.hc-banner {
  background: #161f2d;
  padding: 60px 30px;
}

.hc-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

@media (max-width: 1023px) {

.hc-inner {
  grid-template-columns: 1fr;
}
}


.hc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 127, 225, 0.2);
  border: 1px solid rgba(27, 127, 225, 0.4);
  color: #7EC8F7;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hc-banner h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.hc-banner p {
  font-size: 17px;
  color: #fff;
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.hc-checks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hc-check {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 14px;
}

.hc-check::before {
  content: '✓';
  color: #7EC8F7;
  font-size: 15px;
}

.hc-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  flex-shrink: 0;
}

/* EXPLORE SERVICES */
.explore-section {
  background: var(--bg-off);
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 767px) {
  .explore-grid {
    grid-template-columns: 1fr;
  }
}


.explore-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s;
  text-decoration: none;
}

.explore-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(27, 127, 225, 0.1);
  transform: translateY(-3px);
  text-decoration: none;
}

.explore-icon {
  font-size: 28px;
}

.explore-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.explore-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  flex: 1;
}

.explore-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 4px;
}

.explore-card.hub {
  border-left: 3px solid var(--accent);
  background: var(--accent-l);
}

.explore-card.hub .explore-name {
  color: var(--navy);
}

.hub-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.hub-back::before {
  content: '←';
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  background: white;
  cursor: pointer;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  padding-right: 24px;
  position: relative;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--accent);
  font-size: 20px;
  font-weight: 300;
}

.faq-a {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1023px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}


.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 27, 62, 0.1);
}

.blog-hdr {
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.blog-circle {
  position: absolute;
  right: -24px;
  top: -24px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.blog-emoji {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.blog-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
  display: block;
}

.blog-title {
  font-size: 17px;
  font-weight: 700;
  color: white;
  line-height: 1.35;
}

.blog-body {
  padding: 22px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-excerpt {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.blog-meta {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}

.blog-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

/* CTA */
.cta-section {
  background: #161f2d;
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  
}

.cta-section h2 span {
  color: var(--glow);
}

.cta-section p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 22px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--navy);
  padding: 15px 34px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: var(--navy);
}

.btn-ghost-cta {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  padding: 15px 34px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost-cta:hover {
  border-color: white;
  color: white;
  text-decoration: none;
}

.cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 16px;
}

/* FOOTER */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.6);
  padding: 50px 48px 28px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-left>* {
  animation: fade-up 0.55s ease both;
}

.hero-left>*:nth-child(1) {
  animation-delay: 0.05s
}

.hero-left>*:nth-child(2) {
  animation-delay: 0.15s
}

.hero-left>*:nth-child(3) {
  animation-delay: 0.25s
}

.hero-left>*:nth-child(4) {
  animation-delay: 0.35s
}

.hero-left>*:nth-child(5) {
  animation-delay: 0.45s
}

.inner-header-section .content-wrapper a {
    max-width: 500px;
}


@media (max-width: 767px) {
  .inner-header-section {
    height: auto;
  }
}