:root {
  --bg: #f5f3ee;
  --surface: #ffffff;
  --surface-soft: #ebe7dd;
  --ink: #171717;
  --muted: #65635d;
  --line: #ddd8cb;
  --accent: #c84432;
  --accent-dark: #9f3022;
  --green: #1f6b58;
  --dark: #141713;
  --dark-soft: #242820;
  --shadow: 0 24px 70px rgba(37, 34, 28, .14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

                .search-widget {
            background: #ffffff;
            padding: 30px 25px;
            border-radius: 16px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            width: 100%;
            max-width: 420px;
            text-align: center;
        }

        .search-label {
            font-size: 18px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 14px;
            display: block;
            letter-spacing: -0.2px;
        }

        .search-input {
            width: 100%;
            padding: 14px 20px;
            font-size: 16px;
            border: 2px solid #e2e8f0;
            border-radius: 30px;
            outline: none;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
            background: #f8fafc;
            color: #0f172a;
        }

        .search-input::placeholder {
            color: #94a3b8;
            font-weight: 400;
        }

        .search-input:focus {
            border-color: #3b82f6;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
            background: #ffffff;
        }

        .search-button {
            margin-top: 14px;
            width: 100%;
            padding: 14px 20px;
            font-size: 16px;
            font-weight: 600;
            background: #0f172a;
            color: white;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.1s ease;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }

        .search-button:hover {
            background: #1e293b;
        }

        .search-button:active {
            transform: scale(0.98);
        }

        .result-message {
            margin-top: 20px;
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 500;
            line-height: 1.5;
            transition: all 0.2s ease;
            word-break: break-word;
            display: none;
        }

        .result-message.warning {
            background: #fee9e6;
            color: #b91c1c;
            border-left: 4px solid #dc2626;
            display: block;
        }

        .result-message.safe {
            background: #e6f7ec;
            color: #166534;
            border-left: 4px solid #16a34a;
            display: block;
        }

        .result-message.error {
            background: #fffbeb;
            color: #92400e;
            border-left: 4px solid #f59e0b;
            display: block;
        }
        .probivatb {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
        }
        .probivatb .form-grid {
            display: flex;
            justify-content: center;
        }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 243, 238, .92);
  border-bottom: 1px solid rgba(221, 216, 203, .7);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  font-size: 15px;
}

.brand-text {
  display: block;
  line-height: 1.05;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
}

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

.main-nav a:hover,
.phone:hover,
.footer-links a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 270px;
}

.phone {
  font-weight: 800;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 14px 28px rgba(200, 68, 50, .22);
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.button-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button-ghost:hover {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}

.button-light {
  background: #fff;
  border-color: #fff;
  color: var(--dark);
}

.button-light:hover {
  background: var(--surface-soft);
  border-color: var(--surface-soft);
  color: var(--dark);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 48px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 73%;
  background:
    radial-gradient(circle at 82% 12%, rgba(31, 107, 88, .16), transparent 32%),
    linear-gradient(180deg, #faf8f2 0%, var(--bg) 100%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(32px, 3vw, 46px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-lead,
.section-head p,
.split p,
.form-grid > div > p {
  color: var(--muted);
  font-size: 18px;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 610px;
}

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

.trust-row strong {
  display: block;
  margin-bottom: 3px;
  font-size: 30px;
  line-height: 1;
}

.trust-row span {
  color: var(--muted);
  font-size: 14px;
}

.hero-media {
  position: relative;
  isolation: isolate;
}

.hero-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(18, 22, 17, .16);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.floating-card small {
  display: block;
  color: var(--muted);
  line-height: 1.35;
}

.card-status {
  left: -28px;
  bottom: 30px;
  padding: 16px 18px;
}

.card-deadline {
  right: -20px;
  top: 34px;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 20px;
}

.card-deadline strong {
  font-size: 28px;
  line-height: 1;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(31, 107, 88, .13);
}

.logos-section {
  padding: 0 0 36px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.logo-strip span {
  display: grid;
  min-height: 78px;
  place-items: center;
  background: rgba(255, 255, 255, .68);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.section {
  padding: 92px 0;
}

.section-muted {
  background: var(--surface-soft);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head.align-left {
  margin-inline: 0;
  text-align: left;
}

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

.service-card,
.case-card,
.price-card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-card {
  min-height: 320px;
  padding: 26px;
}

.service-card.accent {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.service-card p,
.case-card p,
.step p,
.faq-list p,
.check-list {
  color: var(--muted);
}

.service-card.accent p {
  color: rgba(255, 255, 255, .72);
}

.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 900;
}

.service-card.accent a {
  color: #f4b0a6;
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: var(--radius);
  background: #f1e4dc;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
}

.accent .icon {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.process-grid,
.faq-layout,
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(20, 23, 19, .11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .54);
}

.step span {
  color: var(--accent);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

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

.case-card {
  padding: 28px;
}

.case-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e6efe9;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.case-card strong {
  display: block;
  margin-top: 26px;
  font-size: 30px;
  line-height: 1;
}

.case-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

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

.price-card {
  padding: 28px;
}

.price-card.featured {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.price-card p {
  color: var(--muted);
}

.price-card.featured p {
  color: rgba(255, 255, 255, .72);
}

.price-card strong {
  display: block;
  margin-top: 28px;
  color: var(--accent);
  font-size: 30px;
  line-height: 1.05;
}

.price-card.featured strong {
  color: #f4b0a6;
}

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-dark .eyebrow {
  color: #f4b0a6;
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.split > div {
  max-width: 760px;
}

.split p {
  color: rgba(255, 255, 255, .72);
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

summary {
  position: relative;
  padding: 22px 56px 22px 22px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 22px;
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: -8px 22px 22px;
}

.section-form {
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
  color: var(--ink);
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(200, 68, 50, .12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note.is-success {
  color: var(--green);
  font-weight: 800;
}

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

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

.footer-links {
  display: flex;
  gap: 20px;
  font-weight: 800;
}

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

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .phone {
    display: none;
  }

  .header-actions {
    min-width: auto;
  }

  .hero-grid,
  .process-grid,
  .faq-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-media {
    max-width: 720px;
  }

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

  .logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .header-inner {
    min-height: 66px;
  }

  .brand {
    min-width: auto;
  }

  .brand-text {
    display: none;
  }

  .main-nav,
  .header-actions .button-small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-panel {
    position: fixed;
    inset: 67px 12px auto 12px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .mobile-panel[hidden] {
    display: none;
  }

  .mobile-panel a {
    padding: 14px;
    border-radius: 6px;
    color: var(--muted);
    font-weight: 800;
  }

  .mobile-panel a:hover {
    background: var(--bg);
    color: var(--ink);
  }

  .hero {
    padding: 48px 0 32px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 33px;
  }

  .hero-actions,
  .split,
  .footer-inner,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-row,
  .service-grid,
  .case-grid,
  .price-grid,
  .logo-strip {
    grid-template-columns: 1fr;
  }

  .trust-row strong {
    font-size: 26px;
  }

  .card-status,
  .card-deadline {
    position: static;
    margin-top: 10px;
  }

  .hero-media {
    display: grid;
  }

  .section {
    padding: 66px 0;
  }

  .service-card {
    min-height: auto;
  }

  .step {
    grid-template-columns: 48px 1fr;
    padding: 20px;
  }

  .lead-form {
    padding: 20px;
  }
}

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