:root {
  --bg: #07090d;
  --surface: #0d1118;
  --surface-2: #121823;
  --line: rgba(255, 255, 255, 0.11);
  --muted: #99a4b4;
  --text: #f4f7fb;
  --teal: #21d4c7;
  --cyan: #61b8ff;
  --amber: #f2b35e;
  --green: #9de36f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #07090d 0%, #0a0d12 48%, #080a0e 100%);
  background-size: 84px 84px, auto;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-block {
  margin: 0 auto 96px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 74px;
  margin: 14px 0 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 9, 13, 0.82);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: rgba(33, 212, 199, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(33, 212, 199, 0.42);
  border-radius: 8px;
  color: #061012;
  background: var(--teal);
  font-weight: 800;
  font-size: 1.35rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.header-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.header-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #d8e0eb;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.header-contact a:hover {
  border-color: rgba(33, 212, 199, 0.42);
  color: var(--text);
  background: rgba(33, 212, 199, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav a {
  padding: 12px 14px;
  border-radius: 8px;
  color: #c8d1df;
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 180ms ease;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 164px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.7vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.18;
}

p {
  color: #c4ccd8;
  line-height: 1.75;
}

.hero-lead {
  max-width: 690px;
  color: #d6deea;
  font-size: 1.08rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #071013;
  background: var(--teal);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.domain-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  width: min(100%, 450px);
  margin-top: 30px;
  padding: 16px;
  border: 1px solid rgba(97, 184, 255, 0.28);
  border-radius: 8px;
  background: rgba(12, 18, 27, 0.74);
}

.domain-callout span,
.domain-callout small {
  color: var(--muted);
  font-size: 0.82rem;
}

.domain-callout strong {
  color: var(--cyan);
  word-break: break-word;
}

.domain-callout small {
  grid-column: 2;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 12% 6% auto 8%;
  height: 44%;
  border: 1px solid rgba(242, 179, 94, 0.2);
  border-radius: 8px;
  background: rgba(242, 179, 94, 0.06);
  transform: rotate(-3deg);
}

.hero-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-stat {
  position: absolute;
  max-width: 210px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 14, 20, 0.86);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.hero-stat span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.74rem;
}

.hero-stat strong {
  font-size: 0.98rem;
  line-height: 1.25;
}

.hero-stat-a {
  right: -12px;
  top: 12%;
}

.hero-stat-b {
  left: -14px;
  bottom: 10%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
}

.trust-strip span {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 14px;
  color: #d7dfeb;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-strip span:last-child {
  border-right: 0;
}

.section-heading {
  max-width: 820px;
}

.section-heading p {
  max-width: 730px;
  font-size: 1.02rem;
}

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

.service-card,
.package-card,
.timeline-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 24, 35, 0.72);
}

.service-card {
  min-height: 430px;
  padding: 24px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 34px;
  margin-bottom: 34px;
  border-radius: 8px;
  color: #071013;
  background: var(--amber);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card:nth-child(2) .service-icon {
  background: var(--teal);
}

.service-card:nth-child(3) .service-icon {
  background: var(--cyan);
}

.service-card:nth-child(4) .service-icon {
  background: var(--green);
}

.service-card p {
  min-height: 112px;
}

ul {
  padding-left: 18px;
  margin: 0;
  color: #d8e0eb;
}

li {
  margin: 10px 0;
}

.feature-band,
.operations-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 38px;
  align-items: start;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(18, 24, 35, 0.9), rgba(9, 12, 18, 0.9));
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list div,
.metric-row,
.operations-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.feature-list div {
  padding: 18px;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 36px;
  align-items: center;
}

.seo-panel {
  padding: 16px;
  border: 1px solid rgba(33, 212, 199, 0.28);
  border-radius: 8px;
  background: rgba(10, 16, 22, 0.85);
  box-shadow: var(--shadow);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  margin-bottom: 10px;
}

.metric-row:last-child {
  margin-bottom: 0;
}

.metric-row span {
  color: var(--muted);
}

.metric-row strong {
  color: var(--teal);
  text-align: right;
}

.operations-section {
  grid-template-columns: 0.8fr 1.2fr;
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.operations-grid span {
  min-height: 74px;
  padding: 18px;
  color: #dfe6ef;
  font-weight: 700;
}

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

.timeline-item {
  padding: 22px;
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #071013;
  background: var(--cyan);
  font-weight: 900;
}

.timeline-item p {
  margin-bottom: 0;
}

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

.package-card {
  padding: 26px;
  background: rgba(13, 17, 24, 0.82);
}

.package-card.featured {
  border-color: rgba(33, 212, 199, 0.45);
  background: rgba(18, 30, 36, 0.9);
  box-shadow: 0 22px 60px rgba(33, 212, 199, 0.08);
}

.package-card > span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-section {
  margin-bottom: 40px;
}

.contact-links a {
  color: var(--teal);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #e6edf7;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: var(--text);
  background: #090d13;
  padding: 13px 14px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  display: none;
  margin: 0;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #dfe6ef;
  background: rgba(255, 255, 255, 0.04);
  line-height: 1.5;
}

.form-status.is-visible {
  display: grid;
}

.form-status.is-success {
  border-color: rgba(33, 212, 199, 0.45);
  color: #c6fff8;
  background: linear-gradient(135deg, rgba(33, 212, 199, 0.13), rgba(97, 184, 255, 0.06));
  box-shadow: 0 18px 42px rgba(33, 212, 199, 0.08);
}

.form-status.is-error {
  border-color: rgba(242, 179, 94, 0.5);
  color: #ffe5bd;
  background: linear-gradient(135deg, rgba(242, 179, 94, 0.13), rgba(255, 255, 255, 0.04));
}

.form-status-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #061012;
  background: var(--teal);
  font-weight: 900;
}

.form-status.is-error .form-status-icon {
  background: var(--amber);
}

.form-status-copy {
  display: grid;
  gap: 4px;
}

.form-status-copy strong {
  color: var(--text);
  font-size: 1rem;
}

.form-status-copy span {
  color: #c4ccd8;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer span:first-child {
  color: var(--text);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1020px) {
  .hero,
  .service-grid,
  .timeline,
  .package-grid,
  .feature-band,
  .operations-section,
  .contact-section,
  .split-section {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .trust-strip span {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 28px, 1180px);
  }

  .section-block {
    margin-bottom: 68px;
  }

  .site-header {
    margin-bottom: 34px;
  }

  .header-contact {
    margin-left: auto;
    justify-content: flex-end;
  }

  .header-contact a:first-child {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 96px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #07090d;
    box-shadow: var(--shadow);
  }

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

  .nav a {
    padding: 16px;
  }

  .hero,
  .service-grid,
  .timeline,
  .package-grid,
  .feature-band,
  .operations-section,
  .contact-section,
  .split-section,
  .operations-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 3.35rem);
  }

  .hero-media {
    margin-top: 4px;
  }

  .hero-stat {
    position: static;
    max-width: none;
    margin-top: 10px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    min-height: 60px;
    border-right: 0;
  }

  .feature-band,
  .operations-section,
  .contact-section {
    padding: 24px;
  }

  .metric-row {
    display: grid;
  }

  .metric-row strong {
    text-align: left;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-contact a {
    min-height: 36px;
    padding: 0 9px;
    font-size: 0.78rem;
  }

  .hero-actions {
    display: grid;
  }

  .domain-callout {
    grid-template-columns: 1fr;
  }

  .domain-callout small {
    grid-column: 1;
  }
}
