:root {
  --bg: #070504;
  --bg-deep: #030201;
  --bg-soft: #100a06;
  --text: #fff7ed;
  --text-muted: #cbb9a3;
  --text-soft: #9f8f7d;
  --orange: #ff7a18;
  --orange-soft: #ff9d42;
  --orange-deep: #a83f00;
  --border: rgba(255, 255, 255, 0.11);
  --border-warm: rgba(255, 122, 24, 0.22);
  --glass: rgba(255, 255, 255, 0.055);
  --glass-strong: rgba(255, 255, 255, 0.085);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(255, 122, 24, 0.15),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 38%,
      rgba(255, 122, 24, 0.11),
      transparent 24%
    ),
    linear-gradient(
      180deg,
      #050302 0%,
      #090604 35%,
      #070504 70%,
      #030201 100%
    );
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    );
  background-size: 72px 72px;
  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 18%,
      black 72%,
      transparent
    );
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:
    linear-gradient(
      to bottom,
      rgba(3, 2, 1, 0.84),
      rgba(3, 2, 1, 0.35) 62%,
      rgba(3, 2, 1, 0)
    );
  backdrop-filter: blur(8px);
}

.logo {
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.nav-links a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("images/hero.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(
      circle at 32% 50%,
      rgba(255, 122, 24, 0.38),
      rgba(0, 0, 0, 0.12) 30%,
      rgba(0, 0, 0, 0.72) 78%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.68) 38%,
      rgba(0, 0, 0, 0.28) 70%,
      rgba(0, 0, 0, 0.76) 100%
    );
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 34vh;
  background:
    linear-gradient(
      to bottom,
      rgba(7, 5, 4, 0),
      rgba(7, 5, 4, 0.58) 44%,
      rgba(7, 5, 4, 1) 100%
    );
}

.hero-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(7, 5, 4, 0.92) 0%,
      rgba(7, 5, 4, 0.34) 42%,
      rgba(7, 5, 4, 0.12) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100% - 40px, var(--max-width));
  max-width: var(--max-width);
  margin-inline: auto;
  padding-top: 110px;
}

.hero-content > * {
  max-width: 860px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  text-wrap: balance;
  text-shadow: 0 10px 38px rgba(0, 0, 0, 0.78);
}

.hero-text {
  max-width: 670px;
  margin-bottom: 34px;
  color: var(--text-muted);
  font-size: clamp(1.04rem, 1.8vw, 1.28rem);
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #160802;
  background:
    linear-gradient(
      135deg,
      var(--orange),
      var(--orange-soft)
    );
  box-shadow:
    0 14px 42px rgba(255, 122, 24, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button.secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(12px);
}

.button.secondary:hover {
  border-color: rgba(255, 122, 24, 0.42);
  background: rgba(255, 122, 24, 0.12);
}

.section {
  position: relative;
  padding:
    clamp(72px, 9vw, 124px)
    clamp(20px, 5vw, 72px);
  background: transparent;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 122, 24, 0.24),
      rgba(255, 255, 255, 0.08),
      transparent
    );
}

.section:first-of-type {
  margin-top: -42px;
  padding-top: 84px;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.section h2 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section p {
  max-width: 760px;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.section-dark {
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(255, 122, 24, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 65%,
      rgba(255, 122, 24, 0.08),
      transparent 28%
    );
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.card {
  min-height: 230px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 122, 24, 0.09),
      rgba(255, 255, 255, 0.045) 42%,
      rgba(255, 255, 255, 0.025)
    );
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.card h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.card p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.service-extra {
  max-width: 820px;
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 3px solid var(--orange);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 122, 24, 0.07);
}

.service-extra strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 1.02rem;
}

.service-extra p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.case-study {
  margin-top: 42px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--border-warm);
  border-radius: 32px;
  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(255, 122, 24, 0.17),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      rgba(255, 122, 24, 0.11),
      rgba(255, 255, 255, 0.052) 46%,
      rgba(0, 0, 0, 0.18)
    );
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.case-study-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.case-study-header > div {
  max-width: 760px;
}

.case-study-header h3 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.case-study-header p:not(.case-badge) {
  margin-bottom: 0;
}

.case-study-header .button {
  flex: 0 0 auto;
}

.case-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 20px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 122, 24, 0.35);
  border-radius: 999px;
  color: var(--orange-soft);
  background: rgba(255, 122, 24, 0.1);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.case-details > div {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.16);
}

.case-details span {
  display: block;
  margin-bottom: 9px;
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-details p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.case-tags li {
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
  font-weight: 700;
}

.owned-projects-heading {
  margin-top: clamp(58px, 8vw, 96px);
}

.owned-projects-heading .section-label {
  margin-bottom: 10px;
}

.owned-projects-heading h3 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.project-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.project-item {
  display: grid;
  grid-template-columns: 70px 260px 1fr;
  align-items: center;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 122, 24, 0.075),
      rgba(255, 255, 255, 0.045)
    );
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.project-item:hover {
  border-color: rgba(255, 122, 24, 0.45);
  background:
    linear-gradient(
      135deg,
      rgba(255, 122, 24, 0.14),
      rgba(255, 255, 255, 0.065)
    );
  transform: translateY(-2px);
}

.project-item span {
  color: var(--orange-soft);
  font-weight: 900;
}

.project-item strong {
  font-size: 1.05rem;
}

.project-item p {
  max-width: none;
  margin: 0;
  color: var(--text-soft);
}

.price-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.price-benefits > div {
  padding: 22px 24px;
  border: 1px solid var(--border-warm);
  border-radius: 20px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 122, 24, 0.13),
      rgba(255, 255, 255, 0.045)
    );
}

.price-benefits strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 1.05rem;
}

.price-benefits p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
  align-items: stretch;
}

.price-card {
  min-height: 330px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 122, 24, 0.09),
      rgba(255, 255, 255, 0.045) 42%,
      rgba(255, 255, 255, 0.025)
    );
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.price-card-featured {
  border-color: var(--border-warm);
  background:
    linear-gradient(
      145deg,
      rgba(255, 122, 24, 0.16),
      rgba(255, 255, 255, 0.06) 42%,
      rgba(0, 0, 0, 0.18)
    );
}

.price-card h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.price {
  margin-bottom: 12px;
  color: var(--orange-soft);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.06em;
}

.price-note {
  margin-bottom: 0;
  color: var(--text-muted);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--text-soft);
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange-soft);
  font-weight: 900;
}

.seo-explanation {
  max-width: 920px;
  margin-top: 34px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 122, 24, 0.07)
    );
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.seo-explanation .section-label {
  margin-bottom: 10px;
}

.seo-explanation h3 {
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.seo-explanation p {
  max-width: 820px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 1rem;
}

.seo-explanation p:last-child {
  margin-bottom: 0;
}

.seo-disclaimer {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 3px solid var(--orange);
  border-radius: 0 16px 16px 0;
  color: var(--text-soft) !important;
  background: rgba(255, 122, 24, 0.08);
}

.price-disclaimer {
  margin-top: 24px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.contact-section {
  padding-bottom: clamp(88px, 11vw, 150px);
  background:
    radial-gradient(
      circle at center,
      rgba(255, 122, 24, 0.16),
      transparent 34%
    );
}

.contact-box {
  padding: clamp(32px, 6vw, 70px);
  border: 1px solid var(--border-warm);
  border-radius: 34px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 122, 24, 0.16),
      rgba(255, 255, 255, 0.055) 42%,
      rgba(0, 0, 0, 0.22)
    );
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(16px);
}

.contact-box .button {
  margin-top: 14px;
}

.site-footer {
  position: relative;
  padding: 30px 20px;
  color: var(--text-soft);
  text-align: center;
  background:
    linear-gradient(
      to bottom,
      rgba(3, 2, 1, 0),
      rgba(3, 2, 1, 0.82) 34%,
      #030201
    );
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 122, 24, 0.24),
      rgba(255, 255, 255, 0.08),
      transparent
    );
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .site-header {
    padding: 18px 20px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    align-items: flex-end;
    background-position: center center;
  }

  .hero::before {
    background:
      radial-gradient(
        circle at 50% 48%,
        rgba(255, 122, 24, 0.3),
        rgba(0, 0, 0, 0.18) 30%,
        rgba(0, 0, 0, 0.86) 80%
      ),
      linear-gradient(
        to top,
        rgba(0, 0, 0, 0.96) 0%,
        rgba(0, 0, 0, 0.78) 42%,
        rgba(0, 0, 0, 0.28) 100%
      );
  }

  .hero::after {
    height: 42vh;
  }

  .hero-content {
    width: min(100% - 32px, var(--max-width));
    padding-top: 120px;
    padding-bottom: 58px;
  }

  h1 {
    font-size: clamp(2.5rem, 11vw, 4.4rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .section:first-of-type {
    margin-top: -28px;
  }

  .cards,
  .price-grid,
  .price-benefits,
  .case-details {
    grid-template-columns: 1fr;
  }

  .case-study-header {
    flex-direction: column;
  }

  .project-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 100svh;
    background-position: center center;
  }

  .hero-content {
    padding-bottom: 42px;
  }

  .eyebrow,
  .section-label {
    font-size: 0.72rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-block: 66px;
  }

  .section:first-of-type {
    padding-top: 72px;
  }

  .card,
  .price-card,
  .project-item,
  .contact-box,
  .case-study,
  .seo-explanation {
    border-radius: 22px;
  }

  .case-study {
    padding: 24px 20px;
  }

  .case-details > div {
    padding: 18px;
  }

  .service-extra,
  .price-benefits > div,
  .seo-explanation {
    padding: 20px;
  }
}