:root {
  --navy: #050b12;
  --navy-2: #0b141f;
  --ink: #f7f7f2;
  --muted: #aab3bf;
  --white: #f8fafc;
  --line: rgba(255, 255, 255, .14);
  --gold: #c7922d;
  --gold-2: #f1c869;
  --blue: #1d63ff;
  --red: #e63946;
  --shadow: 0 28px 80px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 12%, rgba(241, 200, 105, .18), transparent 330px),
    radial-gradient(circle at 14% 34%, rgba(255, 255, 255, .06), transparent 320px),
    linear-gradient(180deg, #02060b 0, #07111d 46%, #05080d 100%);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(2, 6, 11, .84);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .02em;
  color: var(--white);
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center 34%;
  box-shadow: 0 10px 24px rgba(7, 17, 29, .18);
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-header nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: #d9e1ea;
  font-size: .94rem;
  font-weight: 800;
  text-decoration: none;
}

.site-header nav a:hover {
  background: rgba(255, 255, 255, .08);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(34px, 6vw, 84px) clamp(18px, 5vw, 78px) 56px;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(3rem, 6.5vw, 6.8rem);
  line-height: .92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: .98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.2rem;
}

.hero-lede,
.section-heading p,
.intro-strip > p,
.proof-panel p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.35vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0;
}

.button,
.inquiry-card button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
.inquiry-card button {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #111827;
  box-shadow: 0 18px 38px rgba(200, 148, 45, .32);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: #f2f6fb;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.quick-stats div {
  min-height: 104px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
}

.quick-stats dt {
  color: #fff4d3;
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-stats dd {
  margin: 7px 0 0;
  color: #aeb7c3;
  line-height: 1.38;
}

.hero-visual {
  border: 1px solid rgba(241, 200, 105, .38);
  border-radius: 32px;
  padding: clamp(14px, 2vw, 28px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)),
    #151510;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.section {
  margin: 0 clamp(18px, 5vw, 78px) clamp(28px, 5vw, 72px);
}

.intro-strip {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 24px;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .24);
  backdrop-filter: blur(14px);
}

.service-card h3,
.service-card p,
.service-card ul {
  margin-left: 20px;
  margin-right: 20px;
}

.service-card p,
.service-card li {
  color: #aeb7c3;
  line-height: 1.48;
}

.service-card ul {
  margin-bottom: 22px;
  padding-left: 18px;
}

.service-picture {
  min-height: 210px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(215, 222, 233, .8);
  background-color: var(--navy);
  position: relative;
  overflow: hidden;
}

.service-picture img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .25s ease, filter .25s ease;
}

.service-card:hover .service-picture img {
  transform: scale(1.055);
  filter: saturate(1.08) brightness(1.04);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.proof-panel,
.dashboard-preview,
.contact-section {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .24);
  backdrop-filter: blur(14px);
}

.proof-panel {
  padding: clamp(24px, 4vw, 42px);
}

.dashboard-preview {
  min-height: 380px;
  overflow: hidden;
  background: var(--navy);
}

.dashboard-preview img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

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

.process-grid article {
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, .055);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 900;
}

.process-grid p {
  color: #aeb7c3;
  line-height: 1.5;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(420px, 1.25fr);
  gap: 24px;
  padding: clamp(22px, 4vw, 44px);
}

.contact-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.contact-notes span {
  border: 1px solid rgba(241, 200, 105, .28);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(241, 200, 105, .1);
  color: #ffe7ad;
  font-weight: 800;
}

.inquiry-card {
  display: grid;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  padding: 18px;
  background: rgba(2, 6, 11, .44);
}

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

label {
  display: grid;
  gap: 7px;
  color: #d8e0eb;
  font-size: .88rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, .92);
  color: #0f1726;
  font: inherit;
  font-weight: 700;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(29, 99, 255, .16);
  border-color: var(--blue);
}

.form-result {
  min-height: 1.3em;
  margin: 0;
  color: #d8e0eb;
  font-weight: 800;
}

.form-result.success {
  color: #0f7a3a;
}

.form-result.error {
  color: #b4232d;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 78px);
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: #02060b;
  color: white;
}

.site-footer p {
  margin: 6px 0 0;
  color: #aebcd0;
}

.site-footer a {
  color: white;
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav {
    justify-self: auto;
  }

  .hero,
  .intro-strip,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .quick-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand span {
    font-size: .95rem;
  }

  .site-header nav a {
    padding: 0 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  h1 {
    font-size: 3rem;
  }

  .service-grid,
  .process-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 18px;
  }

  .site-footer {
    flex-direction: column;
  }
}
