:root {
  --ink: #101820;
  --ink-soft: #24313d;
  --muted: #697684;
  --line: #dde5ea;
  --paper: #f6f8f7;
  --white: #ffffff;
  --blue: #1f7ed6;
  --blue-dark: #0e5aa0;
  --teal: #18a999;
  --copper: #c46b35;
  --amber: #ffb238;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.12);
  --radius: 8px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 16px auto 0;
  padding: 10px 14px 10px 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(16, 24, 32, 0.52);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  border-color: rgba(16, 24, 32, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(16, 24, 32, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 12px;
  color: currentColor;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 7px;
  opacity: 0.88;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
  outline: none;
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a:focus-visible {
  background: rgba(31, 126, 214, 0.1);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  color: currentColor;
  border: 0;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle svg,
.btn svg,
.service-icon svg,
.sector-item svg,
.direct-contacts svg,
.whatsapp-float svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 18, 24, 0.94), rgba(12, 18, 24, 0.66) 42%, rgba(12, 18, 24, 0.2) 82%),
    linear-gradient(180deg, rgba(12, 18, 24, 0.36), rgba(12, 18, 24, 0.58));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 132px 0 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 7.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 16px 34px rgba(31, 126, 214, 0.28);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
}

.section {
  padding: 96px 0;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.intro-grid,
.split-layout,
.contact-grid,
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: start;
}

.section h2,
.quote-band p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro-copy p,
.section-heading p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-copy {
  display: grid;
  gap: 18px;
}

.services-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(246, 248, 247, 0)),
    var(--paper);
}

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

.section-heading p:not(.section-kicker) {
  margin-top: 18px;
}

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

.service-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 338px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(16, 24, 32, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 126, 214, 0.26);
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--blue-dark);
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(31, 126, 214, 0.12), rgba(24, 169, 153, 0.12));
}

.service-card h3,
.timeline-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.2;
}

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

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--copper);
  transform: translateY(-50%);
}

.method-section {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 24%, rgba(24, 169, 153, 0.2), transparent 30%),
    linear-gradient(135deg, #101820, #17242d 55%, #241d18);
}

.method-section .section-kicker,
.method-section h2,
.method-section .section-heading p {
  color: var(--white);
}

.method-section .section-heading p {
  opacity: 0.74;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ink);
  font-weight: 800;
  border-radius: 7px;
  background: var(--amber);
}

.timeline-item h3 {
  color: var(--white);
}

.timeline-item p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.section-heading.compact {
  max-width: 640px;
}

.sector-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.sector-item {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 132px;
  padding: 18px 10px;
  color: var(--ink-soft);
  text-align: center;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfc;
}

.sector-item svg {
  color: var(--teal);
}

.quote-band {
  padding: 52px 0;
  background: linear-gradient(135deg, var(--blue), var(--teal) 72%, var(--amber));
}

.quote-grid {
  align-items: center;
}

.quote-band p {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.quote-band .btn {
  justify-self: end;
}

.contact-section {
  background: var(--paper);
}

.contact-grid {
  align-items: stretch;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(16, 24, 32, 0.06);
}

.contact-copy h2 {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.direct-contacts {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
}

.direct-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 44px;
  padding: 10px 13px;
  color: var(--ink);
  font-weight: 800;
  border: 1px solid rgba(31, 126, 214, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.74);
}

.direct-contacts a:hover,
.direct-contacts a:focus-visible {
  color: var(--blue-dark);
  outline: 3px solid rgba(31, 126, 214, 0.14);
}

.direct-contacts svg {
  color: var(--teal);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid #cdd8df;
  border-radius: 7px;
  background: #fbfcfc;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(31, 126, 214, 0.16);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.full-field,
.form-feedback {
  grid-column: 1 / -1;
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 800;
}

.form-feedback.is-error {
  color: #b33b25;
}

.form-feedback.is-success {
  color: var(--blue-dark);
}

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

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
}

.location-map {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #dfe8ec;
  box-shadow: 0 18px 52px rgba(16, 24, 32, 0.1);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 42px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgba(16, 24, 32, 0.16);
  background:
    radial-gradient(circle at 16% 24%, rgba(24, 169, 153, 0.2), transparent 30%),
    linear-gradient(135deg, #101820, #17242d 55%, #241d18);
}

.location-copy h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.location-copy address {
  display: grid;
  gap: 4px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  font-style: normal;
}

.footer-minimal span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer-minimal strong {
  display: block;
  color: var(--ink);
}

.site-footer {
  padding: 22px 0 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-minimal {
  display: grid;
  justify-content: center;
  position: relative;
  text-align: center;
}

.footer-minimal::before {
  content: "";
  width: 76px;
  height: 3px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--amber));
}

.social-icon {
  fill: currentColor;
  stroke: none;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 14px 18px;
  color: var(--white);
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, #1fae62, #18a999);
  box-shadow: 0 18px 42px rgba(19, 139, 93, 0.34);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(19, 139, 93, 0.42);
  outline: none;
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .intro-grid,
  .split-layout,
  .contact-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    min-height: auto;
  }

  .quote-band .btn {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 20px);
    min-height: 64px;
    margin-top: 10px;
  }

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

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    padding: 8px;
    color: var(--ink);
    border: 1px solid rgba(16, 24, 32, 0.08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 46px rgba(16, 24, 32, 0.18);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 18, 24, 0.95), rgba(12, 18, 24, 0.74)),
      linear-gradient(180deg, rgba(12, 18, 24, 0.22), rgba(12, 18, 24, 0.58));
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 116px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .service-grid,
  .sector-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .sector-item {
    min-height: 108px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-inline: 10px;
  }

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

  .hero h1 {
    font-size: 3.1rem;
  }

  .contact-form {
    padding: 18px;
  }

  .direct-contacts a {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 13px 15px;
  }

  .whatsapp-float span {
    display: none;
  }
}
