:root {
  --red: #c8102e;
  --red-hover: #a00d25;
  --dark: #0e0e0e;
  --dark2: #141414;
  --dark3: #1a1a1a;
  --gray: #2a2a2a;
  --text-muted: #9a9a9a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: var(--dark);
  color: #fff;
  overflow-x: hidden;
}

/* ── CYBER BUTTON ── */
.cyber-btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border: none;
  cursor: pointer;
  clip-path: polygon(
    14px 0%,
    100% 0%,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    0% 100%,
    0% 14px
  );
  transition:
    background 0.2s ease,
    transform 0.15s ease;
  letter-spacing: 0.3px;
}
.cyber-btn:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
}
.cyber-btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  clip-path: polygon(
    14px 0%,
    100% 0%,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    0% 100%,
    0% 14px
  );
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}
.cyber-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  transition:
    background 0.3s,
    backdrop-filter 0.3s;
}
nav.scrolled {
  background: rgba(14, 14, 14, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-logo {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  justify-self: start;
  text-decoration: none;
}
.nav-logo span {
  color: var(--red);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-self: center;
}
.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover {
  color: #fff;
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
/* ── NAVBAR CTA BUTTON ── */
.nav-cta-btn {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 135px;
  height: 40px;
  padding: 0 2rem;
  background: #d90f23;
  color: #fff;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: 0;
  /*clip-path: polygon(0 0, 100% 0, 100% 70%, calc(100% - 14px) 100%, 0 100%);*/
  clip-path: polygon(
    14px 0%,
    100% 0%,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    0% 100%,
    0% 14px
  );
  transition: all 0.25s ease;
}

.nav-cta-btn:hover {
  background: #b90c1d;
  transform: translateY(-2px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  justify-self: end;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #0e0e0e;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-family: "Archivo", sans-serif;
  font-style: italic;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--red);
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.5) 40%,
      rgba(14, 14, 14, 0.85) 100%
    ),
    linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, transparent 60%),
    url("/images/herobanner.jpg") center/cover no-repeat;
  animation: subtle-zoom 14s ease-out forwards;
}
@keyframes subtle-zoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}
/* Red accent line on hero */
.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  z-index: 5;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 760px;
  animation: fade-up 0.9s ease-out 0.3s both;
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--red);
}
.hero-title {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: #c0c0c0;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
/* Stats bar */
.hero-stats {
  position: absolute;
  bottom: 40px;

  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;

  width: fit-content;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}
.hero-stat-num span {
  color: var(--red);
}
.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-top: 0.3rem;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  align-self: stretch;
}

/* ── TICKER ── */
.ticker {
  background: var(--red);
  padding: 0.8rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 40s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 2.5rem;
}
.ticker-dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SECTION COMMON ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
}
.section-label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--red);
}
.section-title {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
}
.section-title .red {
  color: var(--red);
}

/* ── ABOUT ── */
#about {
  background: var(--dark2);
  padding: 6rem 2rem;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-images {
  position: relative;
  height: 480px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 68%;
  height: 72%;
  object-fit: cover;
  display: block;
}
.about-img-sub1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 46%;
  object-fit: cover;
  display: block;
}
.about-img-sub2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48%;
  height: 46%;
  object-fit: cover;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44%;
  height: 26%;
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}
.about-img-badge-num {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 2.6rem;
  color: #fff;
  line-height: 1;
}
.about-img-badge-text {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.3rem;
}
.about-text p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
  margin: 1.5rem 0;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(200, 16, 46, 0.12);
  border: 1px solid rgba(200, 16, 46, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(
    8px 0%,
    100% 0%,
    100% calc(100% - 8px),
    calc(100% - 8px) 100%,
    0% 100%,
    0% 8px
  );
}
.about-feature-icon svg {
  color: var(--red);
}
.about-feature-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: #ddd;
  line-height: 1.4;
}

/* ── SERVICES ── */
#services {
  background: var(--dark);
  padding: 6rem 2rem;
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255, 255, 255, 0.05);
}
.service-card {
  background: var(--dark2);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--red);
  transition: width 0.4s ease;
}
.service-card:hover {
  background: #1c1c1c;
}
.service-card:hover::before {
  width: 100%;
}
.service-card-num {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  pointer-events: none;
}
.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  clip-path: polygon(
    10px 0%,
    100% 0%,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    0% 100%,
    0% 10px
  );
  transition:
    background 0.3s,
    border-color 0.3s;
}
.service-card:hover .service-icon {
  background: rgba(200, 16, 46, 0.2);
  border-color: rgba(200, 16, 46, 0.5);
}
.service-name {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.service-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 1.5rem;
  transition: gap 0.2s;
}
.service-link:hover {
  gap: 0.7rem;
}

/* ── WHY US ── */
#why {
  background: var(--dark3);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
#why::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(200, 16, 46, 0.07) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-image-wrap {
  position: relative;
}
.why-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.why-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 60%,
    rgba(200, 16, 46, 0.15) 100%
  );
}
.why-tag {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--red);
  padding: 1.5rem 2rem;
  z-index: 2;
}
.why-tag-num {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
}
.why-tag-text {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.why-list {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid transparent;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.why-item:hover {
  border-left-color: var(--red);
  background: rgba(255, 255, 255, 0.04);
}
.why-item-icon {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.why-item-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--dark);
  padding: 6rem 2rem;
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--dark2);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: border-color 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(200, 16, 46, 0.3);
}
.testimonial-quote {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 4rem;
  color: var(--red);
  line-height: 0.5;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.2rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1rem;
  color: var(--red);
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.star {
  color: var(--red);
  font-size: 0.9rem;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--red);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "APEX";
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 12rem;
  color: rgba(0, 0, 0, 0.12);
  letter-spacing: -0.02em;
  pointer-events: none;
  line-height: 1;
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.cta-text-label {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.5rem;
}
.cta-title {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--red);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  cursor: pointer;
  clip-path: polygon(
    14px 0%,
    100% 0%,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    0% 100%,
    0% 14px
  );
  transition: transform 0.2s;
  white-space: nowrap;
}
.cta-btn:hover {
  transform: translateY(-2px);
}

/* ── PROCESS ── */
#process {
  background: var(--dark2);
  padding: 6rem 2rem;
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.process-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}
.process-step-num {
  width: 80px;
  height: 80px;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  clip-path: polygon(
    16px 0%,
    100% 0%,
    100% calc(100% - 16px),
    calc(100% - 16px) 100%,
    0% 100%,
    0% 16px
  );
  transition:
    background 0.3s,
    border-color 0.3s;
}
.process-step:hover .process-step-num {
  background: rgba(200, 16, 46, 0.1);
  border-color: rgba(200, 16, 46, 0.5);
}
.process-step-num span {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--red);
}
.process-step-title {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.process-step-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CONTACT ── */
#contact {
  background: var(--dark);
  padding: 6rem 2rem;
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 1.2rem 0 2rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(
    8px 0%,
    100% 0%,
    100% calc(100% - 8px),
    calc(100% - 8px) 100%,
    0% 100%,
    0% 8px
  );
}
.contact-detail-icon svg {
  color: var(--red);
}
.contact-detail-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
}
.contact-detail-value {
  font-weight: 500;
  font-size: 0.9rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.8rem 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(200, 16, 46, 0.04);
}
.form-group select option {
  background: #1a1a1a;
  color: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* ── FOOTER ── */
footer {
  background: #0a0a0a;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-brand-logo {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-brand-logo span {
  color: var(--red);
}
.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  text-decoration: none;
  font-size: 0.85rem;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  clip-path: polygon(
    6px 0%,
    100% 0%,
    100% calc(100% - 6px),
    calc(100% - 6px) 100%,
    0% 100%,
    0% 6px
  );
}
.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.footer-col-title {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  color: #fff;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.87rem;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.footer-col ul a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: #555;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom span {
  color: var(--red);
}

/* ── SCROLL TO TOP ── */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.2s;
  clip-path: polygon(
    10px 0%,
    100% 0%,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    0% 100%,
    0% 10px
  );
  z-index: 90;
}
#scrollTop.visible {
  opacity: 1;
  pointer-events: all;
}
#scrollTop:hover {
  transform: translateY(-3px);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-inner,
  .why-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-images {
    height: 360px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .process-steps::before {
    display: none;
  }
  .why-tag {
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 768px) {
  /* NAVBAR */
  nav {
    height: 70px;
    padding: 0 1rem;
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .nav-logo {
    font-size: 1.4rem;
  }

  .nav-links,
  .desktop-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* HERO */
  .hero {
    min-height: 700px;
    padding-top: 70px;
  }

  .hero-content {
    padding: 0 1.2rem;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2.5rem, 13vw, 4rem);
    line-height: 0.95;
  }

  .hero-sub {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .hero-btns a {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .hero-stats {
    display: none;
  }

  /* SECTIONS */
  .about-inner,
  .why-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-images {
    height: 320px;
  }

  .why-image-wrap img {
    height: 350px;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  .about-images {
    height: 280px;
  }
}
