@import url(../styles/header.css);
@import url(../styles/footer.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #0f172a;
}

.company-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 20px 110px;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 90px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 22px;
  color: #0f172a;
}

.hero-text .gradient-text {
  background: linear-gradient(90deg, #00aeff, #6d7dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #475569;
  margin-bottom: 28px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #00aeff, #6d7dff);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 174, 255, 0.24);
}

.btn-secondary {
  border: 1px solid #dbe4f0;
  color: #0f172a;
  background: #fff;
}

.btn-secondary:hover {
  border-color: #b9c9dd;
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
}

.hero-image {
  width: 100%;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
  background: linear-gradient(145deg, #eff6ff, #e0f2fe);
  border: 1px solid #e5eef8;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.floating-badge {
  position: absolute;
  right: -12px;
  bottom: 28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(219, 228, 240, 0.95);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  max-width: 240px;
}

.floating-badge strong {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
}

.floating-badge span {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
}

.section {
  margin-bottom: 90px;
}

.section-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 14px;
  line-height: 1.2;
  color: #0f172a;
}

.section-header p {
  color: #475569;
  line-height: 1.85;
  font-size: 1.03rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.text-block p {
  color: #475569;
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 1rem;
}

.image-block {
  border-radius: 26px;
  overflow: hidden;
  min-height: 360px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.1);
  background: #f8fbff;
  border: 1px solid #e6edf6;
}

.image-block img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.highlight-item {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e6edf6;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.highlight-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.highlight-item p {
  color: #475569;
  line-height: 1.75;
  font-size: 0.97rem;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  margin-top: 30px;
}

.info-entry {
  padding-bottom: 18px;
  border-bottom: 1px solid #e8eef5;
}

.info-entry h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: #0f172a;
}

.info-entry p {
  color: #475569;
  line-height: 1.75;
  font-size: 0.97rem;
}

.cta-section {
  margin-top: 40px;
  padding: 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef7ff 100%);
  border: 1px solid #dfeaf7;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  color: #0f172a;
}

.cta-section p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: #475569;
  line-height: 1.85;
}

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .two-col,
  .highlights,
  .info-list {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 35px;
  }

  .floating-badge {
    position: static;
    margin-top: 18px;
    max-width: 100%;
  }

  .company-page {
    padding: 70px 18px 90px;
  }
}
