/* ===========================
   ABOUT — HERO
=========================== */
.ab-hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.ab-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

.ab-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 1;
}

.ab-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 48px;
}

.ab-hero__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  border: 1px solid rgba(232,98,26,0.4);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.ab-hero__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 12px;
}

.ab-hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}

/* ===========================
   ABOUT
=========================== */
.ab-about {
  padding: 80px 40px;
  background: #fff;
}

.ab-about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 70px;
  align-items: center;
}

.ab-about__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 14px;
}

.ab-about__title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 20px;
}

.ab-about__text {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 14px;
}

.ab-about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ab-about__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff5ef;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 50px;
  border: 1.5px solid rgba(232,98,26,0.2);
}

.ab-about__badge svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Photos */
.ab-about__right {
  position: relative;
  height: 480px;
}

.ab-about__img-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 60px;
  bottom: 60px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
}

.ab-about__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ab-about__img-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  border: 4px solid #fff;
}

.ab-about__img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================
   NUMBERS
=========================== */
.ab-numbers {
  background: #1c1814;
  padding: 56px 40px;
}

.ab-numbers__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.ab-numbers__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 48px;
  text-align: center;
}

.ab-numbers__item strong {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.ab-numbers__item strong span {
  font-size: 0.45em;
  color: var(--orange);
  font-weight: 700;
}

.ab-numbers__item > span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.ab-numbers__divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ===========================
   VALUES
=========================== */
.ab-values {
  padding: 80px 40px;
  background: #faf8f5;
}

.ab-values__container {
  max-width: 1200px;
  margin: 0 auto;
}

.ab-values__header {
  text-align: center;
  margin-bottom: 52px;
}

.ab-values__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
}

.ab-values__subtitle {
  font-size: 15px;
  color: #888;
}

.ab-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ab-values__card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 26px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.22s, box-shadow 0.22s;
}

.ab-values__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
}

.ab-values__card-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 42px;
  font-weight: 900;
  color: rgba(232,98,26,0.07);
  line-height: 1;
}

.ab-values__card-icon {
  width: 52px;
  height: 52px;
  background: #fff5ef;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 18px;
  transition: background 0.25s;
}

.ab-values__card-icon svg {
  width: 24px;
  height: 24px;
}

.ab-values__card:hover .ab-values__card-icon {
  background: var(--orange);
  color: #fff;
}

.ab-values__card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.ab-values__card p {
  font-size: 13.5px;
  color: #777;
  line-height: 1.6;
}

/* ===========================
   TEAM
=========================== */
.ab-team {
  padding: 80px 40px;
  background: #fff;
}

.ab-team__container {
  max-width: 1200px;
  margin: 0 auto;
}

.ab-team__header {
  text-align: center;
  margin-bottom: 52px;
}

.ab-team__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
}

.ab-team__subtitle {
  font-size: 15px;
  color: #888;
}

.ab-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ab-team__card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.22s, box-shadow 0.22s;
  background: #fff;
}

.ab-team__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
}

.ab-team__card-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f0ece6;
}

.ab-team__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s;
}

.ab-team__card:hover .ab-team__card-img img {
  transform: scale(1.04);
}

.ab-team__card-body {
  padding: 18px 18px 20px;
}

.ab-team__card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.ab-team__card-role {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 10px;
}

.ab-team__card-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.55;
}

/* ===========================
   CERTIFICATES
=========================== */
.ab-certs {
  padding: 80px 40px;
  background: #faf8f5;
}

.ab-certs__container {
  max-width: 1200px;
  margin: 0 auto;
}

.ab-certs__header {
  text-align: center;
  margin-bottom: 48px;
}

.ab-certs__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
}

.ab-certs__subtitle {
  font-size: 15px;
  color: #888;
}

.ab-certs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ab-certs__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.ab-certs__item-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #e8e3dc;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  cursor: pointer;
}

.ab-certs__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.ab-certs__item-img:hover img {
  transform: scale(1.04);
}

.ab-certs__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232,98,26,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  color: #fff;
}

.ab-certs__item-overlay svg {
  width: 32px;
  height: 32px;
}

.ab-certs__item-img:hover .ab-certs__item-overlay {
  opacity: 1;
}

.ab-certs__item p {
  font-size: 13.5px;
  font-weight: 600;
  color: #555;
}

/* ===========================
   CTA
=========================== */
.ab-cta {
  position: relative;
  padding: 90px 40px;
  overflow: hidden;
  text-align: center;
}

.ab-cta__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(15,10,5,0.75), rgba(15,10,5,0.75)),
    url('assets/img/cta-bg.jpg') center/cover no-repeat;
  z-index: 0;
}

.ab-cta__container {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.ab-cta__title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}

.ab-cta__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  line-height: 1.6;
}

.ab-cta__row {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto 16px;
  backdrop-filter: blur(6px);
}

.ab-cta__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 20px;
  font-family: var(--font-main);
  font-size: 15px;
  color: #fff;
  outline: none;
}

.ab-cta__input::placeholder { color: rgba(255,255,255,0.4); }

.ab-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 24px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.ab-cta__btn svg { width: 18px; height: 18px; }
.ab-cta__btn:hover { background: var(--orange-hover); }

.ab-cta__note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.ab-cta__note svg { width: 15px; height: 15px; color: var(--orange); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .ab-team__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .ab-about__container { grid-template-columns: 1fr; }
  .ab-about__right { height: 300px; }
  .ab-values__grid { grid-template-columns: repeat(2, 1fr); }
  .ab-certs__grid { grid-template-columns: repeat(2, 1fr); }
  .ab-numbers__item { padding: 0 24px; }
  .ab-numbers__divider { height: 36px; }
}

@media (max-width: 560px) {
  .ab-hero { height: 240px; }
  .ab-hero__container { padding: 0 20px 32px; }
  .ab-about { padding: 50px 20px; }
  .ab-numbers { padding: 40px 20px; }
  .ab-numbers__container { gap: 20px; }
  .ab-numbers__divider { display: none; }
  .ab-numbers__item { padding: 0; }
  .ab-values { padding: 50px 20px; }
  .ab-values__grid { grid-template-columns: 1fr; }
  .ab-team { padding: 50px 20px; }
  .ab-team__grid { grid-template-columns: 1fr; }
  .ab-certs { padding: 50px 20px; }
  .ab-certs__grid { grid-template-columns: 1fr 1fr; }
  .ab-cta { padding: 60px 20px; }
  .ab-cta__row { flex-direction: column; border-radius: 12px; }
  .ab-cta__btn { border-radius: 0 0 10px 10px; justify-content: center; }
}