:root {
  --bg: #080808;
  --bg-soft: #111111;
  --card: #151515;
  --text: #f5f5f5;
  --muted: #a3a3a3;
  --line: #292929;
  --accent: #ffffff;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

button,
input,
textarea {
  font: inherit;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-container {
  max-width: var(--max-width);
  margin: auto;
  height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo span {
  color: #999;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: #aaa;
  font-size: 14px;
  transition: 0.3s;
}

nav a:hover {
  color: white;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
}

.hero {
  min-height: 88vh;
  max-width: var(--max-width);
  margin: auto;
  padding: 100px 24px;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  color: #888;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -4px;
}

.hero h1 span {
  color: #8c8c8c;
}

.hero-text {
  max-width: 650px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--line);
  transition: 0.3s;
  cursor: pointer;
}

.btn.primary {
  background: white;
  color: black;
}

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

.btn.secondary {
  color: white;
  background: transparent;
}

.btn.secondary:hover {
  background: #171717;
}

.hero-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #171717, #0d0d0d);
  border-radius: 20px;
  padding: 35px;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  margin-bottom: 14px;
  box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.hero-card > p {
  color: #bbb;
}

.mini-stats {
  margin-top: 45px;
  display: grid;
  gap: 22px;
}

.mini-stats div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.mini-stats strong {
  display: block;
  font-size: 22px;
}

.mini-stats span {
  color: #777;
  font-size: 13px;
}

.section {
  max-width: var(--max-width);
  margin: auto;
  padding: 110px 24px;
}

.dark-section {
  max-width: none;
  padding-left: max(24px, calc((100% - var(--max-width)) / 2));
  padding-right: max(24px, calc((100% - var(--max-width)) / 2));
  background: #0d0d0d;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 55px;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 55px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.section-heading > p:last-child {
  color: var(--muted);
  margin-top: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.about-text p {
  color: #aaa;
  font-size: 17px;
  margin-bottom: 25px;
}

.about-highlights {
  display: grid;
  gap: 20px;
}

.highlight {
  display: flex;
  gap: 22px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.highlight > span {
  color: #666;
  font-weight: 700;
}

.highlight h3 {
  margin-bottom: 5px;
}

.highlight p {
  color: #777;
  font-size: 14px;
}

.skills-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.skill-card,
.service-card {
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 16px;
  transition: 0.3s;
}

.skill-card:hover,
.service-card:hover {
  transform: translateY(-5px);
  border-color: #555;
}

.skill-number,
.service-icon {
  color: #777;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 35px;
}

.skill-card h3,
.service-card h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.skill-card p,
.service-card p {
  color: #999;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.tags span {
  padding: 7px 11px;
  border: 1px solid #333;
  border-radius: 5px;
  color: #888;
  font-size: 12px;
}

.service-card a {
  display: inline-block;
  margin-top: 25px;
  font-weight: 700;
  font-size: 14px;
}

.process-section {
  background: #0d0d0d;
  max-width: none;
  padding-left: max(24px, calc((100% - var(--max-width)) / 2));
  padding-right: max(24px, calc((100% - var(--max-width)) / 2));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  padding: 30px;
  border-top: 1px solid #333;
}

.process-step > span {
  color: #666;
  font-weight: 700;
}

.process-step h3 {
  margin: 25px 0 10px;
}

.process-step p {
  color: #888;
  font-size: 14px;
}

.cta-section {
  max-width: var(--max-width);
  margin: auto;
  padding: 80px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-section h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 650px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 15px;
}

.contact-item {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: 0.3s;
}

.contact-item:hover {
  border-color: #555;
}

.contact-item span {
  display: block;
  color: #666;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.contact-item strong {
  word-break: break-word;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #aaa;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #111;
  border: 1px solid #2b2b2b;
  border-radius: 8px;
  padding: 15px;
  color: white;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #666;
}

.form-message {
  color: #aaa;
  font-size: 14px;
}

footer {
  border-top: 1px solid var(--line);
}

.footer-container {
  max-width: var(--max-width);
  margin: auto;
  padding: 45px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.footer-container p {
  color: #777;
  font-size: 13px;
  margin-top: 8px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.footer-links a {
  color: #888;
  font-size: 13px;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: right;
}


/* Mobile */

@media (max-width: 850px) {

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    padding: 20px 24px;
    background: #0b0b0b;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 18px;
  }

  nav.active {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 80px;
  }

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

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .copyright {
    text-align: left;
  }
}


@media (max-width: 600px) {

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero {
    padding-top: 65px;
    padding-bottom: 70px;
  }

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

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

  .skills-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 25px;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons {
    width: 100%;
  }

}
