:root {
  --navy: #0f1b2d;
  --navy-2: #16273f;
  --amber: #f5a623;
  --amber-dark: #d98a12;
  --ink: #1a1f27;
  --gray: #5b6472;
  --gray-light: #eef1f5;
  --line: #e2e6ec;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(15, 27, 45, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 27, 45, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--gray { background: var(--gray-light); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: rgba(245, 166, 35, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section--dark .eyebrow { color: var(--amber); background: rgba(245, 166, 35, 0.15); }

h1, h2, h3 { font-weight: 800; line-height: 1.15; margin: 0 0 16px; }
h2 { font-size: clamp(26px, 4vw, 36px); }
h3 { font-size: 20px; }
p { margin: 0 0 16px; color: var(--gray); }
.section--dark p { color: #b7c2d2; }

.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--amber); color: var(--navy); box-shadow: 0 8px 20px rgba(245, 166, 35, 0.35); }
.btn--primary:hover { background: var(--amber-dark); }
.btn--ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn--ghost:hover { border-color: var(--white); }
.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: var(--navy-2); }
.btn--block { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: 14px; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 27, 45, 0.96);
  backdrop-filter: blur(6px);
  color: var(--white);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; }
.brand__mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand__city { display: block; font-weight: 500; font-size: 12px; color: #9fb0c6; }

.nav { display: flex; gap: 26px; }
.nav a { font-size: 14px; font-weight: 600; color: #cfd8e6; transition: color 0.15s; }
.nav a:hover { color: var(--white); }

.header__actions { display: flex; align-items: center; gap: 14px; }
.header__phone { font-weight: 700; font-size: 15px; color: var(--white); }
.header__phone small { display: block; font-weight: 500; font-size: 11px; color: #9fb0c6; }

.burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: none;
  align-items: center; justify-content: center;
}
.burger svg { width: 20px; height: 20px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--navy-2);
  padding: 12px 20px 20px;
}
.mobile-nav a {
  padding: 12px 4px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #e5ebf3;
}
.mobile-nav.is-open { display: flex; }

/* Hero */
.hero {
  background: radial-gradient(circle at 85% 10%, rgba(245,166,35,0.18), transparent 45%), var(--navy);
  color: var(--white);
  padding: 64px 0 80px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero__grid > * { min-width: 0; }
.hero h1 { font-size: clamp(30px, 5vw, 46px); }
.hero__lead { font-size: 17px; max-width: 480px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 36px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 12px; }
.badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #dbe4f0;
}
.badge svg { width: 18px; height: 18px; color: var(--amber); flex-shrink: 0; }

.hero__art { position: relative; }
.hero__art-card {
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.hero__art-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9fb0c6;
  margin-bottom: 14px;
}

.brand-marquee-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 6px 0;
  margin-bottom: 24px;
  isolation: isolate;
}
.brand-marquee-frame::before,
.brand-marquee-frame::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  z-index: 2;
  pointer-events: none;
}
.brand-marquee-frame::before {
  left: 0;
  border-radius: 13px 0 0 13px;
  background: linear-gradient(90deg, var(--navy-2), rgba(22, 39, 63, 0));
}
.brand-marquee-frame::after {
  right: 0;
  border-radius: 0 13px 13px 0;
  background: linear-gradient(270deg, var(--navy-2), rgba(22, 39, 63, 0));
}
.brand-marquee {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  contain: paint;
}
.brand-marquee__track {
  display: flex;
  gap: 8px;
  width: max-content;
  flex-wrap: nowrap;
  padding: 0 14px;
  animation: brand-marquee 16s linear infinite;
}
.brand-marquee:hover .brand-marquee__track { animation-play-state: paused; }
.brand-marquee__item {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
@keyframes brand-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-marquee__track { animation: none; }
}
.hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; text-align: center; }
.hero__stats strong { display: block; font-size: 22px; color: var(--amber); }
.hero__stats span { font-size: 12px; color: #9fb0c6; }

/* Icon tiles used across sections */
.icon-tile {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(245, 166, 35, 0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.icon-tile svg { width: 28px; height: 28px; color: var(--amber-dark); }
.section--dark .icon-tile { background: rgba(245,166,35,0.16); }
.section--dark .icon-tile svg { color: var(--amber); }

/* Services grid */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: 14.5px; }

/* Brands strip */
.brands-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.brand-chip {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

/* Pricing */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.price-table th, .price-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.price-table th {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child { font-weight: 800; color: var(--amber-dark); white-space: nowrap; }
.price-note {
  margin-top: 18px;
  font-size: 14px;
  background: var(--gray-light);
  border-left: 3px solid var(--amber);
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
}

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step { position: relative; padding-top: 8px; }
.step__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.step h3 { font-size: 16px; margin-bottom: 6px; }
.step p { font-size: 13.5px; margin-bottom: 0; }

/* Trust / why us */
.trust-item { display: flex; gap: 16px; align-items: flex-start; }
.trust-item .icon-tile { margin-bottom: 0; flex-shrink: 0; }
.trust-item h3 { margin-bottom: 4px; font-size: 17px; }
.trust-item p { margin-bottom: 0; font-size: 14.5px; }

/* Contact / form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info-item .icon-tile { margin-bottom: 0; }
.contact-info-item strong { display: block; font-size: 15px; margin-bottom: 2px; }
.contact-info-item span, .contact-info-item a { font-size: 14px; color: #b7c2d2; }
.map-links { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }

.form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 { color: var(--navy); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.field textarea { resize: vertical; min-height: 80px; }
.field-hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-note { font-size: 12.5px; color: var(--gray); margin-top: 12px; margin-bottom: 0; }
.form-status { font-size: 14px; font-weight: 700; margin-top: 14px; display: none; padding: 12px 14px; border-radius: 10px; }
.form-status.is-success { display: block; background: #e7f7ec; color: #1c7c3d; }
.form-status.is-error { display: block; background: #fdeceb; color: #c62d25; }

/* Footer */
.footer {
  background: #0b1522;
  color: #8b98ab;
  padding: 36px 0;
  font-size: 13.5px;
}
.footer__inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; align-items: center; }
.footer a:hover { color: var(--white); }

/* Sticky mobile bar */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.1);
}

@media (max-width: 940px) {
  .nav { display: none; }
  .burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .header__phone { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 72px; }
  .price-table th, .price-table td { padding: 14px; font-size: 13.5px; }
  .header__cta { display: none; }
  .header__actions { gap: 10px; }
  .brand span { font-size: 16px; }
}
