:root {
  --ink: #07110f;
  --ink-soft: #20302c;
  --paper: #ffffff;
  --mist: #f4f8f7;
  --line: rgba(7, 17, 15, 0.12);
  --green: #28c400;
  --green-dark: #179100;
  --blue: #064cff;
  --blue-dark: #0536af;
  --black: #050505;
  --shadow: 0 24px 70px rgba(7, 17, 15, 0.15);
  --radius: 24px;
  --radius-small: 14px;
  --container: 1180px;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.narrow {
  max-width: 860px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -70px;
  z-index: 50;
  padding: 12px 16px;
  border-radius: 999px;
  color: white;
  background: var(--black);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-h);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(7, 17, 15, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.compact {
  position: relative;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(7, 17, 15, 0.14));
}

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

.brand strong {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand small {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:not(.btn) {
  color: var(--ink-soft);
}

.site-nav a:not(.btn):hover,
.site-nav a:not(.btn):focus-visible {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 12px;
  padding: 10px;
  background: var(--mist);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 14px 34px rgba(6, 76, 255, 0.2);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(6, 76, 255, 0.26);
  filter: saturate(1.1);
}

.btn-small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.btn-ghost {
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  box-shadow: 0 14px 34px rgba(7, 17, 15, 0.12);
}

.section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(44px, 6vw, 90px);
  background:
    radial-gradient(circle at 10% 12%, rgba(40, 196, 0, 0.15), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(6, 76, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #f8fbfa 0%, white 76%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 470px;
  height: 470px;
  right: -230px;
  bottom: -190px;
  border: 56px solid rgba(40, 196, 0, 0.12);
}

.hero::after {
  width: 290px;
  height: 290px;
  left: -170px;
  top: 120px;
  border: 40px solid rgba(6, 76, 255, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.07;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 7vw, 5.75rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 3.7rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.26rem;
}

.lead {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  border-radius: 34px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.logo-plate {
  position: absolute;
  z-index: 2;
  left: 24px;
  top: 24px;
  width: min(42%, 210px);
  padding: 12px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero-photo {
  width: 100%;
  height: 580px;
  object-fit: cover;
  opacity: 0.84;
}

.quick-strip {
  padding: 0 0 clamp(64px, 8vw, 96px);
  margin-top: -28px;
  position: relative;
  z-index: 4;
}

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

.strip-grid article,
.feature-grid article,
.step,
.faq-list details,
.quote-form,
.contact-card,
.stat-card,
.credits-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 44px rgba(7, 17, 15, 0.08);
}

.strip-grid article {
  padding: 26px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(6, 76, 255, 0.12), rgba(40, 196, 0, 0.18));
  font-size: 1.55rem;
}

.strip-grid h2 {
  margin-bottom: 10px;
  font-size: 1.32rem;
}

.strip-grid p,
.feature-grid p,
.step p,
.faq-list p,
.section-copy p,
.quote-panel p,
.contact-card span,
.footer-grid p,
.credits-list p {
  color: var(--ink-soft);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.two-col.reverse {
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1fr);
}

.section-copy p {
  font-size: 1.03rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: inset 0 0 0 6px white, 0 0 0 1px rgba(40, 196, 0, 0.34);
}

.image-stack {
  position: relative;
}

.image-stack picture,
.media-card,
.gallery-grid picture {
  display: block;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.image-stack img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.callout-card {
  position: absolute;
  right: -16px;
  bottom: 28px;
  width: min(300px, 88%);
  padding: 18px;
  border-radius: 22px;
  color: white;
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.92), rgba(5, 54, 175, 0.92));
  box-shadow: 0 24px 50px rgba(7, 17, 15, 0.22);
}

.callout-card strong,
.callout-card span {
  display: block;
}

.callout-card span {
  color: rgba(255, 255, 255, 0.84);
}

.dark-section {
  color: white;
  background:
    radial-gradient(circle at 12% 0%, rgba(40, 196, 0, 0.28), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(6, 76, 255, 0.3), transparent 34%),
    #06100d;
}

.dark-section .eyebrow {
  color: var(--green);
}

.section-heading {
  max-width: 830px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

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

.step {
  padding: 24px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 14px;
  color: #021b02;
  background: var(--green);
  font-weight: 950;
}

.step p {
  color: rgba(255, 255, 255, 0.75);
}

.media-card img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.feature-grid article {
  padding: 20px;
}

.feature-grid h3 {
  color: var(--blue-dark);
  font-size: 1.05rem;
}

.data-section {
  background: var(--mist);
}

.data-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.fine-print {
  padding: 15px 16px;
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  background: white;
  font-size: 0.94rem !important;
}

.stat-card {
  padding: 28px;
  text-align: center;
}

.big-number {
  display: block;
  color: var(--blue);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 950;
  line-height: 0.86;
}

.stat-card strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 18px;
  align-items: stretch;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.quote-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 42px);
  border-radius: 34px;
  color: white;
  background:
    radial-gradient(circle at 22% 12%, rgba(40, 196, 0, 0.42), transparent 32%),
    linear-gradient(145deg, var(--black), var(--blue-dark));
  box-shadow: var(--shadow);
}

.quote-panel h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-panel .btn {
  align-self: flex-start;
  margin-top: 12px;
}

.faq-section {
  background: linear-gradient(180deg, white 0%, var(--mist) 100%);
}

.faq-section .section-heading p:not(.eyebrow) {
  color: var(--ink-soft);
}

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

.faq-list details {
  padding: 18px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 950;
}

.faq-list summary::marker {
  color: var(--green-dark);
}

.faq-list p {
  margin: 12px 0 0;
}

.quote-section {
  background: white;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 5px;
  margin-top: 28px;
  padding: 20px;
}

.contact-card a {
  color: var(--blue);
  font-weight: 950;
}

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

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

.two-fields {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 950;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(7, 17, 15, 0.18);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fbfdfc;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(6, 76, 255, 0.14);
}

textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-align: center;
}

.site-footer {
  padding: 46px 0 22px;
  color: white;
  background: #050907;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 220px minmax(0, 0.8fr);
  gap: 30px;
  padding-bottom: 32px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
}

.footer-brand small,
.site-footer p,
.copyright {
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid h2 {
  margin-bottom: 12px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-grid a:not(.brand):hover,
.footer-grid a:not(.brand):focus-visible {
  color: var(--green);
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.copyright a {
  color: rgba(255, 255, 255, 0.78);
}

.credits-page {
  background: var(--mist);
}

.credits-page h1 {
  font-size: clamp(2.3rem, 6vw, 4.5rem);
}

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

.credits-list article {
  padding: 24px;
}

.credits-list h2 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.credits-list a {
  color: var(--blue);
  font-weight: 950;
}

.mini-footer {
  padding-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .site-nav {
    position: absolute;
    inset: var(--header-h) 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .site-nav a:not(.btn):hover,
  .site-nav a:not(.btn):focus-visible {
    background: var(--mist);
  }

  .site-nav .btn {
    margin-top: 6px;
  }

  .credits-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-shadow: none;
    border: 0;
    padding: 0;
  }

  .hero-grid,
  .two-col,
  .two-col.reverse,
  .data-grid,
  .gallery-grid,
  .quote-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-card {
    min-height: 460px;
  }

  .hero-photo,
  .media-card img,
  .gallery-grid img {
    height: 460px;
    min-height: auto;
  }

  .data-grid .stat-card {
    max-width: 420px;
  }

  .copyright {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 54px 0;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.65rem);
  }

  .hero-actions,
  .hero-actions .btn,
  .quote-panel .btn {
    width: 100%;
  }

  .hero-proof span {
    width: 100%;
    justify-content: center;
  }

  .hero-card {
    min-height: 390px;
    border-radius: 26px;
  }

  .hero-photo {
    height: 390px;
  }

  .logo-plate {
    left: 14px;
    top: 14px;
    width: 150px;
    border-radius: 20px;
  }

  .quick-strip {
    margin-top: 0;
    padding-top: 0;
  }

  .strip-grid,
  .steps,
  .feature-grid,
  .two-fields {
    grid-template-columns: 1fr;
  }

  .strip-grid article,
  .feature-grid article,
  .step,
  .faq-list details,
  .quote-form,
  .contact-card,
  .credits-list article {
    border-radius: 18px;
  }

  .callout-card {
    position: static;
    width: auto;
    margin: -34px 14px 0;
  }

  .media-card img,
  .gallery-grid img {
    height: 330px;
  }

  .quote-panel {
    border-radius: 24px;
  }

  .quote-form {
    padding: 18px;
  }
}
