style.css :root {
  --bg: #071521;
  --bg-soft: #102338;
  --text: #eaf0f8;
  --muted: rgba(234, 240, 248, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --card: rgba(255, 255, 255, 0.04);
  --accent: #4f7cff;
  --accent2: #7c3aed;
  --accent3: #3dd9c8;
  --light: #f5f7fb;
  --surface: #ffffff;
  --surface-strong: #eef3ff;
  --ink: #0f172a;
  --ink-soft: #475569;
  --shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  scroll-behavior: smooth;
  background-color: black;
}
body {
  margin: 0;
  font-family: Gilroy, "Segoe UI", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background-color: black;
}
a {
  transition: all 0.2s ease;
}

/* Layout */
.container {
  width: min(1300px, 92vw);
  margin: 0 auto;
}
.section {
  padding: 92px 0;
}
/*HEADER
*/

.top {
  background: black;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  position: relative;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: fixed;
  width: 100%;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav {
  position: relative;
}

/* Brand */
.brand {
  position: relative;
  text-decoration: none;
  flex-shrink: 0;
}

.brand__name {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 1.4rem;
}

.brand__meta {
  margin-top: 6px;
  color: rgba(234, 240, 248, 0.78);
  font-size: 12px;
  opacity: 0.85;
}

/* Navigation */

.links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.links a {
  color: rgba(234, 240, 248, 0.78);
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.02em;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
  font-weight: 500;
}

.links a:hover {
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 850px) {
  .nav {
    padding-right: 3.2rem;
  }
}
.nav-cta {
  color: rgba(234, 240, 248, 0.78);
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  .nav-cta:hover {
    transform: translateY(-1px);
  }

  .links a {
    position: relative;
  }
  right: 0.5rem;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: white;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 220ms cubic-bezier(0.2, 0.9, 0.3, 1);
  border-radius: 1px;
  opacity: 0.95;
}
.links a:hover::after,
.links a.active::after {
  transform: scaleX(1);
}

/* HAMBURGER*/

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.nav-toggle {
  position: absolute;
  right: 0.5rem;
  z-index: 1100;
}

.nav-toggle .bar {
  width: 21px;
  height: 2px;
  background: #fff;
  border-radius: 10px;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.nav-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 2.8rem 2.8rem;
  background:
    radial-gradient(
      650px 450px at 0% 15%,
      rgba(200, 164, 92, 0.12),
      transparent 70%
    ),
    radial-gradient(
      650px 450px at 100% 15%,
      rgba(200, 164, 92, 0.12),
      transparent 70%
    ),
    linear-gradient(180deg, #03070c 0%, #07111c 50%, #03070c 100%);
  padding: 90px 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  align-items: center;
}

/* Left content */

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

.hero__eyebrow {
  display: inline-flex;
  align-items: center;

  margin-bottom: 22px;

  color: rgba(234, 240, 248, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

/* Title */

.hero__visual {
  display: flex;
  justify-content: flex-end;

  position: relative;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
}

/* Lead */

.hero__lead {
  margin-top: 24px;
  color: rgba(234, 240, 248, 0.78);
  max-width: 600px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.hero__actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 14px;
  padding: 15px 20px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

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

.btn-primary {
  background: #c8a45c;
  color: #fff;
}

.phone {
  color: rgba(234, 240, 248, 0.75);
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 15px 17px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.phone a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.hero__visual {
  display: flex;
  justify-content: flex-end;

  position: relative;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
}

.hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero__title {
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: white;
}

.brand__meta {
  color: #c8a45c;
  font-size: 15px;
  font-weight: 500;
}

.hero__title-span {
  color: #c8a45c;
}
.hero__image-wrap:hover .hero__image {
  transform: scale(1.04);
}

.project-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.project-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-image {
    margin-top: 20px;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: center;
}

.team-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-image {
    margin-top: 18px;
  }
}

.hero__image-label {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero__image-content strong {
  display: block;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero__image-content strong span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
}

/*TABLET*/

@media (max-width: 1050px) {
  .links {
    gap: 12px;
  }

  .links a {
    font-size: 14px;
  }

  .hero {
    padding: 70px 0;
  }

  .hero__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(320px, 0.8fr);
    margin-top: 4rem;
    gap: 40px;
  }

  .hero__title {
    font-size: clamp(42px, 6vw, 65px);
  }
}

/* MOBILE NAVIGATION*/

@media (max-width: 850px) {
  .nav-toggle {
    display: flex;
  }

  .links {
    position: absolute;
    left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 12px 14px;
    background: rgba(3, 7, 12, 0.97);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) scale(0.96);
    transform-origin: right center;
    transition: all 0.25s ease;
    z-index: 999;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }

  .links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(34%) scale(1);
  }

  .links a {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .brand__name {
    font-size: 1.15rem;
  }

  .brand__meta {
    font-size: 10px;
    margin-top: 4px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding: 50px 0 60px;
  }

  .hero__eyebrow {
    font-size: 9px;
    margin-bottom: 16px;
  }

  .hero__title {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 0.98;
    text-align: center;
  }

  .hero__lead {
    margin-top: 20px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .phone {
    text-align: center;
    width: 100%;
  }

  .hero__visual {
    width: 100%;
  }

  .hero__image-wrap {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .hero__image-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .hero__image-label {
    font-size: 8px;
    margin-bottom: 8px;
  }

  .hero__image-content strong {
    font-size: 27px;
  }
}

/* FIRST SECTION MARKETING  */
.marketing-wrapper {
  width: 100%;
  background: black;
  padding-top: 3rem;
  padding-bottom: 3rem;
  box-shadow: 0 20px 40px -12px rgba(0, 20, 40, 0.12);
  transition: padding 0.2s;
}

.marketing-head {
  margin-bottom: 3rem;
}

.marketing-head h2 {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: white;
  margin: auto;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-align: center;
}

.marketing-head .head-sub {
  font-size: 1rem;
  color: #93a0ab;
  text-align: center;
  margin: auto;
  line-height: 1.6;
  font-weight: 400;
  width: 100%;
  max-width: 60%;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.insight-card {
  background: black;
  border-radius: 2rem;
  padding: 1.8rem 1.8rem 2rem;
  transition: background 0.15s;
  height: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  border: 1px solid #353434;
  color: white;
}

.insight-card__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.insight-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.insight-block__header {
  display: flex;
  align-items: center;
  /* gap: 0.6rem; */
  font-weight: 600;
  font-size: 1.2rem;
  color: white;
  letter-spacing: -0.01em;
}

.insight-block__icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.insight-block__text {
  color: #2f4052;
  font-size: 0.96rem;
  line-height: 1.6;
}

.insight-block__text.muted {
  color: #93a0ab;
}

.insight-divider {
  height: 1px;
  background: #e0e8f0;
  margin: 0.25rem 0 0.5rem 0;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .marketing-head h2 {
    font-size: 1.9rem;
  }
  .card-grid {
    gap: 1.5rem;
  }
  .insight-card {
    padding: 1.5rem;
  }
  .marketing-head .head-sub {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .marketing-head h2 {
    font-size: 1.7rem;
  }
  .marketing-head .head-sub {
    font-size: 0.95rem;
  }
  .insight-block__header {
    font-size: 1rem;
  }
  .insight-block__text {
    font-size: 0.92rem;
    padding-left: 0rem;
    margin-top: 0.2rem;
  }
  .insight-block__icon {
    width: 40px;
    height: 40px;
  }
  .insight-card {
    padding: 1.3rem;
    border-radius: 1.6rem;
  }
  /* .marketing-wrapper {
    padding: 1.5rem 1rem;
  } */
}

@media (max-width: 400px) {
  .marketing-head h2 {
    font-size: 1.4rem;
  }
  .insight-block__header {
    flex-wrap: wrap;
  }
}

.insight-block__icon {
  border-radius: 10px;
  padding: 4px;
}
/* END OF THIS SECTION */

/* Intro section */
.section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: flex-start;
}
.section__title {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}
.section__title h2 {
  margin: 0 auto 18px;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.05em;
  line-height: 1.08;
  color: #0f172a;
  max-width: 720px;
}
.section__title .muted {
  margin: 0 auto;
  max-width: 720px;
}
.muted {
  color: rgba(15, 23, 42, 0.72);
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 12px 36px;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}
.mini {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 24px 0 26px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: transparent;
  box-shadow: none;
  overflow: visible;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.mini__title {
  margin: 0;
  padding: 0 0 8px 0;
  font-size: clamp(0.95rem, 1.3vw, 2rem);
  line-height: 1.38;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #0f172a;
}

.mini__content {
  flex: 1 1 auto;
}

.mini__icon {
  flex: 0 0 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 12px;
}
.mini__icon img {
  width: 72px;
  height: auto;
  display: block;
}
.mini p {
  margin: 0;
  line-height: 1.75;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  color: rgba(15, 23, 42, 0.72);
}
.mini__num {
  position: absolute;
  left: 0;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(79, 124, 255, 0.12),
    rgba(124, 58, 237, 0.05)
  );
  border: 1px solid rgba(79, 124, 255, 0.14);
  color: #1d4ed8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.marketing {
  background: none;
}

.services-wrap {
  width: 100%;
  background: black;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.services-header {
  margin-bottom: 2.8rem;
  margin: auto;
  text-align: Center;
}

.services-header h2 {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 0.6rem;
  line-height: 1.2;
  margin: auto;
  text-align: center;
}

.services-header p {
  font-size: 1rem;
  color: #93a0ab;
  max-width: 780px;
  line-height: 1.6;
  margin: auto;
  margin-top: 1.2rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.service-item {
  background: black;
  border-radius: 1.6rem;
  padding: 1.3rem 1.3rem 1.3rem 1.3rem;
  box-shadow:
    0 8px 20px rgba(0, 20, 40, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.02);
  transition:
    box-shadow 0.2s,
    transform 0.1s;
  display: flex;
  flex-direction: column;
  border: 1px solid #e8ebef;
  box-shadow: 0 16px 32px -8px rgba(0, 20, 40, 0.12);
}

.service-item:hover {
  box-shadow: 0 16px 32px -8px rgba(0, 20, 40, 0.12);
}

.service-item__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: #0b253a;
  letter-spacing: -0.01em;
}

.service-item__title h3 {
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  line-height: 1.3;
}

.service-item__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 10px;
  padding: 5px;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item__icon img {
  display: block;
  width: 50px;
  height: 50px;
  stroke-width: 1.8;
  fill: none;
}

.service-item p {
  font-size: 0.95rem;
  color: #93a0ab;
  line-height: 1.6;
  margin-top: 0.1rem;
  padding-right: 0.2rem;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}

@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .services-header h2 {
    font-size: 1.8rem;
  }
  .services-header p {
    font-size: 0.95rem;
  }
  .service-item {
    padding: 1.5rem 1.4rem 1.5rem 1.5rem;
  }
  .service-item__title {
    font-size: 1rem;
  }
  .service-item__title h3 {
    font-size: 1.2rem;
  }
  .service-item p {
    font-size: 0.92rem;
  }
  .service-item__icon {
    width: 40px;
    height: 40px;
    padding: 4px;
  }
  .service-item__icon svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 420px) {
  .services-header h2 {
    font-size: 1.5rem;
  }
  .service-item__title {
    flex-wrap: wrap;
  }
  .service-item__icon {
    margin-left: auto;
  }
}

/* helper */
.muted {
  color: #3f5367;
}
.text-muted {
  color: #3f5367;
}
/*END OF SERVICES*/

/* PROCESS SECTION*/

.process-wrapper {
  width: 100%;
  max-width: 1300px;
  margin: Auto;
  background: black;
  box-shadow: 0 20px 40px -10px rgba(0, 20, 40, 0.08);
  transition: padding 0.2s;
}

/* HEADER - centered */
.process-head {
  text-align: center;
  margin-bottom: 3rem;
}

.process-head h2 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.process-head .process-intro {
  font-size: 1rem;
  color: #93a0ab;
  max-width: 680px;
  line-height: 1.6;
  margin: 0 auto;
}

.process-container {
  display: flex;
  gap: 3rem;
  align-items: stretch;
  width: 100%;
  max-width: 1300px;
  margin: auto;
}

.process-left {
  flex: 1.2;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.process-right {
  flex: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-right .image-full {
  width: 85%;
  height: 85%;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(26, 61, 92, 0.18);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  flex-shrink: 0;
}

.process-right .image-full:hover {
  transform: scale(1.01);
  box-shadow: 0 16px 40px rgba(26, 61, 92, 0.25);
}

.process-right .image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: relative;
  padding-left: 2.2rem;
  flex: 1;
  justify-content: space-between;
}

.steps-timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: linear-gradient(180deg, #c8a45c 0%, #c8a45c 40%, #c8a45c 100%);
  border-radius: 6px;
  opacity: 0.5;
}

.step-row {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  position: relative;
  padding: 0.2rem 0.2rem 0.2rem 0;
  transition: transform 0.2s ease;
  border-radius: 1.2rem;
  padding-left: 0.4rem;
  opacity: 0;
  animation: fadeStep 0.5s ease forwards;
}

.step-row:nth-child(1) {
  animation-delay: 0.05s;
}
.step-row:nth-child(2) {
  animation-delay: 0.12s;
}
.step-row:nth-child(3) {
  animation-delay: 0.19s;
}
.step-row:nth-child(4) {
  animation-delay: 0.26s;
}
.step-row:nth-child(5) {
  animation-delay: 0.33s;
}

@keyframes fadeStep {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-badge {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: #c8a45c;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  box-shadow: 0 6px 14px rgba(22, 78, 130, 0.15);
  transition:
    background 0.2s,
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  z-index: 2;
}

.step-row:hover .step-badge {
  transform: scale(1.02) translateX(2px);
  box-shadow: 0 8px 20px rgba(18, 67, 112, 0.25);
}

.step-detail {
  flex: 1;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  border-bottom: 1px solid #c8a45c;
  transition: border-color 0.2s;
  margin-left: 0.2rem;
}

.step-row:last-child .step-detail {
  border-bottom: none;
}

.step-detail h3 {
  font-weight: 600;
  font-size: 1.08rem;
  color: white;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.step-detail p {
  font-size: 0.93rem;
  color: #93a0ab;
  line-height: 1.6;
  max-width: 600px;
  transition: color 0.2s;
}

.step-row::after {
  content: "";
  position: absolute;
  left: -22px;
  top: 20px;
  width: 8px;
  height: 8px;
  background: #c7ddec;
  border-radius: 20px;
  opacity: 0.5;
  transition:
    background 0.25s,
    transform 0.2s;
  z-index: 1;
}

.step-row:hover::after {
  background: #2b6c9e;
  transform: scale(1.3);
  opacity: 0.7;
}

.muted {
  color: #3f5367;
}

@media (max-width: 1024px) {
  .process-wrapper {
    padding: 2.5rem 1.8rem 3rem;
  }
  .process-container {
    gap: 2rem;
  }
  .process-head h2 {
    font-size: 2rem;
  }
  .process-right .image-full {
    width: 90%;
    height: 80%;
  }
}

@media (max-width: 820px) {
  .process-container {
    flex-direction: column;
    gap: 2.2rem;
  }
  .process-right {
    order: -1;
    width: 100%;
    min-height: 280px;
  }
  .process-right .image-full {
    width: 90%;
    height: 100%;
    border-radius: 1.6rem;
  }
  .steps-timeline {
    padding-left: 1.8rem;
    gap: 1.2rem;
    justify-content: flex-start;
  }
  .step-badge {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
  .step-detail h3 {
    font-size: 1.05rem;
  }
  .step-detail p {
    font-size: 0.92rem;
  }
  .steps-timeline::before {
    left: 13px;
  }
  .step-row::after {
    left: -18px;
    top: 18px;
    width: 6px;
    height: 6px;
  }
  .process-head .process-intro {
    max-width: 100%;
    padding: 0 0.5rem;
  }
}

@media (max-width: 550px) {
  .process-wrapper {
    padding: 1.8rem 1rem 2.2rem;
  }
  .process-head h2 {
    font-size: 1.6rem;
  }
  .process-head .process-intro {
    font-size: 0.92rem;
  }
  .steps-timeline {
    padding-left: 0.8rem;
    gap: 1rem;
  }
  .step-row {
    gap: 0.8rem;
    padding-right: 0;
    flex-wrap: wrap;
  }
  .step-badge {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    min-width: 36px;
  }
  .step-detail {
    flex: 1 1 100%;
    margin-left: 0;
    padding-top: 0.1rem;
  }
  .step-detail h3 {
    font-size: 1rem;
  }
  .step-detail p {
    font-size: 0.88rem;
  }
  .steps-timeline::before {
    left: 9px;
    top: 10px;
    bottom: 10px;
    width: 2px;
  }
  .step-row::after {
    left: -12px;
    top: 16px;
    width: 5px;
    height: 5px;
  }
  .step-row:hover .step-badge {
    transform: scale(1.01);
  }
  .process-right {
    min-height: 200px;
  }
  .process-right .image-full {
    width: 95%;
    border-radius: 1.2rem;
  }
}

@media (max-width: 380px) {
  .step-badge {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    min-width: 32px;
  }
  .step-detail h3 {
    font-size: 0.95rem;
  }
  .process-right {
    min-height: 160px;
  }
  .process-right .image-full {
    width: 98%;
    border-radius: 1rem;
  }
}
/* END OF PROCESS SECTION*/

/*TRADE SECTION*/
.trade-wrap {
  width: 100%;
  background: black;
  padding: 3rem 2.5rem 3.8rem;
}

.trade-head {
  margin-bottom: 2.8rem;
  color: white;
}

.trade-head h2 {
  margin: auto;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.2rem;
  text-align: center;
}

.trade-head .trade-sub {
  font-size: 1rem;
  color: white;
  max-width: 700px;
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.2rem;
}

.feature-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 0.4rem 0.2rem 0.8rem 0;
  border-bottom: 1px solid #eef4fa;
  transition:
    border-color 0.2s,
    transform 0.2s;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.feature-item:nth-child(1) {
  animation-delay: 0.05s;
}
.feature-item:nth-child(2) {
  animation-delay: 0.12s;
}
.feature-item:nth-child(3) {
  animation-delay: 0.19s;
}
.feature-item:nth-child(4) {
  animation-delay: 0.26s;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item:hover {
  border-bottom-color: #b6d0e8;
  transform: translateX(4px);
}

/* icon circle */
.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    color 0.25s,
    box-shadow 0.25s,
    transform 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.feature-item:hover .feature-icon {
  /* background: #1a3d5c; */
  box-shadow: 0 6px 14px rgba(22, 78, 130, 0.18);
  transform: scale(1.02);
}

.feature-icon img {
  width: 35px;
  height: 35px;
  stroke: #1a3d5c;
  stroke-width: 1.8;
  fill: none;
  transition: stroke 0.25s;
}

.feature-item:hover .feature-icon img {
  stroke: #ffffff;
}

.feature-text {
  flex: 1;
}

.feature-text h3 {
  font-weight: 600;
  font-size: 1.08rem;
  color: white;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.feature-item:hover .feature-text h3 {
  /* color: #00427a; */
  color: white;
}

.feature-text p {
  font-size: 0.94rem;
  color: white;
  line-height: 1.6;
  max-width: 520px;
  transition: color 0.2s;
}

.feature-item:hover .feature-text p {
  color: white;
}

.muted {
  color: white;
}

@media (max-width: 920px) {
  .trade-wrap {
    padding: 2.5rem 1.8rem 3rem;
  }
  .trade-head h2 {
    font-size: 2rem;
  }
  .feature-grid {
    gap: 1.6rem 1.8rem;
  }
  .feature-text h3 {
    font-size: 1rem;
  }
  .feature-text p {
    font-size: 0.9rem;
  }
  .feature-icon {
    width: 44px;
    height: 44px;
  }
  .feature-icon svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 700px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .trade-wrap {
    padding: 2rem 1.2rem 2.5rem;
  }
  .trade-head h2 {
    font-size: 1.7rem;
  }
  .trade-head .trade-sub {
    font-size: 0.95rem;
  }
  .feature-item {
    padding: 0.6rem 0.2rem 0.8rem 0;
    gap: 1rem;
    border-bottom: 1px solid #eef4fa;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  .feature-icon svg {
    width: 20px;
    height: 20px;
  }
  .feature-text h3 {
    font-size: 0.98rem;
  }
  .feature-text p {
    font-size: 0.88rem;
  }
  .feature-item:hover {
    transform: translateX(0);
  }
}

@media (max-width: 420px) {
  .trade-wrap {
    padding: 1.5rem 0.9rem 2rem;
  }
  .trade-head h2 {
    font-size: 1.4rem;
  }
  .feature-item {
    gap: 0.7rem;
    flex-wrap: wrap;
  }
  .feature-icon {
    width: 36px;
    height: 36px;
  }
  .feature-icon svg {
    width: 18px;
    height: 18px;
  }
  .feature-text h3 {
    font-size: 0.95rem;
  }
  .feature-text p {
    font-size: 0.85rem;
  }
}
/*END OF TRADE SECTION*/

/* OTHER SECTIONS WITH ANIMATION */
/* .pcm-section {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  padding: 1.5rem;
}

.pcm-section-title {
  font-size: 2.2rem;
  padding-top: 2rem;
  margin: auto;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
  padding-bottom: 0.5rem;
  text-align: center;
}

.pcm-section-sub {
  font-size: 1.15rem;
  font-weight: 400;
  color: #93a0ab;
  text-align: center;
  margin: auto;
  margin-bottom: 2.5rem;
  max-width: 720px;
  line-height: 1.7;
  opacity: 0.9;
}

.pcm-grid-variable {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pcm-card-var {
  background: black;
  border-radius: 28px;
  padding: 1.8rem 1.5rem 2rem;
  box-shadow: 0 12px 32px -10px rgba(18, 40, 80, 0.06);
  border: 1px solid rgba(203, 218, 241, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.3s ease,
    border-color 0.2s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: pcmFadeUp 0.6s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}
.pcm-card-var:nth-child(1) {
  animation-delay: 0.04s;
}
.pcm-card-var:nth-child(2) {
  animation-delay: 0.08s;
}
.pcm-card-var:nth-child(3) {
  animation-delay: 0.12s;
}
.pcm-card-var:nth-child(4) {
  animation-delay: 0.16s;
}
.pcm-card-var:nth-child(5) {
  animation-delay: 0.2s;
}

.pcm-card-var:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -16px rgba(28, 60, 130, 0.16);
  border-color: #b7cef5;
}

.pcm-card-var::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: black;
  opacity: 0.2;
  transition: opacity 0.3s;
}
.pcm-card-var:hover::before {
  opacity: 0.8;
}

.pcm-card-icon {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pcm-card-icon svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  stroke: #2b4cff;
  stroke-width: 1.7;
  fill: none;
  opacity: 0.7;
}

.pcm-card-var h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
  color: white;
}
.pcm-card-var p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #93a0ab;
  opacity: 0.85;
  flex: 1;
}

.pcm-card-var:nth-child(1) {
  grid-column: span 2;
}

.pcm-card-var:nth-child(2) {
  grid-column: span 1;
}

.pcm-card-var:nth-child(3) {
  grid-column: span 1;
}

.pcm-card-var:nth-child(4) {
  grid-column: span 2;
}

.pcm-card-var:nth-child(5) {
  grid-column: span 2;
}

@keyframes pcmFadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .pcm-grid-variable {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  .pcm-card-var:nth-child(1) {
    grid-column: span 2;
  }
  .pcm-card-var:nth-child(2) {
    grid-column: span 1;
  }
  .pcm-card-var:nth-child(3) {
    grid-column: span 1;
  }
  .pcm-card-var:nth-child(4) {
    grid-column: span 2;
  }
  .pcm-card-var:nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .pcm-grid-variable {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .pcm-card-var:nth-child(1) {
    grid-column: span 2;
  }
  .pcm-card-var:nth-child(2) {
    grid-column: span 1;
  }
  .pcm-card-var:nth-child(3) {
    grid-column: span 1;
  }
  .pcm-card-var:nth-child(4) {
    grid-column: span 2;
  }
  .pcm-card-var:nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  body {
    padding: 1rem 0.8rem;
  }
  .pcm-grid-variable {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pcm-card-var {
    grid-column: span 1 !important;
    padding: 1.4rem;
    border-radius: 22px;
  }
  .pcm-section-title {
    font-size: 1.6rem;
  }
  .pcm-card-var h3 {
    font-size: 1.1rem;
  }
  .pcm-card-var p {
    font-size: 0.9rem;
  }
} */

/*  WE HOLD WHAT WE HOLD*/

.pcm-holding-section {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 1.5rem;

  align-items: center;
}

.pcm-content {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4.5rem;
}
.pcm-holding-visual {
  position: relative;
  width: 100%;
}

.pcm-image-wrap {
  position: relative;
  width: 100%;
}

/* image */

.pcm-image-wrap img {
  width: 100%;
}

/* image hover */
.pcm-holding-section:hover .pcm-image-wrap img {
  transform: scale(1.035);
}

.pcm-holding-content {
  width: 100%;
}

.pcm-holding-header {
  margin-bottom: 2rem;
}

.pcm-holding-header .pcm-section-title {
  padding-top: 0;
  margin: 0 0 1rem;
  text-align: center;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: white;
}

.pcm-holding-header .pcm-section-sub {
  width: 100%;
  max-width: 680px;
  margin: auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #93a0ab;
  opacity: 0.9;
}

.pcm-holding-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pcm-holding-cards .pcm-card-var:last-child {
  grid-column: 1 / -1;
  width: calc(50% - 0.5rem);
  justify-self: center;
}

/* card */

.pcm-card-var {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 235px;
  padding: 1.35rem;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.015)
  );

  border-radius: 22px;
  border: 1px solid rgba(203, 218, 241, 0.16);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  opacity: 0;
  animation: pcmFadeUp 0.6s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

/* animation delays */

.pcm-card-var:nth-child(1) {
  animation-delay: 0.05s;
}

.pcm-card-var:nth-child(2) {
  animation-delay: 0.1s;
}

.pcm-card-var:nth-child(3) {
  animation-delay: 0.15s;
}

.pcm-card-var:nth-child(4) {
  animation-delay: 0.2s;
}

.pcm-card-var:nth-child(5) {
  animation-delay: 0.25s;
}

/* hover */

.pcm-card-var:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 164, 92, 0.45);
  background: linear-gradient(
    145deg,
    rgba(200, 164, 92, 0.06),
    rgba(255, 255, 255, 0.018)
  );

  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.28),
    0 0 25px rgba(200, 164, 92, 0.05);
}

/* gold top line */

.pcm-card-var::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #c8a45c;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.pcm-card-var:hover::before {
  opacity: 1;

  transform: scaleX(1);
}

.pcm-card-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 50px;
  height: 50px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(200, 164, 92, 0.06);
  border: 1px solid rgba(200, 164, 92, 0.12);
}

.pcm-card-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.pcm-card-var:hover .pcm-card-icon img {
  transform: scale(1.08);
}
.pcm-card-var h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: white;
}

.pcm-card-var p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #93a0ab;
  opacity: 0.9;
  margin-top: 3rem;
}

@keyframes pcmFadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .pcm-holding-section {
    grid-template-columns: 0.75fr 1.25fr;

    gap: 2.5rem;
  }

  /* .pcm-image-wrap {
    height: 600px;
  } */

  .pcm-holding-visual {
    min-height: 600px;
  }

  .pcm-card-var {
    min-height: 220px;
  }
}

@media (max-width: 900px) {
  .pcm-holding-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pcm-holding-section {
    grid-template-columns: 1fr;

    gap: 2.5rem;
  }

  .pcm-holding-visual {
    min-height: 420px;
  }

  /* .pcm-image-wrap {
    height: 420px;
  } */

  .pcm-holding-header .pcm-section-title,
  .pcm-holding-header .pcm-section-sub {
    text-align: center;
  }

  .pcm-holding-header .pcm-section-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .pcm-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .pcm-holding-cards {
    grid-template-columns: 1fr;
  }

  .pcm-holding-section {
    padding: 3rem 1rem;
    gap: 2rem;
  }

  .pcm-holding-visual {
    min-height: 320px;
  }

  .pcm-image-wrap {
    /* height: 320px; */
    border-radius: 24px;
  }

  .pcm-holding-header {
    margin-bottom: 1.5rem;
  }

  .pcm-holding-header .pcm-section-title {
    font-size: 1.9rem;
    margin-bottom: 0.8rem;
  }

  .pcm-holding-header .pcm-section-sub {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .pcm-holding-cards {
    grid-template-columns: 1fr;
  }

  .pcm-card-var:last-child {
    grid-column: auto;
  }

  .pcm-card-var {
    min-height: auto;
    padding: 1.25rem;
    border-radius: 20px;
  }

  .pcm-card-var p {
    font-size: 0.88rem;
  }

  .pcm-holding-cards .pcm-card-var:last-child {
    grid-column: 1 / -1;
    width: calc(100% - 0.5rem);
    justify-self: center;
  }
}

@media (max-width: 400px) {
  /* .pcm-image-wrap {
    height: 280px;
  } */

  .pcm-holding-visual {
    min-height: 280px;
  }

  .pcm-holding-header .pcm-section-title {
    font-size: 1.65rem;
  }
}
/* END OF SECTIONS */

/* COMPANY SECTION */
.container-company {
  display: grid;
  max-width: 1300px;
  width: 100%;
  margin: auto;
}

.company-section {
  border-radius: 40px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(18, 40, 80, 0.06);
  border: 1px solid rgba(203, 218, 241, 0.3);
}

.company-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.company-title-group {
  flex: 1;
}

.company-badge {
  display: inline-block;
  background: rgba(43, 76, 255, 0.06);
  padding: 0.25rem 1.2rem;
  border-radius: 60px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2b4cff;
  border: 1px solid rgba(43, 76, 255, 0.08);
  margin-bottom: 0.6rem;
}

.company-title-group h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: white;
  text-align: center;
  margin: Auto;
}

.company-title-group h2 .highlight {
  color: #c8a45c;
}
.company-description {
  font-size: 1.1rem;
  text-align: center;
  margin: auto;
  line-height: 1.8;
  color: #93a0ab;
  opacity: 0.85;
  padding-left: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.company-card {
  background: black;
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  border: 1px solid rgb(181, 148, 84);
  transition:
    transform 0.25s ease,
    box-shadow 0.3s ease,
    border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.company-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(28, 60, 130, 0.1);
  background: #1a1a1a;
}

.company-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  opacity: 0.15;
  transition: opacity 0.3s;
}
.company-card:hover::before {
  opacity: 0.8;
}

.company-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(43, 76, 255, 0.06);
  border: 1px solid rgba(43, 76, 255, 0.06);
}

.company-card .card-icon img {
  width: 40px;
  height: 40px;
  stroke: #f0f0f2;
  stroke-width: 1.8;
  fill: none;
}

.company-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.4rem;
}

.company-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #93a0ab;
  opacity: 0.85;
}

@media (max-width: 1024px) {
  .company-section {
    padding: 2.5rem 2.5rem;
  }
  .company-title-group h2 {
    font-size: 2.4rem;
  }
  .company-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container-company {
    padding: 1.2rem;
    border-radius: 28px;
  }
  .company-header {
    flex-direction: column;
    gap: 1rem;
  }
  .company-title-group {
    margin: auto;
    text-align: center;
  }
  .company-title-group h2 {
    font-size: 2rem;
  }
  .company-description {
    font-size: 1rem;
    padding-left: 1rem;
    border-left-width: 3px;
  }
  .company-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .company-card {
    padding: 1.4rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .company-section {
    padding: 1.5rem 1rem;
    border-radius: 24px;
  }
  .company-title-group h2 {
    font-size: 1.6rem;
  }
  .company-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .company-card {
    padding: 1.2rem 1rem;
  }
  .company-description {
    font-size: 0.95rem;
    padding-left: 0.8rem;
  }
  .company-meta-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
  }
}

/* END OF COMPANY SECTION */

/* FAQ SECTION*/
.faq-section {
  margin: auto;
  max-width: 1300px;
  width: 100%;
  padding: 3.5rem 3rem;
}

/* header */
.section-header {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-header h2 {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: white;
  text-align: center;
  margin: auto;
}

.section-header .count-badge {
  font-size: 0.8rem;
  font-weight: 500;
  color: white;
  background: #f0ece8;
  padding: 0.3rem 1.2rem;
  border-radius: 40px;
  border: 1px solid #e0d8d0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  border-bottom: 1px solid #efebe7;
  transition: 0.2s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.2rem;
  cursor: pointer;
  gap: 1.5rem;
  user-select: none;
  transition: 0.15s;
}

.faq-question:hover {
  padding-left: 0.4rem;
}

.faq-question .q-text {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #93a0ab;
  letter-spacing: -0.01em;
}

.faq-question .plus-btn {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #c8a45c;
  border: 1px solid #e0d8d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 300;
  color: white;
  transition: all 0.25s ease;
  cursor: pointer;
  line-height: 1;
}

.faq-question .plus-btn:hover {
  background: #e0d8d0;
  border-color: #cbc1b6;
}

.faq-item.active .plus-btn {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.35s ease;
  padding: 0 0.2rem;
  color: #3d3731;
  line-height: 1.65;
  font-size: 1rem;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 0.2rem 1.6rem 0.2rem;
}

.faq-answer p {
  margin-bottom: 0.3rem;
  padding-left: 1.8rem;
  border-left: 3px solid #e0d8d0;
  padding-left: 1.2rem;
  color: #93a0ab;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* responsive */
@media (max-width: 700px) {
  .faq-section {
    padding: 2rem 1.2rem;
    border-radius: 2rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .faq-question {
    padding: 0.8rem 0.2rem;
  }
  .faq-question h3 {
    font-size: 0.95rem;
  }
  .faq-answer p {
    padding-left: 0.8rem;
    font-size: 0.92rem;
  }
  .faq-item.active .faq-answer {
    padding: 0 0.2rem 1.2rem 0.2rem;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.6rem;
  }
}
/* END OF FAQ SECTION */
.footer {
  width: 100%;
  background: black;
  border-radius: 0;
  padding: 3rem 2.5rem 2rem;
  box-shadow: 0 20px 40px -10px rgba(0, 20, 40, 0.08);
  transition: padding 0.2s;
  margin-top: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.footer__grid {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
  max-width: 1300px;
  margin: auto;
}

.footer__copy {
  flex: 1;
}

.footer__h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.address {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

.address strong {
  color: rgba(255, 255, 255, 0.9);
}

.formCard {
  flex: 0.8;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.6rem;
  padding: 1.8rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.formCard__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.field {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.field:last-of-type {
  border-bottom: none;
}

.field .label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.field .value {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-align: right;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 1rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/*  responsive  */
@media (max-width: 1024px) {
  .cta-section > .container {
    padding: 2.6rem 1.6rem;
    border-radius: 1.6rem 1.6rem 1.6rem 1.6rem;
  }
  .cta-section h2 {
    font-size: 2rem;
  }
  .footer {
    padding: 2.5rem 2rem 2rem;
    border-radius: 2rem 2rem 0 0;
  }
}

@media (max-width: 820px) {
  .footer__grid {
    flex-direction: column;
    gap: 2rem;
  }
  .formCard {
    flex: 1;
  }
  .cta-section h2 {
    font-size: 1.8rem;
  }
  .cta-section p {
    font-size: 0.98rem;
  }
  .footer__h2 {
    font-size: 1.4rem;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* Ensure footer heading scales and wraps nicely on very small screens */
@media (max-width: 420px) {
  .footer__h2 {
    font-size: clamp(1rem, 6.5vw, 1.3rem);
    line-height: 1.15;
    word-break: break-word;
  }
}

@media (max-width: 550px) {
  .cta-section > .container {
    padding: 1.6rem 1rem;
    border-radius: 1.1rem 1.1rem 1.6rem 1.6rem;
  }
  .cta-section h2 {
    font-size: 1.5rem;
  }
  .cta-section p {
    font-size: 0.92rem;
  }
  .footer {
    padding: 2rem 1.2rem 1.5rem;
    border-radius: 1.6rem 1.6rem 0 0;
  }
  .footer__h2 {
    font-size: 1.2rem;
  }
  .formCard {
    padding: 1.4rem 1.2rem;
  }
  .field {
    flex-direction: column;
    gap: 0.2rem;
  }
  .field .value {
    text-align: left;
  }
  .footer__bottom {
    font-size: 0.75rem;
  }
}

@media (max-width: 380px) {
  .cta-section h2 {
    font-size: 1.3rem;
  }
  .cta-section p {
    font-size: 0.85rem;
  }
  .footer__h2 {
    font-size: 1.1rem;
  }
}
/* Responsiveness */
@media (max-width: 1024px) {
  .hero__grid,
  .section__grid,
  .smallteam,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .services__grid,
  .steps,
  .twoCols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__visual {
    justify-content: flex-start;
  }

  .service-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1200px, calc(100vw - 28px));
  }

  .top {
    padding-top: 14px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .links {
    width: 100%;
    justify-content: flex-start;
    gap: 10px 14px;
  }

  .row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .twoCols,
  .services__grid,
  .steps,
  .footer__grid {
    grid-template-columns: 1fr;
  }

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

  .mini {
    flex-direction: column;
    gap: 12px;
  }

  .mini__icon {
    align-self: center;
    padding-left: 0;
  }

  .mini__icon img {
    width: 56px;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 48px;
  }

  .hero__title {
    font-size: clamp(36px, 10vw, 48px);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .phone {
    width: 100%;
  }

  .services__grid,
  .steps,
  .twoCols {
    grid-template-columns: 1fr;
  }

  .mini,
  .step,
  .formCard {
    padding-left: 16px;
    padding-right: 16px;
  }

  .field {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .value {
    text-align: left;
  }

  .footer__statement h2,
  .footer__h2 {
    font-size: clamp(26px, 8vw, 36px);
  }
}

/* Reveal animation for sequential load-in */
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.995);
  transition:
    opacity 560ms cubic-bezier(0.2, 0.9, 0.3, 1),
    transform 560ms cubic-bezier(0.2, 0.9, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* 
   SCROLL ANIMATIONS*/

.animate-on-scroll,
.animate-slide-left,
.animate-slide-right,
.animate-scale {
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}

/* Fade + move up */
.animate-on-scroll {
  transform: translateY(40px);
}

/* Slide from left */
.animate-slide-left {
  transform: translateX(-60px);
}

/* Slide from right */
.animate-slide-right {
  transform: translateX(60px);
}

/* Scale */
.animate-scale {
  transform: scale(0.92);
}

/* Activated state */
.animate-on-scroll.animated,
.animate-slide-left.animated,
.animate-slide-right.animated,
.animate-scale.animated {
  opacity: 1;
  transform: translate(0) scale(1);
}

.animate-delay-1 {
  transition-delay: 0.1s;
}

.animate-delay-2 {
  transition-delay: 0.2s;
}

.animate-delay-3 {
  transition-delay: 0.3s;
}

.animate-delay-4 {
  transition-delay: 0.4s;
}

.animate-delay-5 {
  transition-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .animate-slide-left,
  .animate-slide-right,
  .animate-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
