/*--------------------------------------------------------------
  Inner pages — About / Services / FAQ / Contact
--------------------------------------------------------------*/
.page-hero {
  position: relative;
  padding: 160px 0 90px;
  background:
    radial-gradient(700px 320px at 90% 20%, rgba(201, 162, 74, 0.1), transparent 60%),
    linear-gradient(180deg, #16161a 0%, #1c1c21 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.page-hero.about-hero {
  padding: 150px 0 80px;
}

.page-hero.about-hero .hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.page-hero.about-hero .hero-split .hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-hero.about-hero .hero-split .hero-media img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 4px;
  display: block;
}

.page-hero.about-hero h1 {
  max-width: none;
}

.page-hero.contact-hero {
  padding: 150px 0 80px;
}

.page-hero.contact-hero .hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.page-hero.contact-hero .hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-hero.contact-hero .hero-media img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 4px;
  display: block;
}

.page-hero.contact-hero h1 {
  max-width: none;
}

.page-hero.services-hero {
  padding: 150px 0 80px;
}

.page-hero.services-hero .hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.page-hero.services-hero .hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-hero.services-hero .hero-media img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 4px;
  display: block;
}

.page-hero.services-hero h1 {
  max-width: none;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.about-stat {
  background: #242429;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 22px 16px;
  text-align: center;
}

.about-stat strong {
  display: block;
  color: #f5f5f7;
  font-family: "Syne", sans-serif;
  font-size: 28px;
  margin-bottom: 6px;
}

.about-stat span {
  color: #c9a24a;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: #242429;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 26px 22px;
  position: relative;
}

.benefit-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-top: 1px solid #c9a24a;
  border-left: 1px solid #c9a24a;
  opacity: 0.7;
}

.benefit-card h3 {
  color: #f5f5f7 !important;
  font-family: "Syne", sans-serif;
  font-size: 18px;
  margin: 0 0 12px;
}

.benefit-card p {
  color: #a0a0a8 !important;
  line-height: 1.7;
  margin: 0;
  font-size: 14px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare-card {
  background: #242429;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 28px 24px;
}

.compare-card.featured {
  border-color: rgba(201, 162, 74, 0.45);
}

.compare-card .badge {
  display: inline-block;
  background: rgba(226, 59, 47, 0.18);
  color: #ff8e86;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.compare-card h3 {
  color: #f5f5f7 !important;
  font-family: "Syne", sans-serif;
  font-size: 22px;
  margin: 0 0 18px;
}

.compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-card li {
  color: #d8d8dc;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.55;
  font-size: 14px;
}

.compare-card li strong {
  display: block;
  color: #c9a24a;
  margin-bottom: 4px;
  font-size: 13px;
}

.compare-card.muted li strong {
  color: #a0a0a8;
}

@media (max-width: 991px) {
  .page-hero.about-hero .hero-split,
  .page-hero.contact-hero .hero-split,
  .page-hero.services-hero .hero-split,
  .benefit-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero.about-hero .hero-media,
  .page-hero.contact-hero .hero-media,
  .page-hero.services-hero .hero-media {
    order: -1;
  }

  .page-hero.contact-hero .hero-media img {
    max-width: 220px;
  }

  .page-hero.services-hero .hero-media img {
    max-width: 280px;
  }
}

@media (max-width: 600px) {
  .about-stats {
    grid-template-columns: 1fr;
  }

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

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .eyebrow {
  display: inline-block;
  color: #c9a24a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.page-hero h1 {
  font-family: "Syne", sans-serif;
  color: #f5f5f7 !important;
  font-size: 48px;
  line-height: 1.15;
  margin: 0 0 16px;
  max-width: 16ch;
}

.page-hero p {
  color: #d8d8dc !important;
  font-size: 17px;
  line-height: 1.7;
  max-width: 42em;
  margin: 0;
}

.inner-section {
  padding: 90px 0;
}

.inner-section.alt {
  background: #1c1c21;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.about-copy .eyebrow {
  color: #c9a24a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.about-copy h2 {
  font-family: "Syne", sans-serif;
  color: #f5f5f7 !important;
  font-size: 34px;
  line-height: 1.25;
  margin: 0 0 18px;
}

.about-copy p {
  color: #d8d8dc !important;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.about-points li {
  position: relative;
  padding: 12px 0 12px 28px;
  color: #d8d8dc;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-points li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c9a24a;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: #242429;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 28px 22px;
  text-align: center;
}

.team-card .avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #c9a24a, #e23b2f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 28px;
}

.team-card h3 {
  color: #f5f5f7 !important;
  font-size: 18px;
  margin: 0 0 6px;
}

.team-card span {
  color: #c9a24a;
  font-size: 13px;
}

.team-card p {
  color: #a0a0a8 !important;
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.65;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card-link {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  background: #242429;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 28px 24px;
  text-decoration: none !important;
  color: inherit;
  position: relative;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.service-card-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border-top: 1px solid #c9a24a;
  border-left: 1px solid #c9a24a;
  opacity: 0.7;
}

.service-card-link:hover {
  border-color: rgba(201, 162, 74, 0.4);
  background: #2c2c32;
  transform: translateY(-3px);
}

.service-card-link .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 162, 74, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a24a;
  font-size: 20px;
  margin-bottom: 18px;
}

.service-card-link h3 {
  color: #f5f5f7 !important;
  font-size: 20px;
  margin: 0 0 12px;
  font-family: "Syne", sans-serif;
}

.service-card-link p {
  color: #a0a0a8 !important;
  line-height: 1.7;
  margin: 0 0 20px;
  flex: 1;
}

.service-card-link .cta-line {
  color: #c9a24a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #242429;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  background: transparent;
  border: 0;
  color: #f5f5f7;
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 18px 52px 18px 20px;
  position: relative;
  cursor: pointer;
}

.faq-item button:after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #c9a24a;
  font-size: 22px;
  font-weight: 400;
}

.faq-item.active button:after {
  content: "–";
}

.faq-item .faq-body {
  display: none;
  padding: 0 20px 18px;
  color: #d8d8dc;
  line-height: 1.75;
}

.faq-item.active .faq-body {
  display: block;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: #242429;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 32px 28px;
}

.contact-info-card h2 {
  color: #f5f5f7 !important;
  font-family: "Syne", sans-serif;
  font-size: 28px;
  margin: 0 0 14px;
}

.contact-info-card > p {
  color: #d8d8dc !important;
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-meta {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-meta li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #d8d8dc;
  line-height: 1.55;
}

.contact-meta li strong {
  display: block;
  color: #c9a24a;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-meta a {
  color: #f5f5f7 !important;
  text-decoration: none;
}

.contact-form-card {
  background: #242429;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 32px 28px;
}

.contact-form-card h2 {
  color: #f5f5f7 !important;
  font-family: "Syne", sans-serif;
  font-size: 28px;
  margin: 0 0 8px;
}

.contact-form-card .form-intro {
  color: #a0a0a8 !important;
  margin-bottom: 24px;
}

.ro-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ro-form .form-group {
  margin-bottom: 16px;
}

.ro-form label {
  display: block;
  color: #c9a24a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ro-form .form-control,
.ro-form select,
.ro-form textarea {
  width: 100%;
  background: #1c1c21 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 4px !important;
  color: #f5f5f7 !important;
  height: 48px;
  padding: 10px 14px;
  box-shadow: none !important;
}

.ro-form textarea.form-control {
  height: 130px;
  resize: vertical;
}

.ro-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #c9a24a 50%), linear-gradient(135deg, #c9a24a 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(1.1em + 2px), calc(100% - 13px) calc(1.1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.ro-form .form-control:focus,
.ro-form select:focus,
.ro-form textarea:focus {
  border-color: rgba(201, 162, 74, 0.55) !important;
  outline: none;
}

.ro-form .theme-btn-s2 {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.ro-form .form-note {
  margin-top: 14px;
  font-size: 13px;
  color: #a0a0a8;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 14px;
}

.form-status.success {
  display: block;
  background: rgba(34, 160, 90, 0.15);
  border: 1px solid rgba(34, 160, 90, 0.4);
  color: #7ddea8;
}

.form-status.error {
  display: block;
  background: rgba(226, 59, 47, 0.12);
  border: 1px solid rgba(226, 59, 47, 0.4);
  color: #ff9d95;
}

.site-header.header-style-1.inner-header {
  position: relative;
  background: #16161a;
}

@media (max-width: 991px) {
  .page-hero {
    padding: 120px 0 70px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .about-grid,
  .contact-layout,
  .services-page-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .services-page-grid {
    grid-template-columns: 1fr 1fr;
  }

  .inner-section {
    padding: 70px 0;
  }
}

@media (max-width: 600px) {
  .services-page-grid,
  .ro-form .form-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 110px 0 60px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 24px 18px;
  }
}
