:root {
  --bg: #05080c;
  --bg-2: #080d13;
  --panel: #0d131b;
  --panel-2: #111821;
  --gold: #c9a25a;
  --gold-2: #e2bd72;
  --text: #f4f1eb;
  --muted: #aeb6bf;
  --line: rgba(201, 162, 90, .28);
  --white-line: rgba(255,255,255,.09);
  --radius: 22px;
  --max: 1180px;
  --shadow: 0 26px 80px rgba(0,0,0,.45);
}
* { box-sizing: border-box; }
html {
  scroll-behavior: auto;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(26, 55, 80, .28), transparent 34rem),
    radial-gradient(circle at 80% 20%, rgba(201, 162, 90, .09), transparent 28rem),
    var(--bg);
  color: var(--text);
  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; }
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.container-fluid {
  width: 100%;
  max-width: 100%;
  padding-left: clamp(0.85rem, 3vw, 3rem);
  padding-right: clamp(0.85rem, 3vw, 3rem);
  margin: 0 auto;
}
.eyebrow { color: var(--gold-2); letter-spacing: .22em; font-size: .74rem; font-weight: 700; text-transform: uppercase; }
.section-title { margin: 10px 0 16px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.05; letter-spacing: -.04em; font-weight: 500; }
.text-muted { color: var(--muted); }
.gold { color: var(--gold-2); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .9rem;
  border: 1px solid transparent;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #17130b;
  background: linear-gradient(135deg, #e8c57b, #b98a3c);
  box-shadow: 0 12px 32px rgba(201, 162, 90, .16);
}
.btn-outline {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.02);
}
.btn-outline:hover { border-color: var(--gold); }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(5, 8, 12, .84);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--white-line);
    }
    .nav {
      height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 190px;
    }
    .brand img {
      width: 216px;
      height: 32px;
      object-fit: contain;
    }
    .brand span {
      font-weight: 600;
      letter-spacing: .02em;
    }
    .menu {
      display: flex;
      align-items: center;
      gap: 32px;
      color: #d8dde3;
      font-size: .9rem;
    }
    .menu a {
      position: relative;
      opacity: .88;
    }
    .menu a:hover { opacity: 1; color: var(--gold-2); }
    .menu a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -12px;
      height: 2px;
      background: var(--gold);
    }

    /* Hero */
    .hero {
      position: relative;
      min-height: 720px;
      display: flex;
      align-items: center;
      overflow: hidden;
      border-bottom: 1px solid var(--white-line);
      background: #03050c;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(95deg, rgba(3,5,9,0.85) 0%, rgba(3,5,9,0.25) 45%, rgba(3,5,9,0.6) 100%);
      z-index: 1;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: fill;
      object-position: center;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      width: min(520px, 90%);
      padding: 100px 0 120px;
      text-align: left;
      margin-left: clamp(1.25rem, 10vw, 12.25rem);
      margin-right: clamp(1rem, 3vw, 2.5rem);
    }
    .hero h1 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.9rem, 3.8vw, 2.7rem);
      line-height: 1.2;
      letter-spacing: -.03em;
      font-weight: 500;
    }
    .hero p {
      max-width: 420px;
      margin: 12px 0 20px;
      color: #d6d6d9;
      font-size: 0.82rem;
    }
    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: flex-start;
    }

    .floating-pillars {
      position: relative;
      z-index: 5;
      margin: -92px auto 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .pillar {
      min-width: 0;
      min-height: 150px;
      padding: 28px;
      border: 1px solid var(--line);
      background: linear-gradient(145deg, rgba(18,24,32,.92), rgba(8,12,17,.88));
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow);
      border-radius: 8px;
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 20px;
      align-items: center;
    }
    .icon {
      width: 54px;
      height: 54px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-2);
    }
    .icon img {
      width: 38px;
      height: 38px;
      object-fit: contain;
    }
    .icon svg {
      width: 42px;
      height: 42px;
    }
    .floating-pillars .icon svg,
    .floating-pillars .icon svg path,
    .floating-pillars .icon svg circle {
      stroke: var(--gold-2);
      fill: none;
    }
    .pillar h3, .service-card h3 {
      margin: 0 0 7px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.45rem;
      line-height: 1.1;
      font-weight: 500;
    }
    .pillar p, .service-card p, .step p {
      margin: 0;
      color: var(--muted);
      font-size: .92rem;
    }

    .section { padding: 110px 0; }

    /* About editorial */
    .about-grid {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 46px;
      align-items: center;
    }
    .image-frame {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      border: 1px solid var(--white-line);
      box-shadow: var(--shadow);
      background: var(--panel);
    }
    .image-frame img {
      width: 100%;
      height: 510px;
      object-fit: cover;
    }
    .image-frame::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, rgba(5,8,12,.18));
      pointer-events: none;
    }
    .content-panel {
      padding: 20px 0 20px 14px;
    }
    .content-panel .section-title {
      font-size: clamp(2rem, 3vw, 2.4rem);
      line-height: 1.3;
    }
    .content-panel p {
      color: var(--muted);
      max-width: 560px;
      font-size: .95rem;
      line-height: 1.6;
    }
    .trust-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      margin-top: 34px;
    }
    .trust-item {
      border-top: 1px solid var(--line);
      padding-top: 18px;
      color: #e8ecef;
      font-size: .92rem;
      line-height: 1.6;
      display: grid;
      grid-template-columns: 40px 1fr;
      gap: 12px;
      align-items: start;
    }
    .trust-icon {
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-2);
    }
    .trust-icon svg {
      width: 34px;
      height: 34px;
      stroke: var(--gold-2);
      stroke-width: 1.6;
      fill: none;
    }
    .trust-item b {
      display: block;
      color: var(--gold-2);
      margin-bottom: 4px;
      font-size: 1rem;
      font-weight: 600;
    }

    /* Human section */
    .human-grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 0;
      border-top: 1px solid var(--white-line);
      border-bottom: 1px solid var(--white-line);
      background: linear-gradient(135deg, rgba(9,15,22,.82), rgba(5,8,12,.2));
    }
    .human-copy {
      padding: clamp(42px, 6vw, 80px);
      align-self: center;
    }
    .check-list { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
    .check-list li { color: #d9dee3; display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
    .check-list li::before { content: "•"; color: var(--gold-2); font-size: 1.5rem; line-height: .8; }
    .human-photo img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }

    /* Services */
    .section-head { text-align: center; margin-bottom: 48px; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      grid-auto-rows: minmax(240px, auto);
      grid-auto-flow: dense;
      gap: 18px;
    }
    .service-card {
      min-width: 0;
      border: 1px solid rgba(201, 162, 90, .22);
      background: linear-gradient(145deg, rgba(17,24,33,.92), rgba(8,12,17,.82));
      border-radius: 8px;
      padding: 32px;
      min-height: 260px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 16px;
      justify-content: space-between;
    }
    .service-card.featured { padding: 44px; }
    .service-card::after {
      content: "";
      position: absolute;
      right: -80px;
      bottom: -80px;
      width: 170px;
      height: 170px;
      border: 1px solid rgba(201, 162, 90, .12);
      transform: rotate(45deg);
    }
    .service-card .icon { margin-bottom: 22px; }

    /* Process */
    .process {
      padding-top: 0;
    }
    .steps {
      position: relative;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 34px;
      margin-top: 46px;
    }
    .steps::before {
      content: "";
      position: absolute;
      left: 7%;
      right: 7%;
      top: 32px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: .65;
    }
    .step { position: relative; text-align: center; padding-top: 0; }
    .step-num {
      position: relative;
      z-index: 2;
      margin: 0 auto 20px;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      border: 1px solid var(--gold);
      background: var(--bg-2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-2);
      font-weight: 700;
    }
    .step h3 { font-family: Georgia, "Times New Roman", serif; margin: 0 0 8px; font-size: 1.35rem; font-weight: 500; }

    .seo-faq {
      padding-top: 70px;
      background: linear-gradient(180deg, rgba(6,10,13,.28), rgba(6,10,13,.54));
      border-top: 1px solid var(--white-line);
      border-bottom: 1px solid var(--white-line);
    }
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }
    .faq-item {
      min-width: 0;
      padding: 24px;
      border: 1px solid var(--white-line);
      background: rgba(255,255,255,.035);
    }
    .faq-item h3 {
      margin: 0 0 10px;
      color: var(--ivory);
      font-size: 1.1rem;
      line-height: 1.25;
      font-weight: 600;
    }
    .faq-item p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
      font-size: .94rem;
    }

    /* CTA */
    .cta {
      margin: 30px auto 0;
      border: 1px solid var(--line);
      background:
        linear-gradient(135deg, rgba(13,19,27,.96), rgba(5,8,12,.96)),
        radial-gradient(circle at right, rgba(201,162,90,.15), transparent 30rem);
      display: grid;
      grid-template-columns: 190px 1fr auto;
      gap: 34px;
      align-items: center;
      padding: 34px;
      border-radius: 4px;
    }
    .cta > * { min-width: 0; }
    .cta-logo {
      border-right: 1px solid var(--line);
      padding-right: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .cta-logo img { width: min(100%, 178px); }
    .cta h2 { margin: 0 0 12px; font-family: Georgia, "Times New Roman", serif; font-weight: 500; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.05; }
    .contact-lines { display: flex; gap: 28px; flex-wrap: wrap; color: #d9dee3; font-size: .95rem; }
    .contact-lines span { display: inline-flex; align-items: center; gap: 10px; min-width: 0; overflow-wrap: anywhere; }
    .contact-lines svg { width: 20px; height: 20px; stroke: var(--gold-2); fill: none; }

    /* Footer */
    .footer {
      border-top: 1px solid var(--white-line);
      padding: 54px 0 26px;
      background: rgba(2,5,8,.72);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr .8fr .9fr 1fr;
      gap: 46px;
    }
    .footer-grid > * { min-width: 0; }
    .footer h4 { margin: 0 0 14px; color: var(--gold-2); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; }
    .footer p, .footer a { color: var(--muted); font-size: .92rem; }
    .footer a { display: block; margin: 7px 0; }
    .footer-brand img { width: min(100%, 240px); margin-top: 22px; }
    .copyright {
      margin-top: 38px;
      padding-top: 18px;
      border-top: 1px solid var(--white-line);
      color: #7d8790;
      font-size: .82rem;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    @media (max-width: 980px) {
      .menu { display: none; }
      .hero { min-height: 650px; }
      .floating-pillars, .about-grid, .human-grid, .services-grid, .steps, .faq-grid, .cta, .footer-grid {
        grid-template-columns: 1fr;
      }
      .floating-pillars { margin-top: 24px; }
      .service-card.featured { grid-row: auto; }
      .steps::before { display: none; }
      .cta-logo { border-right: 0; border-bottom: 1px solid var(--line); padding-right: 0; padding-bottom: 22px; }
      .cta-logo img { width: min(100%, 210px); }
      .footer { text-align: center; }
      .footer-grid { gap: 30px; justify-items: center; }
      .footer-brand img { margin: 0 auto; }
      .footer a { margin: 8px 0; }
      .footer p { margin: 7px 0; }
      .copyright { justify-content: center; text-align: center; }
      .nav { height: 72px; }
      .brand { min-width: auto; }
      .brand img { width: 178px; height: 28px; }
      .brand span { display: none; }
    }

    @media (max-width: 640px) {
      .container { width: min(100% - 28px, var(--max)); }
      .container-fluid { padding-left: 14px; padding-right: 14px; }
      .nav { height: 62px; gap: 14px; }
      .brand img { width: 142px; height: 24px; }
      .site-header .btn { display: none; }
      .hero { min-height: 540px; align-items: flex-end; }
      .hero::before {
        background:
          linear-gradient(180deg, rgba(3,5,9,0.36) 0%, rgba(3,5,9,0.72) 46%, rgba(3,5,9,0.94) 100%);
      }
      .hero-bg { object-fit: cover; object-position: center top; }
      .hero-content {
        width: min(100% - 28px, var(--max));
        margin: 0 auto;
        padding: 118px 0 58px;
      }
      .hero h1 {
        max-width: 11ch;
        font-size: clamp(2rem, 9vw, 2.55rem);
        line-height: 1.08;
        letter-spacing: -.02em;
      }
      .hero p { max-width: 34ch; font-size: .88rem; line-height: 1.55; }
      .hero-actions { gap: 10px; }
      .btn { width: 100%; }
      .floating-pillars { gap: 12px; }
      .pillar { grid-template-columns: 44px 1fr; min-height: auto; padding: 18px; gap: 14px; }
      .pillar h3, .service-card h3 { font-size: 1.2rem; }
      .pillar p, .service-card p, .step p { font-size: .88rem; }
      .icon { width: 42px; height: 42px; }
      .icon img { width: 32px; height: 32px; }
      .icon svg { width: 34px; height: 34px; }
      .trust-row { grid-template-columns: 1fr; }
      .section { padding: 60px 0; }
      .section-head { margin-bottom: 30px; }
      .section-title,
      .content-panel .section-title {
        font-size: clamp(1.72rem, 8vw, 2.18rem);
        line-height: 1.16;
        letter-spacing: -.02em;
      }
      .content-panel { padding: 0; }
      .content-panel p,
      .human-copy p,
      .check-list li { font-size: .9rem; }
      .human-copy { padding: 42px 14px; }
      .image-frame img, .human-photo img { height: 290px; min-height: 290px; }
      .services-grid { grid-auto-rows: auto; gap: 12px; }
      .service-card,
      .service-card.featured { min-height: auto; padding: 22px; gap: 12px; }
      .service-card .icon { margin-bottom: 8px; }
      .steps { gap: 24px; margin-top: 30px; }
      .step-num { width: 52px; height: 52px; margin-bottom: 14px; }
      .step h3 { font-size: 1.2rem; }
      .seo-faq { padding-top: 50px; }
      .faq-grid { gap: 12px; }
      .faq-item { padding: 20px; }
      .faq-item h3 { font-size: 1rem; }
      .faq-item p { font-size: .88rem; }
      .cta { gap: 22px; padding: 24px 22px; text-align: center; }
      .cta-logo img { width: min(100%, 220px); }
      .cta h2 { font-size: clamp(1.55rem, 7vw, 2rem); line-height: 1.14; }
      .contact-lines { justify-content: center; gap: 12px; font-size: .88rem; }
      .contact-lines span { justify-content: center; }
      .footer { padding-top: 42px; }
      .footer-grid { gap: 28px; }
      .footer-brand img { width: min(100%, 260px); margin-top: 0; }
      .footer h4 { margin-bottom: 10px; }
      .copyright { margin-top: 30px; gap: 10px; }
    }
