:root {
  --ip-ink: #111827;
  --ip-heading: #172033;
  --ip-muted: #667085;
  --ip-soft: #f5f7fb;
  --ip-line: #e4e9f2;
  --ip-white: #ffffff;
  --ip-navy: #10192b;
  --ip-navy-2: #182641;
  --ip-orange: #f47a3d;
  --ip-orange-2: #ff9f5a;
  --ip-teal: #23b6b1;
  --ip-radius: 8px;
  --ip-shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ip-heading);
  background: var(--ip-white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin-inline: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -12px;
}

.row > * {
  padding-inline: 12px;
}

.g-3 {
  row-gap: 16px;
}

.g-4 {
  row-gap: 24px;
}

.g-5 {
  row-gap: 40px;
}

.col-12,
.col-md-6,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-xl-4 {
  width: 100%;
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-stretch {
  align-items: stretch;
}

.text-start {
  text-align: left !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(228, 233, 242, 0.9);
  backdrop-filter: blur(14px);
}

.top-strip {
  background: var(--ip-navy);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.top-strip__inner,
.top-strip__contact,
.top-strip__lang,
.footer__inner,
.footer nav,
.hero__actions,
.form-actions {
  display: flex;
  align-items: center;
}

.top-strip__inner {
  min-height: 42px;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.top-strip__contact,
.top-strip__lang {
  gap: 18px;
  flex-wrap: wrap;
}

.top-strip a:hover,
.footer a:hover {
  color: var(--ip-orange-2);
}

.navbar {
  padding: 14px 0;
}

.navbar > .container {
  display: flex;
  align-items: center;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--ip-heading);
  font-size: 22px;
}

.navbar-brand img {
  width: 78px;
  height: 44px;
  object-fit: contain;
}

.navbar-collapse {
  flex-grow: 1;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  padding: 10px 12px;
  color: #4c5568;
  font-weight: 700;
  font-size: 14px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ip-orange);
}

.navbar-toggler {
  margin-left: auto;
  border: 1px solid var(--ip-line);
  background: var(--ip-white);
  width: 44px;
  height: 40px;
  border-radius: var(--ip-radius);
  display: none;
  align-items: center;
  justify-content: center;
}

.navbar-toggler-icon {
  width: 20px;
  height: 2px;
  background: var(--ip-heading);
  display: block;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ip-heading);
}

.navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler-icon::after {
  top: 7px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--ip-radius);
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary-ip {
  color: var(--ip-white);
  background: linear-gradient(135deg, var(--ip-orange), var(--ip-orange-2));
  box-shadow: 0 14px 32px rgba(244, 122, 61, 0.26);
}

.btn-light-ip {
  color: var(--ip-heading);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero {
  min-height: calc(100vh - 96px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ip-white);
  padding: 86px 0 110px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 18, 32, 0.9) 0%, rgba(10, 18, 32, 0.68) 46%, rgba(10, 18, 32, 0.28) 100%),
    url("../Imges/InfoPeakoverview.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__text {
  max-width: 720px;
}

.hero__logo {
  width: min(360px, 84vw);
  display: block;
  margin-bottom: 22px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.3));
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--ip-orange-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  max-width: 680px;
  color: var(--ip-white);
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  font-weight: 800;
}

.hero__lead {
  max-width: 660px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.75;
}

.hero__actions {
  gap: 14px;
  flex-wrap: wrap;
}

.trust-bar {
  margin-top: -52px;
  position: relative;
  z-index: 4;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--ip-line);
  border-radius: var(--ip-radius);
  background: var(--ip-line);
  box-shadow: var(--ip-shadow);
}

.trust-grid div {
  min-height: 116px;
  padding: 24px;
  background: var(--ip-white);
}

.trust-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ip-heading);
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.trust-grid span {
  color: var(--ip-muted);
  font-size: 14px;
  line-height: 1.5;
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: var(--ip-soft);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section h2,
.operation-band h2,
.contact-intro h2 {
  margin: 0 0 18px;
  color: var(--ip-heading);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 800;
}

.section p,
.contact-intro p {
  color: var(--ip-muted);
  font-size: 16px;
  line-height: 1.8;
}

.media-panel {
  overflow: hidden;
  border-radius: var(--ip-radius);
  box-shadow: var(--ip-shadow);
  background: var(--ip-navy);
}

.media-panel img {
  width: 100%;
  min-height: 440px;
  display: block;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ip-heading);
  line-height: 1.7;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--ip-orange);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--ip-orange);
  border-bottom: 2px solid var(--ip-orange);
  transform: rotate(-45deg);
}

.service-card,
.module-card,
.contact-form,
.support-panel {
  height: 100%;
  padding: 30px;
  border: 1px solid var(--ip-line);
  border-radius: var(--ip-radius);
  background: var(--ip-white);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.06);
}

.service-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.1);
}

.card-number,
.module-card span {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: var(--ip-radius);
  color: var(--ip-orange);
  background: rgba(244, 122, 61, 0.1);
  font-weight: 800;
}

.service-card h3,
.module-card h3,
.support-panel h3 {
  margin: 0 0 12px;
  color: var(--ip-heading);
  font-size: 24px;
  line-height: 1.22;
  font-weight: 800;
}

.expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, margin-top 0.28s ease;
}

.service-card.is-open .expandable {
  max-height: 180px;
  margin-top: 12px;
}

.text-button {
  margin-top: 18px;
  padding: 0;
  color: var(--ip-orange);
  background: none;
  border: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

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

.module-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.operation-band {
  padding-top: 0;
}

.operation-band__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 44px;
  color: var(--ip-white);
  border-radius: var(--ip-radius);
  background:
    linear-gradient(135deg, rgba(16, 25, 43, 0.95), rgba(24, 38, 65, 0.92)),
    url("../Imges/InfoPeakoverview.png") center / cover no-repeat;
}

.operation-band__inner h2,
.operation-band__inner p {
  color: var(--ip-white);
}

.operation-band__inner > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--ip-line);
  border-radius: var(--ip-radius);
  background: var(--ip-white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  background: var(--ip-white);
  color: var(--ip-heading);
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.faq-question span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ip-orange);
  background: rgba(244, 122, 61, 0.1);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--ip-muted);
  line-height: 1.75;
  transition: max-height 0.28s ease, padding-bottom 0.28s ease;
}

.faq-item.active .faq-answer {
  max-height: 170px;
  padding-bottom: 18px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
  color: var(--ip-white);
  background: var(--ip-orange);
}

.support-panel {
  color: var(--ip-white);
  background: linear-gradient(135deg, var(--ip-navy), var(--ip-navy-2));
}

.support-panel h3,
.support-panel p {
  color: var(--ip-white);
}

.support-panel p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
}

.contact {
  background: var(--ip-white);
}

.contact-intro {
  height: 100%;
  padding: 34px;
  border-radius: var(--ip-radius);
  color: var(--ip-white);
  background:
    linear-gradient(135deg, rgba(16, 25, 43, 0.93), rgba(24, 38, 65, 0.88)),
    url("../Imges/InfoPeakoverview.png") center / cover no-repeat;
}

.contact-intro h2,
.contact-intro p {
  color: var(--ip-white);
}

.contact-intro p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ip-heading);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--ip-line);
  border-radius: var(--ip-radius);
  padding: 14px 16px;
  color: var(--ip-heading);
  background: var(--ip-white);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  min-height: 144px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(244, 122, 61, 0.6);
  box-shadow: 0 0 0 4px rgba(244, 122, 61, 0.12);
}

.form-actions {
  gap: 16px;
  flex-wrap: wrap;
}

#formStatus {
  color: var(--ip-muted);
  font-size: 14px;
}

.footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ip-navy);
  font-size: 14px;
}

.footer__inner {
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
}

.footer nav {
  gap: 18px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

@media (min-width: 768px) {
  .col-md-6 {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-5 {
    width: 41.666667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.333333%;
  }

  .navbar-collapse {
    display: flex !important;
    align-items: center;
  }

  .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1200px) {
  .col-xl-4 {
    width: 33.333333%;
  }
}

@media (max-width: 991.98px) {
  .top-strip__inner {
    justify-content: center;
  }

  .navbar-toggler {
    display: inline-flex;
  }

  .navbar-collapse {
    display: none;
    width: 100%;
    padding-top: 16px;
  }

  .navbar-collapse.show {
    display: block;
  }

  .navbar > .container {
    flex-wrap: wrap;
  }

  .navbar-nav {
    align-items: stretch;
    margin-bottom: 16px;
  }

  .nav-link {
    width: 100%;
    padding: 12px 0;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 106px;
  }

  .trust-grid,
  .module-grid,
  .operation-band__inner {
    grid-template-columns: 1fr 1fr;
  }

  .media-panel img {
    min-height: 320px;
  }
}

@media (max-width: 767.98px) {
  .top-strip__contact,
  .top-strip__lang {
    justify-content: center;
  }

  .navbar-brand span {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero__lead {
    font-size: 17px;
  }

  .section {
    padding: 72px 0;
  }

  .trust-grid,
  .module-grid,
  .operation-band__inner {
    grid-template-columns: 1fr;
  }

  .trust-grid div,
  .service-card,
  .module-card,
  .contact-form,
  .support-panel,
  .contact-intro,
  .operation-band__inner {
    padding: 24px;
  }

  .media-panel img {
    min-height: 260px;
  }

  .btn {
    width: 100%;
  }

  .hero__actions {
    width: 100%;
  }
}
