@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&family=Bebas+Neue&display=swap');

:root {
  color-scheme: dark;
  --bg: #12153b;
  --bg-elevated: #202454;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7f2ec;
  --muted: #c7c0b7;
  --accent: #ef7d2d;
  --accent-soft: #ffab6d;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: 'Archivo', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(239, 125, 45, 0.12), transparent 26rem),
    linear-gradient(180deg, #211b35 0%, #12153b 36%, #17143a 100%);
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  overflow: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 5vw;
  color: var(--muted);
  font-size: 14px;
  background: rgba(0, 0, 0, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar a {
  color: var(--accent-soft);
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  background: #1fc965;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34), 0 0 0 8px rgba(31, 201, 101, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.42), 0 0 0 10px rgba(31, 201, 101, 0.12);
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.floating-whatsapp span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  padding: 22px 5vw 56px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 0 48px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.logo-crop {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 761 / 252;
}

.logo-crop img {
  position: absolute;
  top: -112%;
  left: 0;
  width: 230px;
  max-width: none;
  height: auto;
  display: block;
}

.brand-logo {
  width: 230px;
  max-width: 42vw;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--accent-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  cursor: pointer;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.9fr);
  gap: 38px;
  align-items: start;
}

.hero-copy {
  max-width: 760px;
}

.hero-media {
  width: min(620px, 100%);
  margin: 0 0 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-logo img,
.brand-logo img,
.service-page-logo img {
  width: 100%;
}

.eyebrow,
.panel-label {
  margin: 0 0 14px;
  color: var(--accent-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1,
.section h2,
.cta-banner h2 {
  margin-bottom: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8.4vw, 7.4rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-text,
.section-heading p,
.method-intro > p,
.contact-copy > p {
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #ec7227);
  color: #111111;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.hero-points {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 28px 0 0;
  color: #e0c7aa;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-soft);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.brand-showcase,
.panel-card,
.service-card,
.project-card,
.process-card,
.about-grid article,
.equipment-grid article,
.method-intro,
.contact-form,
.contact-tile,
.cta-banner {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    var(--bg-elevated);
  box-shadow: var(--shadow);
}

.brand-showcase {
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.brand-showcase strong {
  max-width: 280px;
  font-size: 22px;
  line-height: 1.2;
}

.work-showcase {
  display: block;
  min-height: 0;
  padding: 0 0 28px;
}

.showcase-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.work-showcase .panel-label,
.work-showcase strong {
  display: block;
  padding-left: 28px;
  padding-right: 28px;
}

.work-showcase .panel-label {
  margin-top: 24px;
}

.panel-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.panel-card::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 125, 45, 0.18), transparent 70%);
}

.panel-card-accent {
  background:
    linear-gradient(140deg, rgba(239, 125, 45, 0.22), rgba(0, 0, 0, 0.18)),
    var(--bg-elevated);
}

.panel-card-outline {
  border-style: dashed;
}

.panel-card strong,
.panel-card span,
.panel-card li,
.panel-label {
  position: relative;
  z-index: 1;
}

.panel-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.panel-card span,
.panel-card li {
  color: var(--muted);
  line-height: 1.65;
}

.panel-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 17px;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 5vw 26px;
}

.impact-strip div {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.impact-strip strong {
  display: block;
  margin-bottom: 8px;
}

.impact-strip span {
  color: var(--muted);
  line-height: 1.6;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 5vw 70px;
}

.stats-strip article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    #171a45;
  box-shadow: var(--shadow);
}

.stat-number {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-soft);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.4rem, 7vw, 5.6rem);
  line-height: 0.9;
}

.stats-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
}

.stats-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

main {
  padding: 0 5vw 80px;
}

.section {
  padding: 72px 0;
}

.section h2,
.cta-banner h2 {
  font-size: clamp(3rem, 6vw, 5rem);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.about-section {
  position: relative;
}

.about-section::before,
.equipment-section::before {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(239, 125, 45, 0.16), transparent 68%);
}

.about-section::before {
  top: 20px;
  right: -120px;
  width: 280px;
  height: 280px;
}

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

.about-grid article {
  padding: 28px;
}

.about-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-soft);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
}

.about-grid strong,
.equipment-grid span {
  display: block;
  font-size: 21px;
  line-height: 1.2;
}

.about-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.services-grid,
.projects-grid,
.equipment-grid {
  display: grid;
  gap: 18px;
}

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

.service-card {
  min-height: 260px;
  padding: 0 0 26px;
  overflow: hidden;
}

.service-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin: 24px 26px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), rgba(255, 255, 255, 0.24));
}

.service-card h3,
.project-card h3,
.step-item h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.service-card h3,
.service-card p {
  padding-left: 26px;
  padding-right: 26px;
}

.card-link {
  display: inline-flex;
  margin: 20px 26px 0;
  color: var(--accent-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card-link:hover {
  color: #ffffff;
}

.service-card p,
.project-card p,
.step-item p,
.bullet-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.equipment-section {
  position: relative;
}

.equipment-section::before {
  left: -140px;
  bottom: 30px;
  width: 320px;
  height: 320px;
}

.equipment-grid {
  grid-template-columns: repeat(6, 1fr);
}

.equipment-grid article {
  position: relative;
  min-height: 156px;
  padding: 22px;
  overflow: hidden;
}

.equipment-grid article::before {
  content: '';
  position: absolute;
  inset: 20px 20px auto auto;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), rgba(255, 255, 255, 0.2));
}

.equipment-grid article::after {
  content: '';
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.equipment-grid span {
  position: relative;
  z-index: 1;
  margin-top: 74px;
}

.section-method {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 22px;
  align-items: start;
}

.method-intro,
.process-card {
  padding: 30px;
}

.bullet-panel {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.bullet-row {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 14px;
  align-items: start;
}

.bullet-mark {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  background: var(--accent);
  transform: rotate(45deg);
}

.steps-list {
  display: grid;
  gap: 18px;
}

.step-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.step-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.step-item span {
  color: var(--accent-soft);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  line-height: 1;
}

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

.project-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.06), transparent 60%);
}

.project-tag,
.project-card h3,
.project-card p,
.project-line {
  position: relative;
  z-index: 1;
}

.project-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-soft);
  font-size: 13px;
  font-weight: 800;
}

.project-line {
  width: 100%;
  height: 3px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.cta-banner {
  padding: 48px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(239, 125, 45, 0.22), transparent 42%),
    #171512;
}

.cta-banner h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.contact-tiles {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-tile {
  padding: 18px 22px;
}

.contact-tile span {
  display: block;
  margin-bottom: 7px;
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #dcc9b2;
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8f8790;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 34px 5vw;
  background: #0f1132;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  width: 210px;
  max-width: 48vw;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-links a,
.developer-credit a {
  transition: color 0.2s ease;
}

.footer-links a:hover,
.developer-credit a:hover {
  color: var(--accent-soft);
}

.footer-content {
  display: grid;
  gap: 6px;
  text-align: right;
}

.site-footer strong {
  font-size: 20px;
}

.footer-content span {
  color: var(--muted);
}

.developer-credit {
  font-size: 14px;
}

.developer-credit a {
  color: var(--accent-soft);
  font-weight: 800;
}

.wp-page-content {
  min-height: 100vh;
  padding: 96px 6%;
}

.wp-page-wrap {
  width: min(100%, 900px);
  margin: 0 auto;
}

.service-page-logo {
  width: min(290px, 78vw);
  margin-bottom: 48px;
}

.wp-page-wrap h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: 0;
}

.wp-page-wrap h2 {
  margin: 40px 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  color: var(--text);
}

.wp-page-wrap p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.7;
}

.wp-page-wrap ul {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.wp-page-wrap li::marker {
  color: var(--accent);
}

.legal-note {
  margin-top: 34px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 1120px) {
  .hero-grid,
  .section-method,
  .section-contact {
    grid-template-columns: 1fr;
  }

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

  .projects-grid,
  .impact-strip,
  .stats-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    justify-content: center;
    padding: 10px 20px;
    text-align: center;
  }

  .hero {
    padding: 18px 20px 42px;
  }

  .site-nav {
    align-items: flex-start;
    flex-wrap: wrap;
    padding-bottom: 38px;
  }

  .brand-logo {
    width: 178px;
    max-width: 72vw;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 10px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-media {
    width: min(330px, 100%);
  }

  .hero h1,
  .section h2,
  .cta-banner h2 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .hero-text,
  .section-heading p,
  .method-intro > p,
  .contact-copy > p {
    font-size: 16px;
  }

  .impact-strip,
  .stats-strip,
  main {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .brand-showcase {
    min-height: 250px;
  }

  .service-card,
  .project-card,
  .method-intro,
  .process-card,
  .contact-form,
  .contact-tile,
  .cta-banner {
    border-radius: 18px;
  }

  .section {
    padding: 54px 0;
  }

  .cta-banner {
    padding: 34px 22px;
  }

  .button {
    width: 100%;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding: 28px 20px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-content {
    text-align: left;
  }
}
