:root {
  --bg: #071526;
  --bg-deep: #04101b;
  --panel: rgba(9, 27, 48, 0.82);
  --panel-soft: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(102, 202, 125, 0.28);
  --text: #f4f8fb;
  --muted: rgba(244, 248, 251, 0.74);
  --muted-soft: rgba(244, 248, 251, 0.54);
  --green: #4eaf64;
  --green-strong: #66ca7d;
  --blue: #173c6a;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Teko", "Arial Narrow", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(78, 175, 100, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(40, 85, 141, 0.28), transparent 30%),
    linear-gradient(180deg, #071526 0%, #061422 48%, var(--bg-deep) 100%);
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
}

main {
  overflow: clip;
}

section {
  scroll-margin-top: 104px;
}

.shell {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(4, 14, 25, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 70px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}

.footer-brand img {
  height: 62px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.98rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--green-strong);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle svg {
  width: 19px;
  height: 19px;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.button svg,
.button-secondary svg,
.button-ghost svg {
  width: 17px;
  height: 17px;
}

.button {
  background: linear-gradient(135deg, var(--green), var(--green-strong));
  color: #04140b;
  font-weight: 700;
  box-shadow: 0 16px 28px rgba(78, 175, 100, 0.28);
}

.button:hover,
.button:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  transform: translateY(-2px);
}

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

.button-ghost {
  border: 1px solid rgba(102, 202, 125, 0.28);
  color: var(--green-strong);
  background: rgba(78, 175, 100, 0.08);
}

.full {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(78, 175, 100, 0.1);
  border: 1px solid rgba(78, 175, 100, 0.22);
  color: var(--green-strong);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-strong);
}

.hero-home {
  padding: 26px 0 14px;
}

.hero-banner {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 14, 25, 0.06), rgba(4, 14, 25, 0.18)),
    linear-gradient(90deg, rgba(78, 175, 100, 0.05), transparent 34%, transparent 66%, rgba(23, 60, 106, 0.08));
  pointer-events: none;
}

.hero-banner img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center center;
}

.intro-section {
  padding-top: 14px;
}

.intro-card,
.catalog-cta,
.service-card,
.plan-card,
.trust-card,
.info-panel,
.form-card,
.contact-card,
.page-hero-card,
.catalog-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.intro-card::before,
.catalog-cta::before,
.service-card::before,
.plan-card::before,
.trust-card::before,
.info-panel::before,
.form-card::before,
.contact-card::before,
.page-hero-card::before,
.catalog-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(102, 202, 125, 0.85), transparent);
}

.intro-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 34px;
}

.intro-card h1,
.page-hero-card h1,
.section-heading h2 {
  margin: 14px 0 12px;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 0.98;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.intro-card h1 {
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.page-hero-card h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.intro-card p,
.section-heading p,
.catalog-cta p,
.service-card p,
.plan-card p,
.trust-card p,
.info-panel p,
.contact-card p,
.page-hero-card p,
.catalog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.34;
}

.section {
  padding-top: 88px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-strong);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(2.15rem, 4vw, 3.1rem);
}

.section-heading h2 span,
.catalog-cta h2 span {
  color: var(--green-strong);
}

.action-row,
.catalog-cta-actions,
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.intro-side {
  display: grid;
  gap: 16px;
}

.info-block {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.info-block strong,
.plan-support strong,
.trust-item strong {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.14rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.info-block span,
.plan-support,
.trust-item p,
.form-note {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.stat-card {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-card strong {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.55rem;
  color: var(--green-strong);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted-soft);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-grid,
.plans-grid,
.contact-grid,
.catalog-grid {
  display: grid;
  gap: 20px;
}

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

.service-card {
  padding: 24px;
}

.service-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(23, 60, 106, 0.94), rgba(78, 175, 100, 0.18));
  border: 1px solid rgba(78, 175, 100, 0.16);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  color: var(--green-strong);
}

.service-card h3,
.plan-card h3,
.trust-card h3,
.info-panel h3,
.form-card h3,
.contact-card h3,
.catalog-card h3,
.catalog-cta h2 {
  margin: 18px 0 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.42rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-cta {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 22px;
  align-items: center;
  padding: 30px;
}

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

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.plan-card.featured {
  background:
    radial-gradient(circle at top right, rgba(78, 175, 100, 0.16), transparent 42%),
    rgba(12, 33, 58, 0.96);
  border-color: rgba(78, 175, 100, 0.28);
}

.plan-badge,
.contact-card-label,
.catalog-tag,
.pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(78, 175, 100, 0.1);
  border: 1px solid rgba(78, 175, 100, 0.24);
  color: var(--green-strong);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plan-target {
  margin-top: 4px;
  color: var(--muted-soft);
  font-size: 0.9rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.plan-list,
.detail-list,
.contact-list {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.plan-list li,
.detail-list li,
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.28;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.plan-list li:first-child,
.detail-list li:first-child,
.contact-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.check-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(78, 175, 100, 0.18);
  color: var(--green-strong);
  font-size: 0.82rem;
}

.plan-support {
  margin: auto 0 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(78, 175, 100, 0.08);
  border: 1px solid rgba(78, 175, 100, 0.18);
}

.trust-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: start;
}

.trust-stack,
.contact-stack {
  display: grid;
  gap: 20px;
}

.trust-card,
.info-panel,
.form-card {
  padding: 24px;
}

.trust-item {
  display: flex;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-item:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.trust-number {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(78, 175, 100, 0.14);
  color: var(--green-strong);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.contact-section {
  padding-bottom: 92px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--muted-soft);
  font-size: 0.84rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.field textarea {
  min-height: 132px;
  padding: 14px 15px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(244, 248, 251, 0.28);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(78, 175, 100, 0.45);
  background: rgba(78, 175, 100, 0.08);
  transform: translateY(-1px);
}

.form-status {
  display: none;
  min-height: 48px;
  padding: 12px 15px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.3;
  margin-top: 12px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: rgba(220, 83, 83, 0.12);
  border: 1px solid rgba(220, 83, 83, 0.24);
  color: #ffb2b2;
}

.form-status.is-success {
  background: rgba(78, 175, 100, 0.12);
  border: 1px solid rgba(78, 175, 100, 0.28);
  color: #c4f6ce;
}

.contact-grid {
  grid-template-columns: 1fr;
}

.contact-card {
  padding: 22px;
  text-decoration: none;
  color: inherit;
}

.contact-card-value {
  margin-top: 14px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  word-break: break-word;
}

.page-hero {
  padding: 26px 0 14px;
}

.page-hero-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 32px;
}

.catalog-section.standalone {
  padding: 30px 0 92px;
}

.catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.pill-list,
.catalog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.catalog-card img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  background: linear-gradient(180deg, rgba(23, 60, 106, 0.64), rgba(4, 14, 25, 0.92));
}

.catalog-card-body {
  padding: 22px;
}

.catalog-card h3 {
  margin-top: 0;
}

.catalog-tags {
  margin: 18px 0 20px;
}

.catalog-cta-card {
  display: flex;
  align-items: stretch;
  background:
    radial-gradient(circle at top right, rgba(78, 175, 100, 0.16), transparent 42%),
    rgba(12, 33, 58, 0.96);
}

.site-footer {
  padding: 28px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(2, 8, 14, 0.64);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy {
  color: var(--muted-soft);
  font-size: 0.88rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2bc767, #6ddf8c);
  box-shadow: 0 20px 34px rgba(43, 199, 103, 0.32);
  color: #032010;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-wa svg {
  width: 18px;
  height: 18px;
}

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

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

@media (max-width: 1080px) {
  .intro-card,
  .catalog-cta,
  .trust-layout,
  .contact-layout,
  .page-hero-card {
    grid-template-columns: 1fr;
  }

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

  .catalog-toolbar {
    display: block;
  }

  .pill-list {
    margin-top: 16px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: grid;
  }

  .nav-actions .button {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 84px 16px auto;
    padding: 18px;
    border-radius: 24px;
    background: rgba(4, 14, 25, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    text-align: center;
  }

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

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

  .nav {
    min-height: 78px;
  }

  .brand img {
    height: 54px;
  }

  .hero-home,
  .page-hero {
    padding-top: 18px;
  }

  .hero-banner {
    border-radius: 24px;
  }

  .hero-banner img {
    aspect-ratio: 5 / 4;
    object-position: center 42%;
  }

  .services-grid,
  .plans-grid,
  .catalog-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .action-row,
  .catalog-cta-actions,
  .page-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .intro-card,
  .catalog-cta,
  .service-card,
  .plan-card,
  .trust-card,
  .info-panel,
  .form-card,
  .contact-card,
  .page-hero-card,
  .catalog-card-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .intro-card,
  .catalog-cta,
  .page-hero-card {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .site-footer {
    padding-bottom: 90px;
  }

  .floating-wa {
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .floating-wa span {
    display: none;
  }
}
