:root {
  --bg: #f8fafc;
  --text: #111827;
  --muted: #4b5563;
  --dark: #1f2937;
  --accent: #f59e0b;
  --accent-soft: #fff7ed;
  --white: #ffffff;
  --border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo img {
  display: block;
  width: 92px;
  height: 56px;
  object-fit: contain;
}

.logo span {
  max-width: 180px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.hero {
  background: linear-gradient(180deg, var(--white), var(--accent-soft));
  color: var(--text);
  padding: 96px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin: 0 0 12px;
}

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

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.hero-text {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 680px;
}

.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: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  color: #111827;
}

.button.secondary {
  background: transparent;
  color: inherit;
  border: 2px solid currentColor;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  padding: 8px 12px;
}

.hero-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(17,24,39,0.12);
}

.hero-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-card div {
  padding: 24px;
}

.hero-card h2 {
  font-size: 1.55rem;
  margin-bottom: 0;
}

.section {
  padding: 80px 0;
}

.muted {
  background: var(--white);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-section {
  background: var(--white);
}

.job-gallery {
  display: grid;
  gap: 24px;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.job-card-header {
  padding: 24px 24px 0;
}

.job-card-header p {
  color: var(--muted);
  margin-bottom: 0;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 24px;
}

.before-after-three {
  grid-template-columns: repeat(3, 1fr);
}

.before-after figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg);
}

.before-after img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.before-after figcaption {
  padding: 10px 12px 12px;
  color: var(--muted);
  font-weight: 700;
}

.process-section {
  background: var(--bg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.steps div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}

.steps strong {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 999px;
  color: #111827;
  margin-bottom: 18px;
}

.steps p {
  color: var(--muted);
  margin-bottom: 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.features div {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
}

.features strong,
.features span {
  display: block;
}

.features span {
  color: var(--muted);
  margin-top: 6px;
}

.areas-section {
  background: linear-gradient(180deg, var(--white), var(--bg));
}

.areas-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

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

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-list span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  padding: 10px 14px;
}

.areas-panel {
  display: grid;
  gap: 22px;
}

.areas-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 20px;
}

.faq-section {
  background: var(--white);
}

.faqs {
  display: grid;
  gap: 12px;
}

.faqs details {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
}

.faqs summary {
  cursor: pointer;
  font-weight: 800;
}

.faqs p {
  color: var(--muted);
  margin-bottom: 0;
}

.contact-box {
  background: var(--dark);
  color: var(--white);
  border-radius: 28px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
}

.contact-box p {
  color: #d1d5db;
}

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

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

.footer-grid p {
  margin: 0;
}

.footer-grid div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-grid a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.legal-page {
  background: var(--white);
}

.legal-content {
  max-width: 780px;
}

.legal-content h1 {
  margin-bottom: 24px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 36px;
  margin-bottom: 12px;
}

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

.legal-content a {
  color: var(--text);
  font-weight: 800;
}

@media (max-width: 800px) {
  .logo span {
    display: none;
  }

  nav {
    display: none;
  }

  .hero {
    padding: 72px 0;
  }

  .hero-grid,
  .cards,
  .before-after,
  .before-after-three,
  .steps,
  .areas-grid,
  .faq-grid,
  .features {
    grid-template-columns: 1fr;
  }

  .before-after {
    padding: 18px;
  }

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-grid div {
    justify-content: flex-start;
  }
}
.mobile-call {
  display: none;
}

.mobile-whatsapp {
  display: none;
}

@media (max-width: 800px) {
  .mobile-call,
  .mobile-whatsapp {
    display: flex;
    position: fixed;
    bottom: 16px;
    z-index: 20;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #111827;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.24);
  }

  .mobile-call {
    left: 16px;
    right: calc(50% + 6px);
  }

  .mobile-whatsapp {
    left: calc(50% + 6px);
    right: 16px;
    background: #25d366;
  }

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