:root {
  --bg: #101014;
  --bg-soft: #181820;
  --card: #ffffff;
  --text: #17171c;
  --muted: #60606b;
  --gold: #f3b533;
  --gold-dark: #c98500;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: #f7f4ed;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 16, 20, .9);
  backdrop-filter: blur(14px);
  color: var(--white);
}
.nav { height: 74px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-weight: 800; font-size: 22px; letter-spacing: -0.03em; }
.logo span { color: var(--gold); }
nav { display: flex; gap: 24px; font-weight: 600; font-size: 15px; }
nav a { opacity: .86; }
nav a:hover { opacity: 1; color: var(--gold); }
.hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(243, 181, 51, .32), transparent 30%),
    linear-gradient(135deg, #101014 0%, #22222b 100%);
  color: var(--white);
  padding: 86px 0 80px;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; align-items: center; }
.badge, .section-label {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  margin: 0 0 14px;
}
h1, h2, h3 { line-height: 1.1; margin: 0; letter-spacing: -0.04em; }
h1 { font-size: clamp(42px, 6vw, 72px); max-width: 760px; }
h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 18px; }
h3 { font-size: 22px; margin-bottom: 10px; }
.lead { font-size: 21px; color: rgba(255,255,255,.78); max-width: 650px; margin: 24px 0 32px; }
.hero-actions, .contact-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn, button {
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover, button:hover { transform: translateY(-2px); }
.primary, button { background: var(--gold); color: #17130a; box-shadow: 0 14px 30px rgba(243,181,51,.25); }
.secondary { background: rgba(255,255,255,.1); color: var(--white); border: 1px solid rgba(255,255,255,.18); }
.whatsapp { background: #22c55e; color: white; }
.trust { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; color: rgba(255,255,255,.78); font-weight: 600; }
.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.hero-card h2 { font-size: 28px; }
.hero-card ul { padding-left: 20px; margin-bottom: 0; color: rgba(255,255,255,.82); }
.section { padding: 78px 0; }
.alt { background: #ffffff; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 30px; }
.card, .price-box, .contact-form {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 40px rgba(20,20,30,.08);
  border: 1px solid rgba(20,20,30,.06);
}
.card p, .section p, .price-box p { color: var(--muted); }
.price-grid, .contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: start; }
.price-box { background: var(--bg); color: var(--white); }
.price-line { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.price-line strong { color: var(--gold); }
.small { font-size: 14px; color: var(--muted); }
.price-box .small { color: rgba(255,255,255,.62); }
.three { grid-template-columns: repeat(3, 1fr); }
.step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  font-weight: 800;
  margin-bottom: 20px;
}
.contact-section { background: linear-gradient(180deg, #f7f4ed, #eee7d8); }
.contact-form { display: grid; gap: 14px; }
label { font-weight: 700; }
input, textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid #ded9ce;
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  outline: none;
}
input:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(243,181,51,.14); }
footer { background: var(--bg); color: rgba(255,255,255,.72); padding: 26px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
@media (max-width: 860px) {
  nav { display: none; }
  .hero-grid, .price-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards, .three { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .hero { padding: 56px 0; }
  .section { padding: 54px 0; }
  .cards, .three { grid-template-columns: 1fr; }
  .btn, button { width: 100%; text-align: center; }
  h1 { font-size: 40px; }
}

.intro { max-width: 760px; }
.local-seo { background: #f7f4ed; }
.districts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}
.districts span {
  background: #fff;
  border: 1px solid rgba(20,20,30,.08);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(20,20,30,.06);
}
.seo-text { max-width: 900px; }
.faq details {
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  margin: 12px 0;
  border: 1px solid rgba(20,20,30,.06);
  box-shadow: 0 8px 30px rgba(20,20,30,.06);
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 18px;
}
.faq details p { margin-bottom: 0; }


/* Mobile performance and usability improvements */
html {
  -webkit-text-size-adjust: 100%;
}
body {
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}
img, svg, video {
  max-width: 100%;
  height: auto;
}
.btn, button, input, textarea, summary {
  -webkit-tap-highlight-color: transparent;
}
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
  }
  .nav {
    height: auto;
    min-height: 64px;
    padding: 12px 0;
  }
  .logo {
    font-size: 20px;
  }
  .hero {
    padding: 54px 0 46px;
  }
  .hero-grid {
    gap: 26px;
  }
  .lead {
    font-size: 18px;
    margin: 18px 0 24px;
  }
  .hero-card {
    padding: 22px;
  }
  .cards {
    gap: 14px;
  }
  .card, .price-box, .contact-form {
    padding: 22px;
  }
  .price-grid, .contact-grid {
    gap: 22px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1120px);
  }
  .site-header {
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav {
    justify-content: center;
    text-align: center;
  }
  h1 {
    font-size: clamp(34px, 10vw, 42px);
    letter-spacing: -0.05em;
  }
  h2 {
    font-size: clamp(28px, 8vw, 36px);
  }
  h3 {
    font-size: 20px;
  }
  .badge, .section-label {
    font-size: 12px;
  }
  .hero {
    padding: 42px 0 38px;
  }
  .lead {
    font-size: 17px;
    line-height: 1.55;
  }
  .hero-actions, .contact-buttons {
    gap: 10px;
  }
  .btn, button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    font-size: 16px;
  }
  .trust {
    display: grid;
    gap: 8px;
    margin-top: 22px;
  }
  .hero-card ul {
    padding-left: 18px;
  }
  .section {
    padding: 46px 0;
  }
  .card, .price-box, .contact-form, .faq details {
    border-radius: 18px;
    padding: 20px;
  }
  .price-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
  }
  .districts {
    gap: 8px;
  }
  .districts span {
    width: calc(50% - 4px);
    text-align: center;
    padding: 10px 8px;
    font-size: 14px;
  }
  input, textarea {
    min-height: 50px;
    border-radius: 14px;
    font-size: 16px;
  }
  textarea {
    min-height: 130px;
  }
  footer {
    padding-bottom: calc(90px + env(safe-area-inset-bottom));
    text-align: center;
  }
  .footer-grid {
    justify-content: center;
  }
  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(16,16,20,.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 -10px 28px rgba(0,0,0,.18);
  }
  .mobile-sticky-cta a {
    min-height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
  }
  .mobile-sticky-cta a:first-child {
    background: var(--gold);
    color: #17130a;
  }
  .mobile-sticky-cta a:last-child {
    background: #22c55e;
    color: #fff;
  }
}

@media (max-width: 360px) {
  .districts span {
    width: 100%;
  }
  .hero-card, .card, .price-box, .contact-form, .faq details {
    padding: 18px;
  }
}


/* Contact form email version */
.contact-form {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 720px;
  margin: 24px auto 0;
}

.form-row {
  display: grid;
  gap: 7px;
}

.contact-form label {
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(20, 20, 20, 0.18);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 16px;
  line-height: 1.4;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form .btn,
.contact-form button {
  width: 100%;
  min-height: 52px;
  cursor: pointer;
}

.form-note {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.85;
  margin: 0;
}

@media (max-width: 640px) {
  .contact-form {
    gap: 12px;
    margin-top: 18px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
    border-radius: 12px;
    padding: 13px 14px;
  }
}


/* Minimal language switcher — old design preserved */
.lang-switch {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: 18px;
}
.lang-switch a {
  color: #fff;
  opacity: .78;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 6px 9px;
}
.lang-switch a:hover,
.lang-switch a.active {
  opacity: 1;
  color: var(--gold);
  border-color: rgba(243,181,51,.55);
}
@media (max-width: 860px) {
  .lang-switch { margin-left: 0; }
}


/* Logo icon integration */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.28));
}

@media (max-width: 640px) {
  .logo-icon {
    width: 36px;
    height: 36px;
  }
}


/* Compact internal SEO service links */
.service-links-seo {
  margin-top: 22px !important;
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

.service-links-seo .btn,
.service-links-seo a {
  min-height: 0 !important;
  padding: 7px 10px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  opacity: .9;
}

.service-links-seo .btn:hover,
.service-links-seo a:hover {
  opacity: 1;
}

@media (max-width: 640px) {
  .service-links-seo {
    margin-top: 16px !important;
    gap: 6px !important;
  }

  .service-links-seo .btn,
  .service-links-seo a {
    padding: 6px 8px !important;
    font-size: 12px !important;
    max-width: 100%;
  }
}
