:root {
  --bg: #091019;
  --bg-soft: #101a27;
  --panel: #111e2e;
  --panel-2: #152335;
  --line: #294159;
  --text: #eef4fb;
  --muted: #b8c6d6;
  --accent: #ff7d22;
  --accent-2: #ffd166;
  --danger: #ff4d30;
  --ok: #84d778;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 3%, rgba(255, 125, 34, 0.16), transparent 28%),
    radial-gradient(circle at 12% 20%, rgba(255, 77, 48, 0.1), transparent 30%),
    linear-gradient(180deg, #08111a 0%, #0a141f 45%, #091019 100%);
}

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.alert-strip {
  border-bottom: 1px solid var(--line);
  background: #0f1925;
}

.alert-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.alert-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.alert-phone {
  text-decoration: none;
  font-family: "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  letter-spacing: 0.04em;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-2);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  filter: saturate(1.08) contrast(1.03);
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(108deg, rgba(6, 10, 16, 0.92), rgba(7, 14, 22, 0.78)),
    linear-gradient(180deg, rgba(9, 16, 25, 0.14), rgba(9, 16, 25, 0.85));
}

.hero-shell {
  position: relative;
  z-index: 1;
  padding: 1rem 0 2.4rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.brand {
  text-decoration: none;
  display: grid;
  gap: 0.14rem;
}

.brand-title {
  font-family: "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  font-size: 1.52rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #fff6d8;
}

.brand-subtitle {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d5e1ee;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-list a {
  text-decoration: none;
  font-weight: 700;
  color: #e6eef8;
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(11, 20, 31, 0.76);
  color: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.85rem;
  font: inherit;
  font-weight: 700;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 1rem;
}

.hero-content,
.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-content {
  background: linear-gradient(180deg, rgba(10, 19, 30, 0.88), rgba(13, 22, 34, 0.92));
  padding: 1.5rem;
}

.kicker,
.section-kicker {
  margin: 0 0 0.65rem;
  font-family: "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffc86a;
  font-size: 0.92rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  max-width: 19ch;
}

h2 {
  font-size: clamp(1.42rem, 2.4vw, 2.2rem);
}

h3 {
  font-size: 1.1rem;
}

.hero-lead {
  margin: 0.9rem 0 0;
  color: #d4e1ee;
  max-width: 67ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.2rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  text-decoration: none;
  border-radius: 999px;
  min-height: 46px;
  padding: 0.7rem 1.2rem;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(130deg, var(--accent), var(--danger));
  color: #221003;
  box-shadow: 0 12px 28px rgba(255, 110, 45, 0.32);
}

.btn-secondary {
  background: rgba(8, 17, 26, 0.5);
  border-color: rgba(255, 255, 255, 0.28);
  color: #f3f8ff;
}

.hero-list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.44rem;
  color: #cfdce9;
}

.hero-panel {
  background: linear-gradient(180deg, rgba(16, 26, 39, 0.9), rgba(12, 20, 31, 0.94));
  padding: 1.25rem;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.panel-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ab1c8;
  font-size: 0.8rem;
}

.panel-phone {
  text-decoration: none;
  font-family: "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 0.95;
  color: var(--accent-2);
  text-shadow: 0 10px 26px rgba(255, 209, 102, 0.16);
}

.panel-note {
  margin: 0;
  color: #d2deea;
}

.panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.panel-tags span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.3rem 0.66rem;
  font-size: 0.74rem;
  font-weight: 700;
}

.panel-email {
  color: #fff1c6;
  font-weight: 700;
  text-decoration: none;
}

.section {
  padding: 3.2rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.section-head {
  margin-bottom: 1rem;
}

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

.trust {
  padding-top: 2.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1rem;
}

.trust-cards {
  display: grid;
  gap: 0.7rem;
}

.trust-cards article,
.service-card,
.coverage-box,
.request-form,
.contact-box {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.trust-cards article {
  padding: 1rem;
}

.trust-cards h3 {
  margin-bottom: 0.35rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.service-card {
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), rgba(255, 209, 102, 0.55));
}

.service-eyebrow {
  margin: 0 0 0.55rem;
  color: #ffd48a;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 0.4rem;
  padding-right: 0.8rem;
}

.service-card p {
  margin: 0;
}

.coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1rem;
  align-items: start;
}

.coverage-pills {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.coverage-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #dfeaf7;
  font-weight: 700;
  font-size: 0.92rem;
}

.coverage-box {
  padding: 1rem;
  box-shadow: var(--shadow);
}

.coverage-box h3 {
  margin-bottom: 0.6rem;
}

.coverage-box ul {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.45rem;
  color: #cfdceb;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.03);
}

.gallery-grid img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
}

.request-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
}

.request-steps {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
}

.request-steps p {
  margin: 0;
  color: #d2deeb;
}

.request-form {
  padding: 1rem;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

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

.field label {
  font-weight: 700;
  font-size: 0.9rem;
  color: #deebf8;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #39526b;
  background: #0f1925;
  color: #f0f5fd;
  border-radius: 12px;
  font: inherit;
  padding: 0.66rem 0.72rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(255, 125, 34, 0.45);
  border-color: #ff9f4f;
}

.request-summary,
.request-actions,
.form-note,
.order-result {
  grid-column: 1 / -1;
}

.request-summary {
  border: 1px dashed #4b657e;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem;
}

.request-summary h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.request-summary p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  color: #dbe6f2;
}

.request-summary p + p {
  margin-top: 0.36rem;
}

.request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.form-note {
  margin: 0;
  font-size: 0.86rem;
  color: #b9c8d8;
}

.form-note a {
  color: #d9e8f8;
}

.order-result {
  margin: 0;
  min-height: 1.4rem;
  font-weight: 700;
}

.order-result.success {
  color: var(--ok);
}

.order-result.error {
  color: #ffb4a9;
}

.contact {
  padding-top: 2.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.contact-box {
  padding: 1rem;
  box-shadow: var(--shadow);
}

.contact-box a {
  display: block;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.contact-box p {
  margin: 0.6rem 0 0;
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
  color: #afc0d2;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-links a {
  color: #d4e6fb;
  text-decoration: none;
}

.ezweb-credit a {
  color: #d4e6fb;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(13, 23, 34, 0.96);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.cookie-banner p {
  margin: 0;
  color: #d7e4f1;
  font-size: 0.92rem;
}

.cookie-banner a {
  color: #fff0c2;
}

.cookie-btn {
  min-height: 42px;
  padding-inline: 1rem;
  flex: 0 0 auto;
}

@media (max-width: 1024px) {
  .hero-grid,
  .trust-grid,
  .coverage-grid,
  .request-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .alert-inner {
    min-height: 58px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.45rem 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-list {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .menu-list.open {
    display: flex;
  }

  .hero-content,
  .hero-panel {
    padding: 1rem;
  }

  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 240px;
  }

  .request-form {
    grid-template-columns: 1fr;
  }

  .field,
  .field-full,
  .request-summary,
  .request-actions,
  .order-result {
    grid-column: 1;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
