* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #080808;
  --charcoal: #111111;
  --charcoal-light: #1d1d1d;
  --gold: #d7b23f;
  --deep-gold: #9b7625;
  --red: #b32020;
  --off-white: #f4f0e6;
  --muted: #c9c1b3;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  -webkit-tap-highlight-color: transparent;
}

.hero {
  min-height: 92vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.92)),
    url("LOGO.jpg") center/cover no-repeat;
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(215, 178, 63, 0.14), transparent 34%),
    linear-gradient(
      90deg,
      rgba(179, 32, 32, 0.16),
      transparent 28%,
      transparent 72%,
      rgba(215, 178, 63, 0.12)
    );
  pointer-events: none;
}

.nav,
.hero-content {
  position: relative;
  z-index: 2;
}

.nav {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.logo img {
  height: 74px;
  width: auto;
  display: block;
  border-radius: 7px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: var(--off-white);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-call {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 10px 15px;
  border-radius: 4px;
}

.hero-content {
  width: 100%;
  max-width: 980px;
  margin: auto;
  text-align: center;
  padding: 80px 0 56px;
}

.eyebrow,
.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.20em;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 82px);
  line-height: 1.02;
  margin-bottom: 22px;
  text-transform: uppercase;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
  font-size: clamp(18px, 2.2vw, 23px);
  max-width: 820px;
  margin: 0 auto 30px;
  color: #e7e0cf;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.primary {
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  color: var(--black);
  border: 1px solid var(--gold);
}

.secondary {
  background: rgba(0, 0, 0, 0.35);
  color: var(--off-white);
  border: 1px solid var(--off-white);
}

.primary:hover,
.secondary:hover {
  transform: translateY(-1px);
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span {
  color: var(--off-white);
  border: 1px solid rgba(215, 178, 63, 0.42);
  background: rgba(0, 0, 0, 0.42);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 24px;
}

h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  margin-bottom: 20px;
  text-transform: uppercase;
}

h3 {
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

p {
  color: var(--muted);
}

.intro {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 42px;
  align-items: center;
  background: linear-gradient(180deg, var(--black), var(--charcoal));
}

.intro-text p {
  margin-bottom: 16px;
  font-size: 18px;
}

.intro-card,
.service-card,
.process-card,
.why-card,
.technology-text {
  background: linear-gradient(180deg, #202020, #141414);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(215, 178, 63, 0.22);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
}

.intro-card ul,
.why-card ul {
  padding-left: 20px;
  color: var(--off-white);
}

.intro-card li,
.why-card li {
  margin-bottom: 8px;
}

.services {
  text-align: center;
  background: #101010;
  max-width: none;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto;
}

.section-heading p {
  font-size: 18px;
}

.service-grid {
  max-width: 1180px;
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}

.service-card {
  border-top: 4px solid var(--gold);
}

.service-card p {
  font-size: 16px;
}

.technology {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  background: linear-gradient(135deg, #0c0c0c, #1b1409);
}

.technology-text p {
  font-size: 18px;
  margin-bottom: 16px;
}

.business-card-panel,
.logo-panel {
  border: 1px solid rgba(215, 178, 63, 0.35);
  border-radius: 12px;
  overflow: hidden;
  background: #080808;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.business-card-panel img,
.logo-panel img {
  width: 100%;
  display: block;
}

.why {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: center;
  background:
    linear-gradient(rgba(12, 12, 12, 0.94), rgba(12, 12, 12, 0.96)),
    url("LOGO.jpg") center/cover no-repeat;
}

.why-card p {
  margin-bottom: 18px;
  font-size: 18px;
}

.area {
  text-align: center;
  background: linear-gradient(135deg, #151515, #28180d);
  color: var(--white);
  max-width: none;
  border-top: 1px solid rgba(215, 178, 63, 0.28);
  border-bottom: 1px solid rgba(215, 178, 63, 0.28);
}

.area-content {
  max-width: 900px;
  margin: 0 auto;
}

.area p {
  font-size: 20px;
  color: #e7e0cf;
}

.process {
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.process-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  color: var(--black);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 14px;
}

.disclaimer-section {
  background: #0f0f0f;
  max-width: none;
  border-top: 1px solid rgba(215, 178, 63, 0.22);
  border-bottom: 1px solid rgba(215, 178, 63, 0.22);
}

.disclaimer-content {
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(180deg, #202020, #141414);
  padding: 36px;
  border-radius: 12px;
  border: 1px solid rgba(215, 178, 63, 0.22);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
}

.disclaimer-content p {
  font-size: 17px;
  margin-bottom: 16px;
}

.contact {
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.94)),
    url("LOGO.jpg") center/cover no-repeat;
  max-width: none;
}

.contact-content {
  max-width: 900px;
  margin: 0 auto;
}

.contact-logo {
  width: 560px;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 28px;
  border: 1px solid rgba(215, 178, 63, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.contact p {
  font-size: 20px;
  margin-bottom: 28px;
  color: #e7e0cf;
}

footer {
  background: #070707;
  text-align: center;
  padding: 26px 18px;
  border-top: 1px solid rgba(215, 178, 63, 0.2);
}

footer p {
  color: #b8b1a4;
  font-size: 14px;
  margin-bottom: 8px;
}

/* Tablet */
@media (max-width: 980px) {
  .intro,
  .why,
  .technology,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo img {
    height: 64px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding-top: 56px;
  }

  section {
    padding: 70px 20px;
  }

  .business-card-panel,
  .logo-panel {
    max-width: 680px;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 16px;
    background-position: center top;
  }

  .nav {
    align-items: center;
  }

  .logo img {
    height: 58px;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .nav-links a {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(215, 178, 63, 0.25);
    border-radius: 5px;
    padding: 10px 8px;
    text-align: center;
    font-size: 11px;
  }

  .nav-call {
    border-color: var(--gold);
    padding: 10px 8px;
  }

  .hero-content {
    padding: 58px 0 42px;
  }

  .eyebrow,
  .section-label {
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.05;
  }

  .hero-subtitle {
    font-size: 17px;
    margin-bottom: 24px;
  }

  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 15px 18px;
  }

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

  .hero-badges span {
    text-align: center;
  }

  section {
    padding: 58px 16px;
  }

  h2 {
    font-size: 31px;
  }

  .intro-text p,
  .technology-text p,
  .why-card p {
    font-size: 16px;
  }

  .intro-card,
  .service-card,
  .process-card,
  .why-card,
  .technology-text,
  .disclaimer-content {
    padding: 24px;
  }

  .service-grid {
    gap: 16px;
  }

  .area p,
  .contact p {
    font-size: 17px;
  }

  .contact-logo {
    width: 100%;
  }
}

/* Small phones */
@media (max-width: 390px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .nav-links a {
    font-size: 10px;
  }

  h2 {
    font-size: 28px;
  }
}