* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #f4f4f5;
  color: #111;
}

/* NAVBAR */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 8%;
  border-bottom: 2px solid #000;
  background: #f4f4f5;
}

.logo {
  font-weight: 800;
  font-size: 20px;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: #ff5a1f;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* HERO */

.hero {
  display: flex;
  min-height: 90vh;
  padding: 80px 8%;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 900;
}

.hero-left p {
  font-size: 18px;
  color: #6b7280;
  max-width: 500px;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #ff5a1f;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #000;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #000;
  color: #fff;
}

/* HERO RIGHT VISUAL BLOCKS */

.hero-right {
  flex: 1;
  position: relative;
  height: 400px;
}

.box {
  position: absolute;
  border: 3px solid #000;
}

.box1 {
  width: 200px;
  height: 200px;
  top: 0;
  right: 50px;
  background: #ff5a1f;
}

.box2 {
  width: 200px;
  height: 200px;
  top: 80px;
  right: 150px;
  background: #fff;
}

.box3 {
  width: 200px;
  height: 200px;
  top: 160px;
  right: 0;
  background: #111;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-left h1 {
    font-size: 40px;
  }

  .hero-right {
    height: 300px;
  }
}

/* ================= ABOUT SECTION ================= */

.about {
  padding: 120px 8%;
  border-top: 2px solid #000;
}

.about-top {
  max-width: 700px;
  margin-bottom: 80px;
}

.about-top h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
}

.about-top p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 2px solid #000;
  border-left: 2px solid #000;
}

.about-box {
  padding: 50px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  background: #fff;
  transition: 0.3s;
}

.about-box:hover {
  background: #ff5a1f;
  color: #fff;
}

.about-box h3 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 900;
}

.about-box h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.about-box p {
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-top h2 {
    font-size: 36px;
  }
}

/* ================= PROCESS SECTION ================= */

.process {
  padding: 120px 8%;
  background: #111;
  color: #fff;
}

.process-header {
  max-width: 700px;
  margin-bottom: 80px;
}

.process-header h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
}

.process-header p {
  font-size: 18px;
  color: #ccc;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.process-step {
  padding: 50px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: 0.3s;
}

.process-step:hover {
  background: #ff5a1f;
  color: #000;
}

.process-step span {
  font-size: 32px;
  font-weight: 900;
  display: block;
  margin-bottom: 20px;
}

.process-step h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.process-step p {
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 1000px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-header h2 {
    font-size: 36px;
  }
}

/* ================= BRUTALIST CONTACT ================= */

.contact-brutal {
  padding: 120px 8%;
  border-top: 2px solid #000;
  background: #f4f4f5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  border: 2px solid #000;
}

.contact-main {
  padding: 80px;
  border-right: 2px solid #000;
}

.contact-main h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 25px;
}

.contact-main p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

.contact-cta {
  display: inline-block;
  padding: 16px 40px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid #000;
  transition: 0.3s;
}

.contact-cta:hover {
  background: #ff5a1f;
  color: #000;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.info-box {
  padding: 60px;
  border-bottom: 2px solid #000;
}

.info-box:last-child {
  border-bottom: none;
}

.info-box h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
}

.info-box p {
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-main {
    border-right: none;
    border-bottom: 2px solid #000;
  }

  .contact-main h2 {
    font-size: 36px;
  }
}
/* ================= BRUTALIST FOOTER ================= */

.footer-brutal {
  background: #111;
  color: #fff;
  border-top: 2px solid #000;
}

/* TOP BRAND BLOCK */

.footer-top {
  padding: 100px 8%;
  border-bottom: 2px solid #333;
}

.footer-top h2 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 20px;
}

.footer-top p {
  font-size: 18px;
  color: #ccc;
  line-height: 1.6;
}

/* GRID SECTION */

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 2px solid #333;
}

.footer-box {
  padding: 60px;
  border-right: 2px solid #333;
}

.footer-box:last-child {
  border-right: none;
}

.footer-box h4 {
  font-size: 16px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-box a {
  display: block;
  margin-bottom: 15px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.footer-box a:hover {
  color: #ff5a1f;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

/* BOTTOM BAR */

.footer-bottom {
  padding: 25px 8%;
  font-size: 13px;
  text-align: left;
  color: #888;
}

/* Responsive */

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-box {
    border-right: none;
    border-bottom: 2px solid #333;
  }

  .footer-box:last-child {
    border-bottom: none;
  }

  .footer-top h2 {
    font-size: 36px;
  }
}
nav a.active {
  color: #ff5a1f;
}

section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

section.show {
  opacity: 1;
  transform: translateY(0);
}
