:root {
  --bg: #111827;
  --bg-dark: #070b14;
  --text: #f9fafb;
  --muted: #aab4c8;
  --line: rgba(255, 255, 255, 0.14);
  --card: rgba(255, 255, 255, 0.08);
  --orange: #ff5a00;
  --orange-soft: #ffb066;
  --yellow: #ffd166;
  --green: #32d583;
  --ink: #101828;
  --paper: #f8fafc;
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 90, 0, 0.24), transparent 32rem),
    radial-gradient(circle at 88% 8%, rgba(255, 209, 102, 0.18), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 32px), var(--container));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.78);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 198px;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  transition: 0.2s ease;
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 132px 0 82px;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
}

.hero-glow.one {
  right: -110px;
  top: 140px;
  width: 340px;
  height: 340px;
  background: rgba(255, 90, 0, 0.16);
}

.hero-glow.two {
  left: -150px;
  bottom: 90px;
  width: 320px;
  height: 320px;
  background: rgba(255, 209, 102, 0.12);
}

.hero-grid,
.split,
.proof-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ffd7ad;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 3.85vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 820;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 3.6vw, 3.45rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 850;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.lead,
.section-heading p,
.proof-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.lead {
  max-width: 660px;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
}

.button-primary {
  color: #271000;
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  box-shadow: 0 22px 54px rgba(255, 90, 0, 0.28);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 64px rgba(255, 90, 0, 0.34);
}

.button-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

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

.trust-grid div {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.dashboard-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  color: var(--muted);
}

.dashboard-top strong {
  color: var(--orange-soft);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  height: 190px;
  align-items: end;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.bars span {
  display: block;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #fff1b8, var(--orange));
}

.ad-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 18px 0;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.ad-card p {
  margin: 4px 0 0;
  color: var(--muted);
}

.ad-card span {
  align-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  color: #062015;
  background: #8ff0b2;
  font-size: 0.75rem;
  font-weight: 900;
}

.quick-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.quick-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.quick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.section {
  padding: 92px 0;
}

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

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

.service-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 36px;
  color: #ffd7ad;
  font-weight: 950;
}

.service-grid p {
  color: var(--muted);
}

.process-section {
  background: var(--bg-dark);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list div,
.proof-cards div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.process-list strong,
.process-list span,
.proof-cards strong,
.proof-cards span {
  display: block;
}

.process-list span,
.proof-cards span {
  margin-top: 5px;
  color: var(--muted);
}

.proof-section {
  background: #fff7ed;
  color: var(--ink);
}

.proof-section .eyebrow {
  color: #c2410c;
}

.proof-section p,
.proof-section .proof-cards span {
  color: #64748b;
}

.proof-cards {
  display: grid;
  gap: 14px;
}

.proof-cards div {
  border-color: rgba(16, 24, 40, 0.1);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.09);
}

.contact-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 90, 0, 0.18), transparent 26rem),
    #0b1220;
}

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

.badges span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 700;
}

form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: #e6edf8;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  outline: 0;
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
  transition: 0.2s ease;
}

input {
  height: 52px;
  padding: 0 15px;
}

textarea {
  min-height: 120px;
  padding: 14px 15px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(255, 176, 102, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.12);
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.consent input {
  width: 18px;
  height: 18px;
  padding: 0;
  accent-color: var(--orange);
}

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

.form-button {
  width: 100%;
}

.form-note {
  min-height: 22px;
  margin: 12px 0 0;
  color: #86efac;
  text-align: center;
  font-weight: 800;
}

.form-note.error {
  color: #ffb4b4;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(20px, calc((100% - var(--container)) / 2));
  color: var(--muted);
  background: #050816;
}

.footer-logo {
  display: block;
  width: 184px;
  height: auto;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    border-radius: 24px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(17, 24, 39, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  }

  body.menu-open .site-nav {
    display: flex;
  }

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

  .hero {
    padding-top: 118px;
  }

  .brand-logo {
    width: 168px;
  }

  h1 {
    font-size: clamp(2.2rem, 9vw, 3.1rem);
    line-height: 1.08;
  }

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

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