* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: #0C2146;
  background: #ffffff;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

.container {
  width: 92%;
  max-width: 1210px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  text-align: center;
  color: #D91F26;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}

.section-title {
  text-align: center;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  margin: 0;
}

.title-accent {
  width: 74px;
  height: 4px;
  border-radius: 999px;
  background: #D91F26;
  margin: 14px auto 36px;
}

.btn {
  display: inline-block;
  text-align: center;
  border-radius: 4px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 16px;
  transition: 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

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

.btn-primary {
  background: #D91F26;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(217, 31, 38, 0.25);
}

.btn-primary:hover {
  background: #C4161C;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.85);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline-dark {
  border-color: #cfd7e5;
  color: #0C2146;
  background: #ffffff;
}

.arrow {
  font-size: 1.1em;
  line-height: 1;
  margin-left: 8px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header .inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.nav a {
  position: relative;
  padding: 10px 0;
  color: #0C2146;
}

.nav a:hover,
.nav a.active {
  color: #D91F26;
}

.nav a.active:after,
.nav a:hover:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 2px;
  background: #D91F26;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.call-chip {
  display: inline-block;
  background: #D91F26;
  color: #ffffff;
  padding: 13px 17px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 10px 18px rgba(217, 31, 38, 0.22);
}

.menu-toggle {
  display: none;
  background: #ffffff;
  border: 1px solid #E7E9EE;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 20px;
  color: #0C2146;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(2, 16, 43, 1) 0%, rgba(3, 22, 66, 0.98) 35%, rgba(4, 30, 87, 0.90) 60%, rgba(5, 36, 101, 0.84) 100%);
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(28, 142, 255, 0.32), transparent 15%),
    radial-gradient(circle at 84% 44%, rgba(74, 167, 255, 0.16), transparent 20%),
    radial-gradient(circle at 62% 70%, rgba(18, 104, 219, 0.14), transparent 18%);
  pointer-events: none;
}

.hero .inner {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 34px;
  padding: 24px 0 16px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding: 16px 0 10px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow span {
  color: #D91F26;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: 60px;
  line-height: 1.03;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  max-width: 610px;
}

.hero p {
  margin: 0 0 26px;
  color: #E7EDF8;
  font-size: 18px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 560px;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 26px 40px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(8, 12, 29, 0) 0%, rgba(4, 18, 48, 0.18) 100%);
}

/* Dots removed as requested */
.slider-dots {
  display: none;
}

/* Brands strip */
.brands-strip {
  background: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid #eceef2;
}

.brands-strip .inner {
  padding: 22px 0 14px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
}

.brand-item {
  min-height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.brand-item:not(:last-child):after {
  content: "";
  position: absolute;
  right: -8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: #e9ecf2;
}

.brand-item img {
  max-height: 38px;
  max-width: 88%;
  object-fit: contain;
}

.brand-more {
  text-align: center;
  font-size: 14px;
  color: #2f3645;
  margin-top: 4px;
}

/* Solutions */
.solutions {
  background: linear-gradient(180deg, #FAFAFB 0%, #FFFFFF 18%);
  padding: 58px 0 60px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.solution-card {
  background: #ffffff;
  border: 1px solid #E7E9EE;
  border-radius: 8px;
  padding: 22px 16px 18px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(4, 18, 48, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(4, 18, 48, 0.10);
  border-color: #d8deea;
}

.solution-icon-box {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.solution-icon-box img {
  max-height: 56px;
  width: auto;
}

.solution-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.32;
  font-weight: 800;
  color: #0C2146;
}

.solution-card p {
  margin: 0;
  font-size: 14px;
  color: #5F6675;
}

.section-actions {
  text-align: center;
  margin-top: 26px;
}

/* Why */
.why {
  background: linear-gradient(90deg, #02153A 0%, #04215B 48%, #062964 100%);
  color: #ffffff;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.why:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at 12% 30%, rgba(32, 116, 255, 0.10), transparent 20%), radial-gradient(circle at 80% 50%, rgba(255, 0, 0, 0.08), transparent 24%);
}

.why .inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.55fr repeat(5, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 31px 0;
}

.why-intro {
  padding: 0 24px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-intro h2 {
  margin: 0 0 6px;
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
  color: #ffffff;
}

.why-intro .title-accent {
  margin: 10px 0 14px;
  background: #D91F26;
}

.why-intro p {
  margin: 0 0 18px;
  color: #E0E8F6;
  font-size: 16px;
  max-width: 320px;
}

.why-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.why-stat img {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.why-stat .num {
  font-size: 38px;
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 6px;
  color: #ffffff;
}

.why-stat .lbl {
  font-size: 14px;
  color: #E0E8F6;
  max-width: 120px;
}

/* Customers */
.customers {
  padding: 48px 0 24px;
  background: #ffffff;
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.customer-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #E7E9EE;
  border-radius: 4px;
  min-height: 74px;
  padding: 10px 12px;
}

.customer-box img {
  max-height: 42px;
  width: auto;
  max-width: 94%;
  object-fit: contain;
}

.customers .slider-dots {
  margin-top: 16px;
}

.customers .slider-dots span {
  background: #c7cbd4;
}

.customers .slider-dots span.active {
  background: #D91F26;
}

/* CTA */
.cta {
  position: relative;
  margin-top: 8px;
  background: linear-gradient(180deg, #F9FBFF 0%, #FFFFFF 100%);
  border-top: 1px solid #edf0f5;
  border-bottom: 1px solid #edf0f5;
  overflow: hidden;
}

.cta:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 255px;
  background: url('../images/cta-handshake.jpg') left center no-repeat;
  background-size: cover;
}

.cta:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(135deg, transparent 0 50%, #d71e25 50% 82%, #0B2C6D 82% 100%);
}

.cta .inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 85px 20px 230px;
}

.cta h2 {
  margin: 0 0 2px;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 900;
}

.cta p {
  margin: 0;
  color: #42506A;
  font-size: 16px;
}

/* Footer */
.site-footer {
  background: linear-gradient(90deg, #02122E 0%, #032059 100%);
  color: #ffffff;
  padding: 26px 0 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr 1.15fr;
  gap: 26px;
  align-items: start;
}

.footer-logo img {
  height: 66px;
  width: auto;
  margin-bottom: 10px;
}

.footer-logo p,
.footer-links a,
.footer-col p {
  color: #E0E9F6;
  font-size: 14px;
}

.footer-title {
  margin: 12px 0 14px;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.footer-links {
  display: grid;
  gap: 8px;
}

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

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
}

.contact-list {
  display: grid;
  gap: 9px;
}

.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-item .i {
  width: 18px;
  flex: 0 0 auto;
  text-align: center;
}

.newsletter-input {
  width: 100%;
  padding: 11px 12px;
  border: none;
  border-radius: 3px;
  margin: 8px 0 10px;
  font: inherit;
}

.subscribe-btn {
  display: inline-block;
  background: #D91F26;
  border: none;
  color: #ffffff;
  padding: 11px 18px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 16px;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: #D9E3F2;
  font-size: 13px;
}

.footer-bottom a {
  color: #D9E3F2;
}

/* Responsive */
@media (max-width: 1180px) {
  .hero h1 {
    font-size: 54px;
  }

  .solution-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why .inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
  }

  .why-intro {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .why-stat {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 18px;
  }

  .customer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    row-gap: 22px;
  }

  .cta .inner {
    padding: 20px 55px 20px 210px;
  }
}

@media (max-width: 960px) {
  .site-header .inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 12px 0;
    min-height: auto;
  }

  .brand {
    grid-column: 1 / 2;
  }

  .header-actions {
    grid-column: 2 / 3;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 16px;
    padding: 10px 0 6px;
    border-top: 1px solid #E7E9EE;
    margin-top: 8px;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav a.active:after,
  .nav a:hover:after {
    display: none;
  }

  .hero .inner {
    grid-template-columns: 1fr;
    padding: 28px 0 16px;
    min-height: auto;
  }

  .hero-copy {
    order: 1;
  }

  .hero-art {
    order: 2;
  }

  .hero h1 {
    font-size: 44px;
    max-width: none;
  }

  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta:before {
    display: none;
  }

  .cta:after {
    width: 72px;
  }

  .cta .inner {
    padding: 22px 70px 22px 0;
  }
}

@media (max-width: 700px) {
  .brand img {
    height: 54px;
  }

  .call-chip {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .brand-grid,
  .solution-grid,
  .customer-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta .inner {
    padding: 22px 55px 22px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta h2 {
    font-size: 22px;
  }
}

@media (max-width: 520px) {
  .brand-grid,
  .solution-grid,
  .customer-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }

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

  .why-intro h2 {
    font-size: 36px;
  }
}
