:root {
  --bg: #0d1014;
  --bg-soft: #141920;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(18, 20, 24, 0.82);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f7fb;
  --muted: #bfc7d1;
  --accent: #ffcb2f;
  --accent-2: #ff9f1c;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 203, 47, 0.22), transparent 24%),
    linear-gradient(180deg, #090b0e 0%, #12161c 45%, #0c1015 100%);
}

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

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

.hero {
  min-height: 100vh;
  padding: 24px 24px 56px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto 8% -8%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255, 203, 47, 0.18), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.topbar,
.hero-content,
.section,
.footer {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 0 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 203, 47, 0.5);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-text strong {
  font-size: 1.1rem;
}

.brand-text small,
.nav-links a,
.lead,
.service-card p,
.step-card p,
.contact-card p,
.hero-metrics span,
.region-card p,
.floating-card span,
.contact-note {
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 22px;
}

.call-chip {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 203, 47, 0.3);
  background: rgba(255, 203, 47, 0.12);
  font-weight: 700;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 42px;
  align-items: center;
  padding-top: 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

h1,
h2,
h3,
.card-title {
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  margin: 0;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  line-height: 0.98;
  max-width: 11ch;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.lead {
  margin: 22px 0 0;
  max-width: 60ch;
  line-height: 1.75;
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #111;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 34px rgba(255, 159, 28, 0.22);
}

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

.hero-metrics {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 32px 0 0;
}

.hero-metrics li,
.service-card,
.step-card,
.region-card,
.contact-card,
.floating-card,
.gallery-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-metrics li {
  padding: 18px;
  border-radius: 22px;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.45rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 320px;
  padding: 22px;
  border-radius: 24px;
  background: var(--panel-strong);
}

.card-title {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.95rem;
}

.floating-card strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.section {
  padding: 58px 0;
}

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

.service-grid,
.steps,
.gallery-grid,
.region-layout,
.seo-copy-layout,
.faq-list {
  display: grid;
  gap: 18px;
}

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

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

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

.gallery-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
}

.seo-copy-layout,
.faq-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.step-card,
.region-card,
.seo-card,
.faq-item {
  padding: 26px;
  border-radius: 28px;
}

.service-card h3,
.step-card h3,
.region-card h3,
.seo-card h3,
.faq-item h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.service-card p,
.step-card p,
.region-card p,
.seo-card p,
.faq-item p,
.contact-card p {
  margin: 0;
  line-height: 1.7;
  font-size: 1.02rem;
}

.region-card.emphasis {
  background:
    linear-gradient(180deg, rgba(255, 203, 47, 0.12), rgba(255, 255, 255, 0.04)),
    var(--panel);
}

.seo-card,
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.step-card span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  font-weight: 800;
  color: var(--accent);
  background: rgba(255, 203, 47, 0.14);
}

.gallery-card {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.contact-card {
  padding: 36px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.footer {
  padding: 0 0 34px;
  color: var(--muted);
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 12px;
  z-index: 20;
}

.floating-button {
  min-width: 138px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-button:hover {
  transform: translateY(-2px);
}

.floating-phone {
  color: #111;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.floating-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #25d366, #169c46);
}

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

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

@media (max-width: 1024px) {
  .hero-content,
  .service-grid,
  .steps,
  .gallery-grid,
  .region-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    height: 460px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-inline: 16px;
  }

  .topbar,
  .hero-content,
  .section,
  .footer {
    width: min(1180px, calc(100% - 8px));
  }

  .topbar {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    height: 360px;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .service-card,
  .step-card,
  .region-card,
  .gallery-card,
  .contact-card {
    border-radius: 22px;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .floating-button {
    width: 100%;
  }
}
