:root {
  --red: #d40511;
  --yellow: #ffcc00;
  --dark: #1a1a1a;
  --darker: #0f0f0f;
  --border: rgba(255, 255, 255, 0.08);
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Barlow", sans-serif;
  background: var(--darker);
  color: #fff;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.brand {
  font-family: "Barlow Condensed";
  font-weight: 900;
  font-size: 26px;
}
.brand span {
  color: var(--yellow);
}

/* HERO */
.page-hero {
  padding: 120px 5% 80px;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(212, 5, 17, 0.15), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255, 204, 0, 0.08), transparent 60%);
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: auto;
}

.page-hero h1 {
  font-family: "Barlow Condensed";
  font-size: clamp(48px, 8vw, 90px);
  text-transform: uppercase;
}

.page-hero p {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

/* SECTION */
.section {
  padding: 80px 5%;
}

.section-title {
  font-family: "Barlow Condensed";
  font-size: clamp(32px, 5vw, 60px);
  margin-bottom: 10px;
}

.section-sub {
  color: rgba(255, 255, 255, 0.45);
  max-width: 500px;
  margin-bottom: 50px;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  transition: 0.3s;
}

.service-card:hover {
  border-color: rgba(255, 204, 0, 0.4);
  background: rgba(255, 204, 0, 0.05);
  transform: translateY(-4px);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 5, 17, 0.2);
  border: 1px solid rgba(212, 5, 17, 0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: "Barlow Condensed";
  font-size: 20px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* DETAILS */
.details {
  margin-top: 60px;
  display: grid;
  gap: 30px;
}

.detail-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.detail-header h3 {
  font-family: "Barlow Condensed";
  font-size: 22px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.features p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* CTA */
.cta {
  margin-top: 80px;
  text-align: center;
}

.btn {
  background: var(--yellow);
  color: #000;
  padding: 16px 36px;
  text-decoration: none;
  font-family: "Barlow Condensed";
  letter-spacing: 1.5px;
  border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 5%;
  }

  .page-hero {
    padding: 100px 5% 60px;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 20px;
  }
}
