* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #050505;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  height: 90px;
  padding: 0 5%;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid rgba(250, 204, 21, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.line {
  display: block;
  width: 130px;
  height: 4px;
}

.yellow {
  background: #f6c400;
}

.white {
  background: #fff;
}

.logo-text {
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
}

.nav a:hover,
.nav .active {
  color: #f6c400;
}

.quote-btn,
.btn,
form button {
  background: #f6c400;
  color: #050505;
  padding: 15px 28px;
  border-radius: 5px;
  font-weight: 900;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero {
  min-height: 720px;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.83) 30%, rgba(0,0,0,0.18) 62%, rgba(0,0,0,0.10) 100%),
    url("assets/lineco-founders-banner.jpg");
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
  border-bottom: 2px solid rgba(246, 196, 0, 0.5);
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 500px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 0.96;
  letter-spacing: -2px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 span {
  color: #f6c400;
}

.hero p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.55;
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.outline-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
}

.feature-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #080808;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.feature {
  padding: 42px 38px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.16);
}

.feature:last-child {
  border-right: 0;
}

.feature-icon {
  color: #f6c400;
  font-size: 42px;
  margin-bottom: 16px;
  font-weight: 900;
}

.feature h3 {
  margin: 0 0 12px;
  text-transform: uppercase;
  font-size: 17px;
}

.feature p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

.services-section {
  background: #fff;
  color: #050505;
  padding: 70px 5%;
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 48px;
  align-items: center;
}

.small-label {
  color: #050505;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  display: inline-block;
  padding-top: 10px;
  border-top: 4px solid #f6c400;
  margin-bottom: 16px;
}

.light-label {
  color: #fff;
}

.services-intro h2,
.about-copy h2,
.work-section h2,
.contact-section h2 {
  margin: 0 0 18px;
  text-transform: uppercase;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1px;
}

.services-intro p,
.work-section p,
.contact-section p,
.about-copy p {
  font-size: 18px;
  line-height: 1.65;
}

.services-intro p,
.service-cards p {
  color: rgba(0,0,0,0.70);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-cards article {
  text-align: center;
}

.service-photo {
  height: 200px;
  background: #111;
  margin-bottom: 18px;
  background-size: cover;
  background-position: center;
}

.line-photo {
  background-image: linear-gradient(135deg, #171717, #242424 45%, #f6c400 46%, #f6c400 52%, #171717 53%);
}

.accessible-photo {
  background-image: linear-gradient(135deg, #111, #222);
  position: relative;
}

.accessible-photo::after {
  content: "♿";
  position: absolute;
  inset: 32px;
  background: #1f7bd8;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 72px;
  font-weight: 900;
}

.layout-photo {
  background-image: linear-gradient(160deg, #151515 30%, #f6c400 31%, #f6c400 34%, #151515 35%, #151515 58%, #f6c400 59%, #f6c400 62%, #151515 63%);
}

.repaint-photo {
  background-image: linear-gradient(130deg, #111 20%, #222 55%, #f6c400 56%, #f6c400 60%, #111 61%);
}

.service-cards h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
  font-size: 14px;
}

.service-cards p {
  margin: 0;
  line-height: 1.55;
}

.about-section {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.98), rgba(0,0,0,0.78), rgba(0,0,0,0.48)),
    linear-gradient(160deg, #111, #171717 45%, #f6c400 46%, #f6c400 48%, #111 49%);
  padding: 80px 5%;
  color: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 60px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.about-copy p {
  color: rgba(255,255,255,0.78);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.stats div {
  border-left: 1px solid rgba(255,255,255,0.25);
  padding-left: 34px;
}

.stats strong {
  display: block;
  color: #f6c400;
  font-size: 46px;
  font-weight: 900;
}

.stats span {
  display: block;
  text-transform: uppercase;
  font-weight: 900;
}

.stats small {
  color: rgba(255,255,255,0.66);
}

.work-section {
  padding: 80px 5%;
  background: #050505;
  text-align: center;
}

.work-section p {
  color: rgba(255,255,255,0.72);
  max-width: 760px;
  margin: 0 auto;
}

.contact-section {
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: #0b0b0b;
}

.contact-section p {
  color: rgba(255,255,255,0.72);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  font-size: 18px;
}

form {
  background: #050505;
  border: 1px solid rgba(255,255,255,0.13);
  padding: 32px;
}

input,
textarea {
  width: 100%;
  background: #111;
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  padding: 16px;
  font: inherit;
  margin-bottom: 16px;
}

textarea {
  min-height: 150px;
}

form button {
  width: 100%;
  font-size: 16px;
}

footer {
  padding: 26px 5%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: #000;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

@media (max-width: 1000px) {
  .nav {
    display: none;
  }

  .hero {
    background-size: cover;
    background-position: 58% center;
  }

  .feature-bar,
  .services-section,
  .about-content,
  .contact-section,
  .service-cards,
  .stats {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .service-photo {
    height: 260px;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: auto;
    padding: 16px 20px;
  }

  .logo-text {
    font-size: 26px;
  }

  .line {
    width: 100px;
  }

  .quote-btn {
    padding: 11px 14px;
    font-size: 12px;
  }

  .hero {
    min-height: 720px;
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.72) 45%, rgba(0,0,0,0.95) 100%),
      url("assets/lineco-founders-banner.jpg");
    background-size: cover;
    background-position: 54% top;
  }

  .hero-content {
    min-height: 720px;
    align-items: flex-end;
    padding-bottom: 55px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 17px;
  }

  .services-section,
  .about-section,
  .work-section,
  .contact-section {
    padding: 56px 20px;
  }
}

.header-actions{display:flex;align-items:center;gap:18px}
.lang-switch{display:inline-flex;align-items:center;gap:8px;font-weight:900;font-size:13px;color:rgba(255,255,255,.7)}
.lang-switch a:hover,.lang-switch .active-lang{color:#f6c400}
@media(max-width:640px){.header-actions{gap:10px}.lang-switch{font-size:12px}}
