/* about section========================================================================================================== */
.caseora-about {
  padding: 110px 0;
  background: #fff;
  overflow: hidden;
}

.caseora-about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.caseora-about-content h2 {
  font-family: var(--f1);
  font-size: 50px;
  line-height: 1.08;
  font-weight: 700;
  color: var(--text-dark);
  margin: 10px 0 20px;
  letter-spacing: -0.03em;
}

.caseora-about-content h2 span {
  color: var(--orange);
}

.caseora-about-text {
  font-size: 15px;
  line-height: 1.9;
  color: #6b7280;
  max-width: 520px;
  margin-bottom: 34px;
}
.caseora-about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 38px;
}

.caseora-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid #ececec;
  border-radius: 20px;
  background: #fff;
  transition: 0.35s ease;
}

.caseora-feature-card:hover {
  transform: translateY(-5px);
  border-color: #fdba74;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
}

.caseora-feature-card i {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #fff7ed;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.caseora-feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.caseora-feature-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #6b7280;
}

.caseora-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 30px;
  border-radius: 16px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--f1);
  transition: 0.35s ease;
}

.caseora-about-btn:hover {
  background: #ea580c;
  transform: translateY(-4px);
}

.caseora-about-visual {
  position: relative;
  min-height: 650px;
}

.caseora-main-img {
  width: 85%;
  height: 520px;
  margin-left: auto;
  border-radius: 34px;
  overflow: hidden;
}

.caseora-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caseora-small-img {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 260px;
  height: 300px;
  border-radius: 26px;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 25px 60px rgba(17, 24, 39, 0.12);
}

.caseora-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caseora-floating-card {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  width: 250px;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.08);
  border: 1px solid #ececec;
}

.caseora-floating-card h3 {
  font-size: 42px;
  color: var(--orange);
  font-family: var(--f1);
  margin-bottom: 10px;
}

.caseora-floating-card p {
  font-size: 13px;
  line-height: 1.8;
  color: #6b7280;
}

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

  .caseora-about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .caseora-about-content {
    text-align: left;
  }

  .caseora-about-content h2 {
    font-size: 34px;
    line-height: 1.18;
    margin: 8px 0 14px;
  }

  .caseora-about-text {
    font-size: 14px;
    line-height: 1.8;
    max-width: 100%;
    margin-bottom: 26px;
  }

  .caseora-about-features {
    gap: 14px;
    margin-bottom: 28px;
  }

  .caseora-feature-card {
    padding: 16px;
    border-radius: 18px;
    gap: 14px;
  }

  .caseora-feature-card i {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 18px;
  }

  .caseora-feature-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .caseora-feature-card p {
    font-size: 13px;
    line-height: 1.7;
  }

  .caseora-about-btn {
    height: 50px;
    padding: 0 24px;
    border-radius: 14px;
    font-size: 13px;
  }

  .caseora-about-visual {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .caseora-main-img {
    width: 100%;
    height: 340px;
    margin-left: 0;
    border-radius: 24px;
  }

  .caseora-small-img {
    position: relative;
    width: 100%;
    height: 240px;
    left: auto;
    bottom: auto;
    border: 0;
    border-radius: 22px;
    box-shadow: none;
  }

  .caseora-floating-card {
    position: relative;
    width: 100%;
    right: auto;
    bottom: auto;

    padding: 22px;

    border-radius: 20px;
  }

  .caseora-floating-card h3 {
    font-size: 34px;
    margin-bottom: 8px;
  }

  .caseora-floating-card p {
    font-size: 13px;
    line-height: 1.7;
  }
}
/* cta button====================================================================================================== */
.about-cta {
  padding: 90px 0;
  background: #fff;
}

.about-cta-box {
  position: relative;
  overflow: hidden;

  background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);

  border-radius: 32px;

  padding: 55px 60px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;

  box-shadow: 0 30px 70px rgba(17, 24, 39, 0.08);
}

.about-cta-box::before {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background: rgba(249, 115, 22, 0.16);

  top: -120px;
  right: -100px;

  filter: blur(20px);
}

.about-cta-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.about-cta-content h2 {
  font-family: var(--f1);

  font-size: 50px;
  line-height: 1.05;

  font-weight: 700;

  color: #fff;

  letter-spacing: -0.03em;

  margin: 10px 0 16px;
}

.about-cta-content h2 span {
  color: var(--orange);
}

.about-cta-content p {
  font-size: 14px;
  line-height: 1.9;

  color: rgba(255, 255, 255, 0.72);

  max-width: 500px;
}

.about-newsletter {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 440px;

  background: #fff;

  border-radius: 16px;

  padding: 8px;

  display: flex;
  align-items: center;
  gap: 10px;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-newsletter input {
  flex: 1;

  height: 40px;

  border: none;
  outline: none;

  background: transparent;

  padding: 0 14px;

  font-size: 15px;

  font-family: var(--f1);

  color: #111827;
}

.about-newsletter input::placeholder {
  color: #9ca3af;
}

.about-newsletter button {
  border: none;

  height: 46px;

  padding: 0 22px;

  border-radius: 12px;

  background: var(--orange);

  color: #fff;

  font-size: 13px;
  font-weight: 600;

  font-family: var(--f1);

  cursor: pointer;

  transition: 0.35s ease;

  white-space: nowrap;
}

.about-newsletter button:hover {
  background: #ea580c;
  transform: translateY(-2px);
}

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

  .about-cta-box {
    padding: 34px 22px;

    border-radius: 24px;

    flex-direction: column;
    align-items: flex-start;

    gap: 28px;
  }

  .about-cta-content h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .about-cta-content p {
    font-size: 13px;
    line-height: 1.8;
  }

  .about-newsletter {
    width: 100%;

    flex-direction: column;

    align-items: stretch;

    padding: 10px;
  }

  .about-newsletter input {
    height: 46px;
    font-size: 13px;
  }

  .about-newsletter button {
    width: 100%;
    height: 44px;
    font-size: 13px;
  }
}
