@import url(
  "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&display=swap"
);

:root {
  --primary-blue: #159bde;
  --dark-blue: #0877b3;
  --navy: #10243e;
  --text-color: #526173;
  --light-blue: #edf8fe;
  --white: #ffffff;
  --border-color: #dcecf5;
  --shadow: 0 24px 60px rgba(15, 74, 111, 0.13);
}

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

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: var(--navy);
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: 70px 24px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(21, 155, 222, 0.12),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f6fbfe 55%,
      #edf8fe 100%
    );
}

.about-section::before {
  content: "";
  position: absolute;
  top: -170px;
  left: -170px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(21, 155, 222, 0.07);
}

.about-section::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 55px solid rgba(21, 155, 222, 0.06);
}

.about-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 70px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  margin-bottom: 22px;
  border: 1px solid rgba(21, 155, 222, 0.22);
  border-radius: 50px;
  background: var(--light-blue);
  color: var(--dark-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.about-content h2 {
  max-width: 760px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -1.8px;
  color: var(--navy);
}

.about-content h2 span {
  display: block;
  color: var(--primary-blue);
}

.about-divider {
  width: 72px;
  height: 4px;
  margin: 26px 0;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--dark-blue)
  );
}

.about-content > p {
  max-width: 730px;
  margin-bottom: 18px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.85;
}

.about-content .about-intro {
  color: #31445a;
  font-size: 17px;
}

.about-content strong {
  color: var(--navy);
  font-weight: 700;
}

.about-highlights {
  margin-top: 36px;
  display: grid;
  gap: 16px;
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 155, 222, 0.35);
  box-shadow: 0 16px 35px rgba(23, 95, 137, 0.1);
}

.highlight-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--dark-blue)
  );
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.highlight-card h3 {
  margin-bottom: 7px;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.highlight-card p {
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.65;
}

.about-visual {
  position: relative;
}

.visual-card {
  position: relative;
  overflow: hidden;
  padding: 48px 40px;
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(8, 119, 179, 0.98),
      rgba(21, 155, 222, 0.93)
    );
  box-shadow: var(--shadow);
  color: var(--white);
}

.visual-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 42px solid rgba(255, 255, 255, 0.08);
}

.visual-card::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: -80px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.visual-small-text,
.visual-card h3,
.visual-card > p,
.visual-points,
.ai-decoration {
  position: relative;
  z-index: 2;
}

.visual-small-text {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.visual-card h3 {
  margin-bottom: 18px;
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.visual-card h3 span {
  display: block;
  color: #dff5ff;
}

.visual-card > p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.75;
}

.visual-points {
  display: grid;
  gap: 14px;
}

.visual-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.check-icon {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 800;
}

.visual-point p {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.ai-decoration {
  width: 86px;
  height: 86px;
  margin-top: 34px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 800;
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-visual {
    max-width: 650px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 75px 20px;
  }

  .about-content h2 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .visual-card {
    padding: 38px 28px;
  }

  .visual-card h3 {
    font-size: 31px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 60px 16px;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .about-content h2 {
    font-size: 31px;
  }

  .about-content > p,
  .about-content .about-intro {
    font-size: 15px;
  }

  .highlight-card {
    padding: 17px;
  }

  .highlight-icon {
    width: 42px;
    height: 42px;
  }

  .visual-card {
    padding: 32px 22px;
    border-radius: 22px;
  }

  .visual-card h3 {
    font-size: 27px;
  }
}