/* ============================================================
   Homepage Styles
   ============================================================ */

/* =========================
   HERO
   ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--color-dark-bg);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.7) 0%, rgba(8, 8, 8, 0.15) 35%, rgba(8, 8, 8, 0.5) 70%, rgba(8, 8, 8, 0.97) 100%),
    linear-gradient(90deg, rgba(8, 8, 8, 0.6) 0%, transparent 55%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 4;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 160px var(--section-pad-x) 120px;
  width: 100%;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: heroFade 0.8s var(--ease-out) 0.15s both;
}

.hero__label-line {
  width: 36px;
  height: 1px;
  background: var(--color-accent);
}

.hero__h1 {
  font-family: var(--font-heading);
  font-size: 76px;
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 820px;
  margin-bottom: 36px;
  animation: heroFade 0.8s var(--ease-out) 0.3s both;
}

.hero__h1 em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.28);
}

.hero__desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.42);
  max-width: 520px;
  margin-bottom: 48px;
  animation: heroFade 0.8s var(--ease-out) 0.45s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 80px;
  animation: heroFade 0.8s var(--ease-out) 0.6s both;
}

.hero__stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 36px;
  animation: heroFade 0.8s var(--ease-out) 0.75s both;
}

.hero__stat {
  flex: 1;
  padding-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__stat:last-child { border-right: none; padding-right: 0; }
.hero__stat:not(:first-child) { padding-left: 32px; }

.hero__stat-val {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stat-val span { color: var(--color-accent); }

.hero__stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.03em;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}


/* =========================
   ABOUT
   ========================= */
.hp-about {
  position: relative;
  overflow: hidden;
}

.hp-about__wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad-y) var(--section-pad-x);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.hp-about__content { position: relative; }

.hp-about__ghost {
  font-family: var(--font-heading);
  font-size: 200px;
  font-weight: 300;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.04);
  position: absolute;
  top: -80px;
  left: -20px;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.hp-about__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.hp-about__label-line { width: 28px; height: 1px; background: rgba(215, 38, 30, 0.4); }

.hp-about__title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 300;
  color: var(--color-black);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.hp-about__title strong { font-weight: 400; }

.hp-about__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-body-text);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  max-width: 480px;
}

.hp-about__divider {
  width: 40px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 36px 0;
  position: relative;
  z-index: 1;
}

.hp-about__points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

.hp-about__point {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hp-about__point-line {
  width: 20px;
  height: 2px;
  background: var(--color-accent);
  flex-shrink: 0;
}

.hp-about__point-text {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-black);
  letter-spacing: 0.01em;
}

.hp-about__visual {
  position: relative;
  height: 600px;
}

.hp-about__img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 75%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hp-about__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-image);
}

.hp-about__img-main:hover img { transform: scale(1.03); }

.hp-about__img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 20px -20px 60px rgba(0, 0, 0, 0.08);
}

.hp-about__img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-image);
}

.hp-about__img-accent:hover img { transform: scale(1.03); }

.hp-about__badge {
  position: absolute;
  bottom: 44%;
  right: -8px;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 22px 28px;
  z-index: 5;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.hp-about__badge-val {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 4px;
}

.hp-about__badge-lbl {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* =========================
   SERVICES
   ========================= */
.hp-services {
  background: var(--color-dark-alt);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.hp-services::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(215, 38, 30, 0.02) 100%);
  pointer-events: none;
}

.hp-services__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.hp-services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}

.hp-services__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hp-services__label-line { width: 24px; height: 1px; background: rgba(215, 38, 30, 0.4); }

.hp-services__title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.hp-services__title strong { font-weight: 400; }

.hp-services__header-text {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.4);
  max-width: 440px;
  margin-left: auto;
}

.hp-services__list {
  display: flex;
  flex-direction: column;
}

.hp-services__item {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 48px;
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: padding-left 0.5s var(--ease-out), background var(--transition-fast);
  position: relative;
  cursor: pointer;
}

.hp-services__item:first-child { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.hp-services__item:hover { padding-left: 16px; }

.hp-services__item:hover::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-accent);
}

.hp-services__item-number {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.15);
  transition: color var(--transition-fast);
}

.hp-services__item:hover .hp-services__item-number { color: var(--color-accent); }

.hp-services__item-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.4s ease;
  letter-spacing: 0.01em;
}

.hp-services__item:hover .hp-services__item-title { color: #fff; }

.hp-services__item-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-fast);
  max-width: 400px;
}

.hp-services__item:hover .hp-services__item-desc { color: rgba(255, 255, 255, 0.65); }

.hp-services__item-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  margin-left: auto;
}

.hp-services__item:hover .hp-services__item-arrow { background: var(--color-accent); border-color: var(--color-accent); }
.hp-services__item-arrow svg { width: 14px; height: 14px; stroke: rgba(255, 255, 255, 0.2); transition: stroke var(--transition-fast); }
.hp-services__item:hover .hp-services__item-arrow svg { stroke: #fff; }

.hp-services__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 56px;
  padding: 40px 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
}

.hp-services__cta-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

.hp-services__cta-text strong { font-weight: 400; color: #fff; }


/* =========================
   SECTORS
   ========================= */
.hp-sectors {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad-y) var(--section-pad-x);
}

.hp-sectors__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}

.hp-sectors__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hp-sectors__label-line { width: 28px; height: 1px; background: rgba(215, 38, 30, 0.4); }

.hp-sectors__title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 300;
  color: var(--color-black);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.hp-sectors__title strong { font-weight: 400; }

.hp-sectors__intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-body-text-alt);
  max-width: 400px;
  margin-left: auto;
}

.hp-sectors__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 320px 320px;
  gap: 18px;
}

.hp-sectors__card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hp-sectors__card:hover { transform: translateY(-5px); box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16); }

.hp-sectors__card:nth-child(1) { grid-column: 1 / 8; }
.hp-sectors__card:nth-child(2) { grid-column: 8 / 13; }
.hp-sectors__card:nth-child(3) { grid-column: 1 / 5; }
.hp-sectors__card:nth-child(4) { grid-column: 5 / 13; }

.hp-sectors__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.hp-sectors__card:hover .hp-sectors__card-img { transform: scale(1.05); }

.hp-sectors__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.72) 100%);
  transition: background 0.4s ease;
}

.hp-sectors__card:hover .hp-sectors__card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 20%, rgba(0, 0, 0, 0.82) 100%);
}

.hp-sectors__card-content {
  position: relative;
  z-index: 2;
  padding: 32px 30px;
}

.hp-sectors__card-num {
  font-family: var(--font-heading);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: block;
}

.hp-sectors__card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 6px;
}

.hp-sectors__card-text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
  max-width: 360px;
}

.hp-sectors__card-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
  z-index: 3;
}

.hp-sectors__card:hover .hp-sectors__card-bar { transform: scaleX(1); }


/* =========================
   WHY ONFIRE
   ========================= */
.hp-why {
  background: var(--color-dark);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hp-why::before,
.hp-why::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 30%, rgba(255, 255, 255, 0.06) 70%, transparent 100%);
}

.hp-why::before { top: 0; }
.hp-why::after { bottom: 0; }

.hp-why__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.hp-why__header {
  text-align: center;
  margin-bottom: 80px;
}

.hp-why__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hp-why__label-line { width: 28px; height: 1px; background: rgba(215, 38, 30, 0.35); }

.hp-why__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 560px;
  margin: 0 auto 20px;
}

.hp-why__title strong { font-weight: 400; }

.hp-why__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.35);
  max-width: 480px;
  margin: 0 auto;
}

.hp-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hp-why__item {
  padding: 48px 44px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: background 0.4s ease;
}

.hp-why__item:first-child { border-left: none; }
.hp-why__item:hover { background: rgba(255, 255, 255, 0.02); }

.hp-why__item-num {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  margin-bottom: 28px;
  user-select: none;
  transition: -webkit-text-stroke-color var(--transition-fast);
}

.hp-why__item:hover .hp-why__item-num { -webkit-text-stroke-color: rgba(215, 38, 30, 0.2); }

.hp-why__item-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.hp-why__item:hover .hp-why__item-title { color: var(--color-accent); }

.hp-why__item-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.35);
}

.hp-why__cta {
  margin-top: 72px;
  text-align: center;
}

.hp-why__cta-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 15px 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background var(--transition-fast), border-color var(--transition-fast), gap var(--transition-fast);
}

.hp-why__cta-btn:hover { background: var(--color-accent); border-color: var(--color-accent); gap: 14px; }
.hp-why__cta-btn svg { width: 12px; height: 12px; }


/* =========================
   FAQ
   ========================= */
.hp-faq {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad-y) var(--section-pad-x);
}

.hp-faq__layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 100px;
  align-items: start;
}

.hp-faq__side {
  position: sticky;
  top: 120px;
}

.hp-faq__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hp-faq__label-line { width: 28px; height: 1px; background: rgba(215, 38, 30, 0.4); }

.hp-faq__title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 300;
  color: var(--color-black);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hp-faq__title strong { font-weight: 400; }

.hp-faq__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-body-text-alt);
  margin-bottom: 40px;
  max-width: 360px;
}

.hp-faq__list { display: flex; flex-direction: column; }
.hp-faq__item { border-bottom: 1px solid var(--color-border); }
.hp-faq__item:first-child { border-top: 1px solid var(--color-border); }

.hp-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: opacity var(--transition-fast);
}

.hp-faq__q:hover { opacity: 0.65; }

.hp-faq__q-num {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-accent);
  flex-shrink: 0;
  width: 28px;
}

.hp-faq__q-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.4;
  flex-grow: 1;
  transition: color var(--transition-fast);
}

.hp-faq__item.is-open .hp-faq__q-text { color: var(--color-accent); }

.hp-faq__q-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-fast), transform 0.45s var(--ease-out);
}

.hp-faq__item.is-open .hp-faq__q-icon { background: #fdecea; transform: rotate(180deg); }

.hp-faq__q-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-muted-lighter);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition-fast);
}

.hp-faq__item.is-open .hp-faq__q-icon svg { stroke: var(--color-accent); }

.hp-faq__a-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition-slow);
}

.hp-faq__a {
  padding: 0 0 28px 48px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-body-text-alt);
  max-width: 580px;
}


/* =========================
   CTA
   ========================= */
.hp-cta {
  position: relative;
  padding: 120px 32px;
  overflow: hidden;
  background: var(--color-dark);
  text-align: center;
}

.hp-cta__bg {
  position: absolute;
  inset: 0;
}

.hp-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: grayscale(30%);
}

.hp-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(13, 13, 13, 0.4) 0%, rgba(13, 13, 13, 0.95) 70%);
}

.hp-cta__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.hp-cta__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hp-cta__label-line { width: 24px; height: 1px; background: rgba(215, 38, 30, 0.4); }

.hp-cta__title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hp-cta__title strong { font-weight: 400; }

.hp-cta__text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hp-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hp-cta__trust {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: center;
  gap: 48px;
}

.hp-cta__trust-item { text-align: center; }

.hp-cta__trust-value {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 4px;
}

.hp-cta__trust-value span { color: var(--color-accent); }

.hp-cta__trust-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
}


/* =========================
   RESPONSIVE
   ========================= */

/* Hero */
@media (max-width: 1000px) {
  .hero__h1 { font-size: 52px; }
  .hero__inner { padding: 140px 32px 80px; }
  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding-top: 0;
    border-top: none;
  }
  .hero__stat {
    padding: 20px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .hero__stat:nth-child(1),
  .hero__stat:nth-child(2) { border-top: 1px solid rgba(255, 255, 255, 0.07); }
  .hero__stat:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.06); }
  .hero__stat:nth-child(n+3) { border-bottom: none; }
  .hero__stat:not(:first-child) { padding-left: 24px; }
}

@media (max-width: 640px) {
  .hero { min-height: 100svh; }
  .hero__inner { padding: 130px var(--section-pad-x-sm) 60px; }
  .hero__h1 { font-size: 38px; }
  .hero__desc { font-size: 16px; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 56px; }
  .hero__stat { padding: 16px 20px; }
  .hero__stat:not(:first-child) { padding-left: 20px; }
  .hero__stat-val { font-size: 20px; }
  .hero__stat-lbl { font-size: 11px; }
}

/* About */
@media (max-width: 1000px) {
  .hp-about__wrap { grid-template-columns: 1fr; gap: 60px; padding: var(--section-pad-y-md) 32px; }
  .hp-about__visual { height: 440px; }
  .hp-about__title { font-size: 34px; }
  .hp-about__ghost { font-size: 120px; top: -50px; }
}

@media (max-width: 640px) {
  .hp-about__wrap { padding: var(--section-pad-y-sm) var(--section-pad-x-sm); }
  .hp-about__visual { height: 360px; }
  .hp-about__img-main { width: 90%; height: 70%; }
  .hp-about__img-accent { width: 60%; height: 45%; }
  .hp-about__title { font-size: 28px; }
  .hp-about__ghost { font-size: 80px; top: -30px; }
  .hp-about__badge { padding: 16px 20px; }
  .hp-about__badge-val { font-size: 22px; }
}

/* Services */
@media (max-width: 1000px) {
  .hp-services__header { grid-template-columns: 1fr; gap: 20px; }
  .hp-services__header-text { margin-left: 0; }
  .hp-services__title { font-size: 34px; }
  .hp-services__item { grid-template-columns: 48px 1fr 48px; }
  .hp-services__item-desc { display: none; }
  .hp-services__cta { flex-direction: column; gap: 24px; align-items: flex-start; padding: 32px; }
}

@media (max-width: 640px) {
  .hp-services { padding: 72px 0; }
  .hp-services__inner { padding: 0 var(--section-pad-x-sm); }
  .hp-services__title { font-size: 28px; }
  .hp-services__item { padding: 28px 0; }
  .hp-services__item-title { font-size: 20px; }
  .hp-services__cta-text { font-size: 18px; }
}

/* Sectors */
@media (max-width: 900px) {
  .hp-sectors { padding: var(--section-pad-y-md) var(--section-pad-x-md); }
  .hp-sectors__header { grid-template-columns: 1fr; gap: 16px; }
  .hp-sectors__intro { margin-left: 0; }
  .hp-sectors__title { font-size: 32px; }
  .hp-sectors__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 16px; }
  .hp-sectors__card:nth-child(1),
  .hp-sectors__card:nth-child(2),
  .hp-sectors__card:nth-child(3),
  .hp-sectors__card:nth-child(4) { grid-column: auto; grid-row: auto; min-height: 260px; }
  .hp-sectors__card-title { font-size: 20px; }
  .hp-sectors__card-text { font-size: 13px; }
  .hp-sectors__card-content { padding: 24px 22px; }
}

@media (max-width: 640px) {
  .hp-sectors { padding: var(--section-pad-y-sm) var(--section-pad-x-sm); }
  .hp-sectors__grid { grid-template-columns: 1fr; gap: 14px; }
  .hp-sectors__card:nth-child(n) { grid-column: auto; grid-row: auto; min-height: 220px; }
  .hp-sectors__title { font-size: 28px; }
  .hp-sectors__card-title { font-size: 21px; }
  .hp-sectors__card-text { font-size: 13px; line-height: 1.5; }
  .hp-sectors__card-content { padding: 22px 20px; }
}

/* Why */
@media (max-width: 900px) {
  .hp-why { padding: 100px 0; }
  .hp-why__inner { padding: 0 var(--section-pad-x-md); }
  .hp-why__grid { grid-template-columns: 1fr; }
  .hp-why__item { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.06); padding: 36px 0; }
  .hp-why__item:first-child { border-top: none; }
  .hp-why__title { font-size: 30px; }
  .hp-why__item-num { font-size: 48px; margin-bottom: 18px; }
}

@media (max-width: 640px) {
  .hp-why { padding: 80px 0; }
  .hp-why__header { margin-bottom: 48px; }
  .hp-why__title { font-size: 26px; }
}

/* FAQ */
@media (max-width: 1000px) {
  .hp-faq { padding: var(--section-pad-y-md) var(--section-pad-x-md); }
  .hp-faq__layout { grid-template-columns: 1fr; gap: 48px; }
  .hp-faq__side { position: static; }
  .hp-faq__title { font-size: 30px; }
}

@media (max-width: 640px) {
  .hp-faq { padding: var(--section-pad-y-sm) var(--section-pad-x-sm); }
  .hp-faq__title { font-size: 26px; }
  .hp-faq__q { padding: 22px 0; gap: 14px; }
  .hp-faq__q-text { font-size: 16px; }
  .hp-faq__a { padding: 0 0 22px 42px; }
}

/* CTA */
@media (max-width: 640px) {
  .hp-cta { padding: var(--section-pad-y-sm) var(--section-pad-x-sm); }
  .hp-cta__title { font-size: 30px; }
  .hp-cta__buttons { flex-direction: column; gap: 14px; }
  .hp-cta__trust { flex-direction: column; gap: 24px; }
}