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

html {
  scroll-behavior: smooth;
}

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

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

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;

  padding: 0 6%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  z-index: 20;

  border-bottom: 1px solid rgba(255,255,255,.12);
}

.logo {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 1px;
}

.logo span {
  display: block;
  color: #e31927;
  font-size: 13px;
  letter-spacing: 5px;
  text-align: center;
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 38px;
}

.nav a {
  font-size: 14px;
  font-weight: 600;
  opacity: .85;
  transition: .25s;
}

.nav a:hover {
  color: #e31927;
  opacity: 1;
}

.phone {
  font-weight: 700;
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  color: white;
  font-size: 26px;
}

.hero {
  position: relative;

  min-height: 760px;
  height: 100vh;

  display: flex;
  align-items: center;

  padding: 110px 6% 40px;

  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.96) 0%,
      rgba(0,0,0,.78) 38%,
      rgba(0,0,0,.3) 72%,
      rgba(0,0,0,.22) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 700px;
}

.hero-label {
  color: #e31927;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(54px, 6vw, 92px);
  line-height: .96;
  letter-spacing: -3px;
  text-transform: uppercase;
  font-weight: 900;
}

.hero h1 span {
  color: #e31927;
}

.hero-text {
  max-width: 550px;
  margin-top: 30px;

  font-size: 20px;
  line-height: 1.5;

  color: #c6c6c6;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 56px;
  padding: 0 28px;

  border-radius: 4px;

  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;

  transition: .25s;
}

.btn-red {
  background: #e31927;
}

.btn-red:hover {
  background: #ff2534;
  transform: translateY(-2px);
}

.btn-dark {
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(15,15,15,.55);
}

.btn-dark:hover {
  background: white;
  color: black;
}

.advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  background: #101010;

  padding: 42px 6%;
}

.advantage {
  padding: 0 30px;

  display: flex;
  align-items: flex-start;
  gap: 18px;

  border-right: 1px solid #2a2a2a;
}

.advantage:first-child {
  padding-left: 0;
}

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

.icon {
  color: #e31927;
  font-size: 32px;
  min-width: 38px;
}

.advantage h3 {
  font-size: 15px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.advantage p {
  color: #888;
  font-size: 13px;
  line-height: 1.5;
}

.services {
  padding: 110px 6%;
}

.section-heading p {
  color: #e31927;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.section-heading h2 {
  font-size: 48px;
  margin-top: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 18px;

  margin-top: 50px;
}

.service-card {
  position: relative;

  min-height: 270px;

  padding: 38px 30px;

  border: 1px solid #262626;
  background: #101010;

  transition: .3s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #e31927;
  background: #141414;
}

.service-card span {
  color: #e31927;
  font-weight: 900;
  font-size: 13px;
}

.service-card h3 {
  font-size: 21px;
  text-transform: uppercase;

  margin-top: 50px;
  margin-bottom: 18px;
}

.service-card p {
  color: #999;
  font-size: 14px;
  line-height: 1.7;
}

.contact-section {
  margin: 0 6% 100px;

  padding: 55px;

  background: #121212;
  border: 1px solid #282828;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.contact-label {
  color: #e31927;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.contact-section h2 {
  font-size: 38px;
  margin: 10px 0;
}

.contact-section p {
  color: #999;
}

footer {
  padding: 42px 6%;

  border-top: 1px solid #232323;

  display: flex;
  justify-content: space-between;

  color: #777;

  font-size: 14px;
}

footer strong {
  color: white;
}

footer a {
  color: white;
}

@media (max-width: 900px) {

  .header {
    height: 75px;
  }

  .nav,
  .phone {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero {
    min-height: 680px;
    height: auto;

    background-position: 60% center;
  }

  .hero-overlay {
    background: rgba(0,0,0,.72);
  }

  .hero h1 {
    font-size: 52px;
    letter-spacing: -2px;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .advantages {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .advantage {
    border-right: 0;
    padding: 0;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {

  .hero {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .advantages {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  .services {
    padding: 80px 24px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    margin: 0 24px 70px;
    padding: 32px 25px;
  }

  .contact-section h2 {
    font-size: 30px;
  }

  footer {
    flex-direction: column;
    gap: 25px;
    padding: 35px 24px;
  }
}

/* Desktop hero refinement */
@media (min-width: 901px) {
  .hero {
    height: 680px;
    min-height: 680px;
  }

  .hero h1 {
    font-size: clamp(52px, 5vw, 76px);
    line-height: 0.98;
  }

  .hero-content {
    width: 760px;
  }
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 245px;
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* Services final desktop layout */
@media (min-width: 901px) {
  .service-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
  }

  .service-card {
    min-height: 220px;
    padding: 30px 26px;
  }

  .service-card:nth-child(-n+4) {
    grid-column: span 3;
  }

  .service-card:nth-child(n+5) {
    grid-column: span 4;
  }

  .service-card h3 {
    margin-top: 34px;
    margin-bottom: 14px;
    font-size: 19px;
  }

  .service-card p {
    line-height: 1.55;
  }
}

/* ===== ANNREAL BLACK & WHITE THEME ===== */

:root {
  --bg: #080808;
  --surface: #0e0e0e;
  --surface-light: #141414;
  --white: #f5f5f5;
  --muted: #999;
  --border: rgba(255,255,255,.12);
}

/* Logo */
.logo span {
  color: #fff;
}

/* Navigation */
.nav a:hover {
  color: #fff;
}

/* Hero */
.hero-label {
  color: #bcbcbc;
}

.hero h1 span {
  color: #fff;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.96) 0%,
      rgba(0,0,0,.78) 40%,
      rgba(0,0,0,.28) 75%,
      rgba(0,0,0,.15) 100%
    );
}

/* Main button */
.btn-red {
  background: #f2f2f2;
  color: #080808;
}

.btn-red:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* Secondary button */
.btn-dark {
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.25);
  color: #fff;
}

.btn-dark:hover {
  background: #fff;
  color: #000;
}

/* Advantages */
.advantages {
  background: #0c0c0c;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.icon {
  color: #fff;
}

/* Services */
.services {
  background: #080808;
}

.section-heading p {
  color: #999;
}

.service-card {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.11);
}

.service-card span {
  color: #777;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.55);
  background: #111;
}

/* Contact */
.contact-section {
  background: #0d0d0d;
  border-color: rgba(255,255,255,.14);
}

.contact-label {
  color: #999;
}

/* Footer */
footer {
  background: #080808;
  border-color: rgba(255,255,255,.12);
}

/* ===== CLEAN SVG ICONS ===== */

.icon {
  width: 38px;
  min-width: 38px;
  color: #fff;
}

.icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== ABOUT ===== */

.about {
  padding: 20px 6% 110px;
  background: #080808;
}

.about-inner {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 70px;

  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.about-kicker {
  color: #777;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.about-copy {
  max-width: 760px;
}

.about-copy h2 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -2px;
  max-width: 680px;
  margin-bottom: 32px;
}

.about-copy p {
  color: #929292;
  font-size: 16px;
  line-height: 1.75;
  max-width: 650px;
  margin-bottom: 18px;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 20px;

  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;

  border-bottom: 1px solid rgba(255,255,255,.5);
  padding-bottom: 8px;

  transition: .25s;
}

.about-link:hover {
  border-color: #fff;
  gap: 15px;
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 10px 24px 80px;
  }

  .about-inner {
    padding-top: 50px;
  }

  .about-copy h2 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .about-copy p {
    font-size: 15px;
  }
}

/* ===== FINAL CONTACTS ===== */

.services {
  padding-bottom: 65px;
}

.about {
  padding-top: 0;
}

.contact-section {
  margin: 0 6% 90px;
  padding: 60px;

  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;

  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.12);
}

.contact-main {
  max-width: 570px;
}

.contact-description {
  max-width: 520px;
  line-height: 1.7;
  margin-top: 14px;
}

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.contact-info {
  border-left: 1px solid rgba(255,255,255,.12);
  padding-left: 50px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;

  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item > span {
  color: #666;
  font-size: 12px;
  font-weight: 800;
}

.contact-item small {
  display: block;
  color: #777;
  font-size: 10px;
  letter-spacing: 2px;
  margin-bottom: 7px;
}

.contact-item strong,
.contact-item a {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.contact-item p {
  margin-top: 5px;
  font-size: 13px;
  color: #777;
}

@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-left: 0;
    padding-top: 20px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    margin: 0 24px 60px;
    padding: 30px 24px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
  }
}

/* ===== MOBILE FINAL ===== */

@media (max-width: 600px) {

  body {
    overflow-x: hidden;
  }

  .header {
    position: absolute;
    height: 68px;
    padding: 0 20px;
  }

  .logo {
    font-size: 20px;
  }

  .logo span {
    font-size: 10px;
    letter-spacing: 4px;
  }

  .hero {
    min-height: 720px;
    height: auto;
    padding: 105px 22px 45px;
    align-items: flex-end;
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,.35) 0%,
        rgba(0,0,0,.45) 40%,
        rgba(0,0,0,.92) 100%
      );
  }

  .hero-content {
    width: 100%;
  }

  .hero-label {
    font-size: 10px;
    letter-spacing: 2.5px;
    margin-bottom: 15px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: .95;
    letter-spacing: -2px;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.55;
    margin-top: 22px;
    max-width: 330px;
  }

  .hero-buttons {
    width: 100%;
    margin-top: 28px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 54px;
  }

  .advantages {
    padding: 38px 22px;
    gap: 30px;
  }

  .advantage {
    align-items: center;
  }

  .advantage h3 {
    font-size: 14px;
  }

  .advantage p {
    font-size: 12px;
  }

  .services {
    padding: 70px 22px 55px;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .service-grid {
    margin-top: 32px;
    gap: 12px;
  }

  .service-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .service-card h3 {
    margin-top: 28px;
    font-size: 18px;
  }

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

  .about {
    padding: 0 22px 70px;
  }

  .about-inner {
    gap: 20px;
  }

  .about-copy h2 {
    font-size: 34px;
    line-height: 1;
  }

  .about-copy p {
    font-size: 14px;
  }

  .contact-section {
    margin: 0 22px 55px;
    padding: 28px 22px;
  }

  .contact-section h2 {
    font-size: 31px;
  }

  .contact-description {
    font-size: 14px;
  }

  .contact-info {
    padding-top: 12px;
  }

  .contact-item {
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  footer {
    padding: 30px 22px;
  }
}

/* ===== MOBILE POLISH ===== */

@media (max-width: 600px) {

  .hero {
    min-height: 680px;
    padding-bottom: 38px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: .96;
    letter-spacing: -1.6px;
    max-width: 350px;
  }

  .hero-text {
    max-width: 300px;
    margin-top: 20px;
  }

  .hero-buttons {
    gap: 10px;
  }

  .nav.open {
    display: flex;
    position: absolute;

    top: 68px;
    left: 0;
    right: 0;

    padding: 22px;

    flex-direction: column;
    gap: 0;

    background: rgba(8,8,8,.98);
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .nav.open a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 14px;
  }

  .nav.open a:last-child {
    border-bottom: 0;
  }

  .menu-btn {
    cursor: pointer;
    font-size: 0;
    width: 30px;
    height: 24px;
    position: relative;
  }

  .menu-btn::before,
  .menu-btn::after {
    content: "";
    position: absolute;
    right: 0;
    width: 25px;
    height: 1px;
    background: #fff;
  }

  .menu-btn::before {
    top: 7px;
  }

  .menu-btn::after {
    bottom: 7px;
  }
}

@media (max-width: 600px) {

  .contact-section {
    padding-top: 26px;
    padding-bottom: 22px;
  }

  .contact-item {
    padding: 17px 0;
  }

  .contact-item strong,
  .contact-item a {
    font-size: 16px;
  }

  footer {
    padding-top: 22px;
    padding-bottom: 22px;
    font-size: 12px;
  }

  footer p {
    margin-top: 5px;
  }
}
