:root {
  --navy: #0D1B3E;
  --navy-m: #0A3E7A;
  --accent: #1b7fe1;
  --accent2: #45C65A;
  --accent-light: #e8f1fc;
  --data-teal: #0891B2;
  --data-glow: #a2e4ff;
  --text: #0D0D0D;
  --text-2: #1A1A2E;
  --text-3: #333344;
  --border: #e2e8f0;
  --bg-off: #f8fafd;
  --white: #FFFFFF;
}


html {
  scroll-behavior: smooth;
}


a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ── HERO ── */
.hero {
  padding: 10px 0 100px 0 !important;
  position: relative;
  overflow: hidden;
  /* min-height: 90vh; */
  display: flex;
  align-items: center;
}

.hero h2 {
  font-size: clamp(38px, 4.5vw, 30px);
  font-weight: 800;
  color: #000;
  margin-bottom: 24px;
}

.hero h2 .glow {
  color: #0094d1;
}

.btn-ai {
  background: linear-gradient(135deg, #1b7fe1 0%, #0099cc 100%);
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-family: poppins_semiboldregular;
  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-ai:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-ghost-ai {
  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-ai:hover {
  border: 1px solid #000;
  color: #000;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}


.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 440px;
  gap: 80px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  padding: 0;
}

@media (max-width: 1023px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(27, 127, 225, 0.35);
  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-lead {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-data {
  background: linear-gradient(135deg, #1b7fe1 0%, #0099cc 100%);
  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-data:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27, 127, 225, 0.45);
  text-decoration: none;
  color: white;
}

.btn-ghost-data {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  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-data:hover {
  border-color: white;
  color: white;
  text-decoration: none;
}

/* Hero stats */
.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: #00d4ff;
  letter-spacing: -0.5px;
}

.proof-label {
  font-size: 12px;
  color: #fff;
  line-height: 1.3;
}

/* Hero right — data flow SVG visual */
.hero-viz {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── SECTIONS ── */
.section {
  padding: 88px 30px;
}

.section-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.section-alt {
  background: var(--bg-off);
}

.section-dark {
  background: var(--navy);
}

.eyebrow {
  font-size: 13px;
  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, 38px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  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 DATA 360 ── */
.what-grid {
  display: grid;
  grid-template-columns: 450px auto;
  gap: 50px;
  align-items: center;
}

@media (max-width: 1023px) {
  .what-grid {
    grid-template-columns: 1fr;
  }
}

.naming-timeline {
  background: #0d9eda;
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.naming-timeline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 30%, rgba(6, 214, 160, 0.08), transparent 70%);
}

.timeline-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a2e4ff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.tl-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}

.tl-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.tl-item:last-child {
  border-bottom: none;
}

.tl-year {

  font-size: 15px;
  font-weight: 700;
  color: #fff;
  width: 38px;
  flex-shrink: 0;
  padding-top: 2px;
}

.tl-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.tl-note {
  font-size: 14px;
  color: #fff;
}

.tl-item.current .tl-year {
  color: var(--data-glow);
}

.tl-item.current .tl-name {
  color: white;
}

.tl-item.current {
  background: rgba(6, 214, 160, 0.06);
  margin: 0 -32px;
  padding: 12px 32px;
  border-radius: 8px;
}

.tl-item:not(.current) .tl-name {
  color: #fff;
  font-size: 15px;
  margin-bottom: 6px;
}

.what-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wp {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.wp:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(10, 124, 74, 0.1);
}

.wp-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.wp h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text);
}

.wp p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── STATS BAR ── */
.stats-bar {
  background: #161f2d;
  padding: 56px 30px;
}

.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 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 0 !important;
    padding: 0 0 20px 0 !important;
  }
}

.stat-item {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.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;
}

@media (max-width: 991px) {
  .stat-big {
    font-size: 35px;
  }
}

.stat-desc {
  font-size: 15px;
  color: #fff;
  line-height: 1.4;
}

.stat-source {
  font-size: 13px;
  color: #fff;
  margin-top: 15px;
}

/* ── ARCHITECTURE ── */
.arch-grid {
  display: grid;
  grid-template-columns: 450px auto;
  gap: 50px;
  align-items: start;
}

@media (max-width: 991px) {
  .arch-grid {
    grid-template-columns: 1fr;
  }
}


.arch-visual {
  background: #e8f1fc;
  border: 1px solid #0ca2d6;
  border-radius: 20px;
  padding: 32px;
}

.arch-layer {
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}

.al-top {
  background: linear-gradient(135deg, #0D1B3E, #0A3E7A);
  color: white;
}

.al-360 {
  background: linear-gradient(135deg, #064E3B, #0A7C4A);
  color: white;
}

.al-ingest {
  background: linear-gradient(135deg, #0A7C4A, #22A86B);
  color: white;
}

.al-source {
  background: #fff;
  color: var(--text-2);
  border: 1px solid var(--border);
}

.arch-arrow {
  text-align: center;
  color: #000;
  font-size: 18px;
  padding: 6px 0;
  margin: 0 0 8px 0;
  line-height: 1;
}

.arch-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.arch-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.arch-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.arch-point h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.arch-point p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── USE CASES ── */
.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 767px) {
  .uc-grid {
    grid-template-columns: 1fr;
  }
}


.uc-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;
}

.uc-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;
}

.uc-card:hover::before {
  transform: scaleX(1);
}

.uc-card:hover {
  box-shadow: 0 10px 36px rgba(27, 127, 225, 0.12);
  transform: translateY(-4px);
  border-color: #c5d9f0;
}

.uc-emoji {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.uc-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.uc-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 14px;
}

.uc-result {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  line-height: 16px;
  position: relative;
  padding: 0 0 0 15px;
}

.uc-result::before {
  content: '→';
  left: 0;
  top: 0;
  font-size: 11px;
  position: absolute;
}

/* ── HOW WE DELIVER ── */
.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;
  gap: 0;
}

.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;
  color: var(--text);
}

.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-light);
  color: var(--accent);
  margin-left: 8px;
  vertical-align: middle;
}

.offering-card {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 16px;
  transition: border-color 0.2s, background 0.2s;
}

.offering-card:hover {
  border-color: var(--accent);
  background: white;
}

.offering-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.offering-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 12px;
}

.tag {
  font-size: 12px;
  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;
}

/* ── 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(10, 124, 74, 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: 12px;
  padding: 9px;
  border-radius: 4px;
  background: #e8f1fc;
  color: var(--accent);
}

/* ── WHY ARESS ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 1023px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.why-pts {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.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-light);
  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;
}

.readiness-box {
  background: #161f2d;
  border-radius: 20px;
  padding: 36px;
  color: white;
}

.readiness-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.readiness-box p {
  font-size: 15px;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.65;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #fff;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chk {
  color: var(--data-glow);
  font-size: 16px;
  flex-shrink: 0;
  position: relative;
  top: -3px;
}

/* ── 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: 991px) {
  .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 #ebebef;
}

.blog-header {
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.blog-header-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-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-emoji {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.blog-title {

  font-size: 17px;
  font-weight: 700;
  color: white;
  line-height: 1.35;
  margin: 0;
}

.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);
}

.blog-link:hover {
  text-decoration: underline;
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, #0d1b3e 0%, #0a3e7a 100%);
  padding: 100px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #161f2d;  
}

.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;
  letter-spacing: -1px;
}

.cta-section h2 span {
  color: #00d4ff;
}

.cta-section p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 23px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: #0d1b3e;
  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: #0d1b3e;
}

.cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 16px;
}

.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;
}

/* ── FOOTER ── */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.6);
  padding: 50px 30px 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: 768px) {
  .section {
    padding: 50px 30px;
  }

  .section-header-row {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .section {
    padding: 30px 15px;
  }
}