:root {
  --black: #000;
  --white: #fff;
  --gray-900: #1e1e1e;
  --gray-800: #333;
  --gray-700: #666;
  --gray-500: #999;
  --gray-400: #ccc;
  --accent: #e64c00;
  --accent-light: #f77a3b;
  --overlay: rgba(0, 0, 0, 0.75);
  --overlay-soft: rgba(0, 0, 0, 0.25);
  --transition: 0.3s cubic-bezier(0.12, 0.23, 0.5, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 110px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--black);
  border-bottom: 1px solid var(--gray-800);
  z-index: 1000;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Clash Display", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand__avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.brand__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 16px;
  color: var(--gray-400);
  transition: var(--transition);
}

.nav__links a {
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--white);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}

.nav__toggle-lines {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--white);
  position: relative;
}

.nav__toggle-lines::before,
.nav__toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav__toggle-lines::before {
  top: -7px;
}

.nav__toggle-lines::after {
  top: 7px;
}

.hero-header {
  padding-top: 96px;
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 32px;
  padding: 100px 0 120px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
justify-content: center;
}

.hero__title {
  font-family: "Clash Display", sans-serif;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0;
}

.hero__subtitle {
  margin: 0;
  text-align: center;
  color: var(--gray-400);
  font-size: 16px;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.hero__media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.hero__media img {
  height: 100%;
  object-fit: cover;
}

.hero__gradient {
  position: absolute;
  pointer-events: none;
}

.hero__gradient--bottom {
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--black) 100%);
}

.hero__gradient--top {
  left: 0;
  right: 0;
  top: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--black) 0%, rgba(0, 0, 0, 0) 100%);
}

.hero__gradient--left {
  top: 0;
  bottom: 0;
  left: 0;
  width: 160px;
  background: linear-gradient(to right, var(--black) 0%, rgba(0, 0, 0, 0) 100%);
}

.hero__gradient--right {
  top: 0;
  bottom: 0;
  right: 0;
  width: 160px;
  background: linear-gradient(to left, var(--black) 0%, rgba(0, 0, 0, 0) 100%);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  height: 48px;
  padding: 0 4px 0 32px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn--primary {

  width: 160px;
  background: var(--accent);
  color: var(--white);
  text-transform: uppercase;
padding: 0 40px 0 40px;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  justify-content: center;
  padding: 0 32px;
  position: relative;
  bottom: 0;
}

.btn__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
}

.btn__icon svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
  width: 100%;
}

.benefits li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.benefits--stacked li {
  font-size: 16px;
}

.icon--tick {
  fill: var(--accent);
  flex-shrink: 0;
}

.testimonials {
  padding: 160px 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.testimonial {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stars svg {
  width: 104px;
  height: 20px;
  color: var(--accent);
}

.services {
  position: relative;
  padding: 80px 0 160px;
  overflow: hidden;
}

.services__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.services__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.75) 26%, rgba(0, 0, 0, 0.8) 78%, rgba(0, 0, 0, 1) 100%);
}

.services__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-title h2 {
  font-family: "Clash Display", sans-serif;
  font-size: 48px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.section-title h2 span {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.9), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--overlay);
  border: 1px solid var(--gray-800);
  border-radius: 32px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  backdrop-filter: blur(8px);
  position: relative;
}

.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: "Clash Display", sans-serif;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.service-card p {
  margin: 0;
  color: var(--gray-400);
}

.features {
  padding: 120px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.feature {
  text-align: center;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature__icon {
  width: 32px;
  height: 32px;
  margin: 0 auto;
  color: var(--accent);
}

.feature__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about {
  padding: 80px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.about__media {
  transform: rotate(2deg);
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about__media img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eyebrow {
  text-transform: uppercase;
  color: var(--accent-light);
  font-size: 14px;
  letter-spacing: 0;
  margin: 0;
}

.about h2 {
  font-size: 24px;
  margin: 0;
}

.about p {
  margin: 0;
  color: var(--gray-400);
}

.quote {
  padding: 160px 0;
  text-align: center;
}

.quote p {
  font-size: 40px;
  font-style: italic;
  color: var(--gray-400);
  margin: 0;
}

.contact {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.contact__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.contact h2 {
  font-family: "Clash Display", sans-serif;
  font-size: 48px;
  text-transform: uppercase;
  margin: 0;
}

.site-footer {
  padding: 64px 0;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
}

.footer__socials a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer__socials a:hover {
  color: var(--white);
}

.footer__socials svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__line {
  height: 1px;
  background: var(--gray-800);
}

.footer__bottom {
  text-align: center;
  color: var(--gray-500);
}

.footer__bottom a {
  color: var(--gray-400);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .container {
    padding: 0 32px;
    margin: 10px;
  }

  .hero__subtitle {
    font-size: 10px;
  }

  .hero-header {
    padding-top: 10px;
  }

  .hero__title {
    padding-top: 70px;
    font-size: 18px;
  }

  .services__grid,
  .features__grid,
  .testimonials__grid,
  .about__grid {
    gap: 16px;
  }

  .section-title h2 {
    font-size: 40px;
  }

  .quote p {
    font-size: 32px;
  }
}

@media (max-width: 809px) {
  .container {
    padding: 0 20px;
  }

  .nav__inner {
    flex-wrap: wrap;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0 8px;
    display: none;
  }

  .nav__links.is-open {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 40px 0 0;
    gap: 48px;
  }

  .hero__text {
    text-align: left;
    align-items: flex-start;
    font-size: 10px;
  }

  .hero__subtitle {
    text-align: left;
  }

  

  .services,
  .features,
  .about,
  .quote {
    padding: 80px 0;
  }

  .services__grid,
  .features__grid,
  .testimonials__grid,
  .about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-card {
    padding: 32px 24px;
  }

  .features__grid {
    text-align: center;
  }

  .about__media {
    transform: none;
  }

  .contact h2 {
    font-size: 32px;
  }

  .quote p {
    font-size: 24px;
  }

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

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn {
    transition: none;
  }
}