:root {
  --ares-dark: #102a31;
  --ares-dark-2: #0b1f25;
  --ares-red: #c51f2b;
  --ares-red-2: #9f1822;
  --ares-card: #425a64;
  --ares-card-2: #324850;
  --ares-text: #f7f7f4;
  --ares-muted: #b9c6ca;
  --ares-line: rgba(255, 255, 255, .12);
  --ares-shadow: 0 25px 80px rgba(0, 0, 0, .35);
  --radius-xl: 32px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;

}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--ares-dark-2);
  color: var(--ares-text);
  overflow-x: hidden;
}

h1,
h2,
h3,
.brand strong {
  font-family: 'Montserrat', sans-serif;
}

p {
  color: var(--ares-muted);
  line-height: 1.75;
}

a {
  text-decoration: none;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-dark {
  background: radial-gradient(circle at top right, rgba(197, 31, 43, .12), transparent 30%), var(--ares-dark);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ares-muted);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.section-kicker:after {
  content: '';
  width: 72px;
  height: 2px;
  background: var(--ares-red);
}

.section-kicker.light {
  color: #fff;
}

.section-title {
  max-width: 850px;
  margin: 0 auto 36px;
}

.section-title h2,
.about-section h2,
.differentials-section h2,
.contact-section h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
}

.section-lead {
  font-size: 1.08rem;
}

.navbar-clean {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #ececec;
  padding: 18px 0;
}

.logo-ares {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-link {
  color: #111827 !important;
  font-weight: 600;
  font-size: 15px;
  transition: .3s;
}

.nav-link:hover {
  color: #c1121f !important;
}

.nav-button {
  background: #c1121f;
  color: white;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s;
}

.nav-button:hover {
  background: #a70f1a;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 991px) {

  .navbar-collapse {
    background: white;
    padding: 24px;
    border-radius: 20px;
    margin-top: 20px;
  }

  .logo-ares {
    height: 48px;
  }

  .nav-button {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
}

.hero-ares {
  background: #fff;
  padding-top: 140px;
  padding-bottom: 95px;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.hero-ares-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  align-items: center;
  gap: 40px;
}

.hero-ares-content {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: block;
  color: #c1121f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  margin-bottom: 28px;
}

.hero-ares h1 {
  color: #111827;
  font-size: clamp(2.1rem, 3.2vw, 3.6rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 24px;
  max-width: 560px;
}

.hero-ares p {
  color: #4b5563;
  font-size: 1.25rem;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 44px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: #c1121f;
  color: #fff;
  padding: 17px 28px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 30px rgba(193, 18, 31, 0.22);
}

.btn-hero-primary:hover {
  background: #a80f1b;
  color: #fff;
}

.btn-hero-link {
  color: #111827;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-hero-link:hover {
  color: #c1121f;
}

.hero-ares-photo {
  position: relative;
  border: 3px solid #c1121f;
  border-radius: 32px;
  overflow: hidden;
  max-width: 760px;
  margin-left: auto;
  background: transparent;
  height: 620px;
}

.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-ares-photo::before {
  content: "";
  position: absolute;
  top: -2px;
  right: 40px;
  width: 120px;
  height: 2px;
  background: white;
  z-index: 2;
}

.hero-ares-photo::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 40px;
  width: 120px;
  height: 2px;
  background: white;
  z-index: 2;
}


.navbar-clean {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 8px 0;
}

.logo-ares {
  height: 88px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 1399px) {
  .hero-ares-photo {
    margin-right: calc((100vw - 1140px) / -2);
  }
}

@media (max-width: 1199px) {
  .hero-ares-photo {
    margin-right: calc((100vw - 960px) / -2);
  }
}

@media (max-width: 991px) {
  .hero-ares {
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .logo-ares {
    height: 72px;
  }

  .hero-ares-grid {
    grid-template-columns: 1fr;
  }

  .hero-ares h1 {
    font-size: 2.3rem;
    line-height: 1.08;
  }



  .hero-ares-photo {
    height: 420px;
    margin-right: 0;
    border-radius: 24px;
  }
}

@media (max-width: 768px) {
  .hero-ares h1 {
    font-size: 1.7rem;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  .hero-ares p {
    font-size: 1rem;
  }

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

  .btn-hero-primary,
  .btn-hero-link {
    justify-content: center;
  }

  .logo-ares {
    height: 62px;
  }

  .hero-ares {
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
  }

  .hero-ares .container {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    overflow: hidden;
  }

  .hero-ares-grid {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .hero-ares-photo {
    height: 420px;
    padding: 0;
  }

  .hero-photo-img {
    height: 100%;
    border-radius: 0;
  }
}

@media (max-width: 768px) {}

.btn {
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  border: 0;
}

.btn-primary-ares {
  background: var(--ares-red);
  color: #fff;
  box-shadow: 0 16px 36px rgba(197, 31, 43, .28);
}

.btn-primary-ares:hover {
  background: var(--ares-red-2);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-ares {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
}

.btn-outline-ares:hover {
  background: #fff;
  color: var(--ares-dark);
}

.btn-light-ares {
  background: #fff;
  color: var(--ares-red);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 54px;
}

.hero-metrics div {
  min-width: 170px;
  padding: 18px 20px;
  border: 1px solid var(--ares-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
}

.hero-metrics strong {
  display: block;
  font-size: 1.25rem;
}

.hero-metrics span {
  color: var(--ares-muted);
  font-size: .88rem;
}

.about-card {
  position: relative;
  padding: 38px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(66, 90, 100, .82), rgba(34, 54, 62, .82));
  border: 1px solid var(--ares-line);
  box-shadow: var(--ares-shadow);
  overflow: hidden;
}

.symbol-bg {
  position: absolute;
  right: -45px;
  bottom: -25px;
  font-family: 'Montserrat';
  font-size: 7rem;
  font-weight: 900;
  color: rgba(197, 31, 43, .12);
}

.mini-card {
  position: relative;
  min-height: 132px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(7, 27, 33, .52);
  border: 1px solid var(--ares-line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mini-card i {
  color: var(--ares-red);
  font-size: 2rem;
}

.mini-card span {
  font-weight: 800;
}

.solutions-section {
  background: #f4f6f6;
  color: var(--ares-dark);
}

.solutions-section p {
  color: #5a6970;
}

.solutions-section .section-kicker {
  color: #65757b;
}

.solution-card {
  height: 100%;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 18px 60px rgba(16, 42, 49, .11);
  border: 1px solid rgba(16, 42, 49, .08);
  transition: .35s ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(16, 42, 49, .17);
}

.solution-card.featured {
  background: var(--ares-dark);
  color: #fff;
}

.solution-card.featured p {
  color: var(--ares-muted);
}

.icon-box {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: var(--ares-card);
  color: #fff;
  font-size: 2rem;
  margin-bottom: 24px;
}

.solution-card.featured .icon-box,
.solution-card:hover .icon-box {
  background: var(--ares-red);
}

.solution-card h3 {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.solution-card ul {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.solution-card li {
  margin: 10px 0;
  color: inherit;
  display: flex;
  gap: 10px;
}

.solution-card li:before {
  content: '◉';
  color: var(--ares-red);
  font-size: .8rem;
  margin-top: 4px;
}

.solution-card.compact h3 {
  font-size: 1.22rem;
}

.diff-card {
  height: 100%;
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--ares-line);
  transition: .3s ease;
}

.diff-card:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-5px);
}

.diff-card span {
  color: var(--ares-red);
  font-weight: 900;
  letter-spacing: .14em;
}

.diff-card h3 {
  margin: 16px 0 10px;
  font-size: 1.18rem;
  font-weight: 800;
}

.diff-card p {
  margin: 0;
  font-size: .96rem;
}

.method-section {
  background: #fff;
  color: var(--ares-dark);
}

.method-section p {
  color: #617076;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.timeline-item {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background: #f4f6f6;
  border: 1px solid rgba(16, 42, 49, .08);
}

.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ares-red);
  color: #fff;
  font-weight: 900;
  margin-bottom: 24px;
}

.timeline-item h3 {
  font-size: 1.16rem;
  font-weight: 800;
}

.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--ares-red), #7d121b);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  font-weight: 900;
  max-width: 900px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-list a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
}

.contact-list i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  color: var(--ares-red);
}

.contact-form {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--ares-line);
  box-shadow: var(--ares-shadow);
}

.contact-form h3 {
  font-weight: 800;
  margin-bottom: 22px;
}

.form-control,
.form-select {
  border-radius: 16px;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(8, 24, 29, .62);
  color: #fff;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, .55);
}

.form-control:focus,
.form-select:focus {
  background: rgba(8, 24, 29, .82);
  color: #fff;
  border-color: var(--ares-red);
  box-shadow: 0 0 0 .25rem rgba(197, 31, 43, .18);
}

.form-select option {
  color: #111;
}

.footer {
  padding: 26px 0;
  background: #07181d;
  border-top: 1px solid var(--ares-line);
}

.footer p {
  margin: 0;
  font-size: .92rem;
}

.footer a {
  color: #fff;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: .8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .12s;
}

.delay-2 {
  transition-delay: .24s;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(9, 28, 34, .98);
    border: 1px solid var(--ares-line);
    border-radius: 22px;
    margin-top: 16px;
    padding: 18px;
  }

  .section {
    padding: 82px 0;
  }

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

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .brand-text small {
    display: none;
  }

  .brand-text strong {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .about-card,
  .solution-card,
  .contact-form {
    padding: 24px;
  }

  .section-title h2,
  .about-section h2,
  .differentials-section h2,
  .contact-section h2 {
    font-size: 2rem;
  }
}