:root {
  --bg: #080b10;
  --bg-2: #0d141d;
  --panel: rgba(17, 25, 36, 0.78);
  --panel-strong: #111925;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7f4ee;
  --muted: #b6c0ca;
  --soft: #718295;
  --amber: #ff9d2e;
  --amber-2: #ffd27a;
  --cyan: #58d4ff;
  --blue: #173a78;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 4%, rgba(255, 157, 46, 0.18), transparent 31rem),
    radial-gradient(circle at 6% 16%, rgba(88, 212, 255, 0.13), transparent 28rem),
    linear-gradient(180deg, #06080c 0%, var(--bg) 42%, #0b1017 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 8, 12, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(255, 157, 46, 0.16);
}

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

.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 10px 14px;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px 0 86px;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 8, 12, 0.94) 0%, rgba(6, 8, 12, 0.72) 42%, rgba(6, 8, 12, 0.24) 100%),
    linear-gradient(180deg, rgba(6, 8, 12, 0.28) 0%, rgba(6, 8, 12, 0.2) 52%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(4.1rem, 10vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: #e8edf1;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--amber), #ffce65);
  color: #141006;
  box-shadow: 0 18px 42px rgba(255, 157, 46, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.section {
  padding: clamp(72px, 9vw, 128px) 0;
}

.intro-grid,
.showcase-grid,
.why-grid,
.inquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.intro p,
.showcase-copy p,
.why p,
.inquiry-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-band {
  background: linear-gradient(180deg, rgba(13, 20, 29, 0.9), rgba(8, 11, 16, 0.72));
  border-block: 1px solid var(--line);
}

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

.service-card,
.process-list li,
.inquiry-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 285px;
  padding: 28px;
}

.service-number,
.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 157, 46, 0.38);
  border-radius: 999px;
  color: var(--amber-2);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-card p,
.process-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.split-showcase {
  padding-bottom: clamp(48px, 7vw, 88px);
}

.showcase-media {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.showcase-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.mini-list span,
.reason-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 14px 16px;
  color: #e9eef2;
  font-weight: 750;
}

.approach {
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.8), rgba(13, 20, 29, 0.95)),
    url("assets/image19.png") center / cover fixed;
  border-block: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 270px;
  padding: 26px;
  backdrop-filter: blur(16px);
}

.why-grid {
  align-items: start;
}

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

.reason-grid div:last-child {
  grid-column: 1 / -1;
}

.inquiry {
  background:
    linear-gradient(120deg, rgba(23, 58, 120, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(13, 20, 29, 0.8), #070a0f);
}

.inquiry-grid {
  align-items: start;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-strip a,
.footer-links a {
  border-bottom: 1px solid rgba(255, 157, 46, 0.45);
  color: var(--amber-2);
  font-weight: 800;
}

.inquiry-form {
  padding: clamp(22px, 4vw, 34px);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  color: #e8edf1;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(4, 7, 11, 0.66);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(88, 212, 255, 0.14);
}

.form-button {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #05070b;
  padding: 34px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  margin-bottom: 10px;
}

.site-footer p {
  margin: 0;
  color: var(--soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(6, 8, 12, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: 8px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 8, 12, 0.42) 0%, rgba(6, 8, 12, 0.62) 36%, var(--bg) 100%),
      linear-gradient(90deg, rgba(6, 8, 12, 0.88), rgba(6, 8, 12, 0.28));
  }

  .intro-grid,
  .showcase-grid,
  .why-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand {
    font-size: 0.95rem;
  }

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

  .hero {
    min-height: 86svh;
    padding: 108px 0 58px;
  }

  .hero-content {
    margin-left: auto;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 5.3rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }

  .hero-actions,
  .contact-strip,
  .footer-links {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .process-list,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-list li {
    min-height: auto;
  }

  .approach {
    background-attachment: scroll;
  }

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