:root {
  --bg: #ffffff;
  --soft: #f7f8fa;
  --ink: #101827;
  --muted: #6d7480;
  --line: #e6e9ee;
  --navy: #0f1d33;
  --red: #d61f2c;
  --green: #25d366;
  --card: #ffffff;
  --shadow: 0 18px 58px rgba(16, 24, 39, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px max(28px, calc((100vw - var(--max)) / 2 + 28px));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.logo-box {
  display: grid;
  width: 74px;
  color: var(--red);
  line-height: 1;
  text-align: center;
}

.logo-box strong {
  font-size: 1.35rem;
  letter-spacing: 0.03em;
}

.logo-box small {
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
}

.brand > span:last-child strong,
.brand > span:last-child small {
  display: block;
}

.brand > span:last-child strong {
  font-size: 1.02rem;
}

.brand > span:last-child small {
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--ink);
  font-weight: 800;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.nav-cta,
.btn-primary {
  color: #fff;
  background: var(--navy);
}

.btn-secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.btn:hover,
.btn:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 1.4rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.78fr);
  gap: 46px;
  align-items: center;
  max-width: var(--max);
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  padding: 80px 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: var(--red);
  content: "";
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 4.65vw, 4.45rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.25;
}

.hero-copy p,
.section-head-split p,
.about-grid p,
.service-card p,
.success-card p,
.process-grid p,
.contact-section p,
.site-footer {
  color: var(--muted);
}

.hero-copy p {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 1.12rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-actions,
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-points {
  margin-top: 34px;
}

.hero-points div,
.expertise-note {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(16, 24, 39, 0.06);
}

.hero-points strong,
.hero-points span,
.expertise-note strong,
.expertise-note span {
  display: block;
}

.hero-points span,
.expertise-note span {
  color: var(--muted);
}

.expertise-note {
  width: fit-content;
  margin-top: 18px;
}

.hero-media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 640px;
  background: var(--soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center top;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 28px;
}

.section-soft {
  max-width: none;
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  background: var(--soft);
}

.about-grid,
.section-head-split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 54px;
  align-items: start;
}

.about-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media img {
  display: block;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.stats-row div {
  padding: 18px;
  background: var(--soft);
  border-radius: var(--radius);
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  color: var(--navy);
  font-size: 1.6rem;
}

.stats-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.text-link {
  color: var(--navy);
  font-weight: 900;
}

.service-grid,
.success-grid,
.process-grid,
.listing-grid {
  display: grid;
  gap: 20px;
}

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

.service-card,
.success-card,
.listing-grid article,
.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(16, 24, 39, 0.045);
}

.service-card {
  padding: 28px;
}

.service-card span {
  display: block;
  margin-bottom: 48px;
  color: var(--red);
  font-weight: 900;
}

.success-card {
  overflow: hidden;
}

.success-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.success-card > div {
  padding: 22px;
}

.badge {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-name {
  color: var(--ink);
  font-weight: 800;
}

.small-note {
  font-size: 0.92rem;
}

.section-dark {
  max-width: none;
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  color: #fff;
  background: var(--navy);
}

.section-dark .eyebrow,
.section-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 36px;
}

.process-grid article {
  padding: 24px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.process-grid span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--navy);
  background: #fff;
  border-radius: 50%;
  font-weight: 900;
}

.listings-head {
  align-items: center;
  margin-bottom: 30px;
}

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

.listing-grid article {
  overflow: hidden;
}

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

.listing-grid p {
  min-height: 76px;
  margin: 0;
  padding: 18px;
  color: var(--ink);
  font-weight: 800;
}

.contact-list {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.contact-list a,
.contact-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  color: var(--ink);
}

.contact-list span {
  color: var(--muted);
  text-align: right;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 34px;
}

.contact-form h3 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1.35rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(15, 29, 51, 0.1);
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.consent input {
  width: auto;
  margin-top: 4px;
}

.full {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.form-status[data-type="error"] {
  color: var(--red);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.hidden {
  display: none;
}

.map-wrap {
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 470px;
  border: 0;
}

.whatsapp-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 30;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 16px 42px rgba(37, 211, 102, 0.34);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink);
  font-weight: 800;
}

.site-footer small {
  grid-column: 1 / -1;
}

.thank-you-page {
  display: grid;
  min-height: 100vh;
  padding: 28px;
  place-items: center;
  color: var(--ink);
  background: var(--soft);
}

.thank-you-page p {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
}

@media (max-width: 1060px) {
  .hero,
  .about-grid,
  .section-head-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
  }

  .menu-button {
    display: block;
    position: absolute;
    top: 24px;
    right: 18px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero,
  .section {
    padding: 64px 18px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(1.95rem, 9vw, 2.9rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 480px;
  }

  .stats-row,
  .service-grid,
  .success-grid,
  .process-grid,
  .listing-grid {
    grid-template-columns: 1fr;
  }

  .contact-list a,
  .contact-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-list span {
    text-align: left;
  }

  .contact-form {
    padding: 24px;
  }

  .map-wrap iframe {
    height: 430px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
