:root {
  --navy: #0f172a;
  --ink: #111827;
  --steel: #1e293b;
  --slate: #334155;
  --gray: #64748b;
  --mist: #f8fafc;
  --soft-gray: #eef2f7;
  --line: #d9e2ee;
  --white: #ffffff;
  --orange: #f97316;
  --orange-dark: #c2410c;
  --green: #16a34a;
  --shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
  --shadow-soft: 0 14px 32px rgba(15, 23, 42, 0.08);
  --radius: 8px;
  --section: clamp(2.45rem, 4.2vw, 3.9rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--steel);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  color: var(--white);
  background: rgba(15, 23, 42, 0.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.32s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-scrolled {
  background: rgba(15, 23, 42, 0.97);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.24);
}

.topbar {
  display: none;
}

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

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

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid rgba(249, 115, 22, 0.68);
  border-radius: 6px;
  background: linear-gradient(145deg, #fb7416 0%, #d9530b 100%);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 16px 30px rgba(249, 115, 22, 0.2);
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  left: 9px;
  bottom: 10px;
  width: 2px;
  height: 18px;
}

.brand-mark::before {
  left: 9px;
  right: 9px;
  bottom: 10px;
  height: 2px;
}

.brand-mark::after {
  left: 9px;
  bottom: 10px;
  width: 2px;
  height: 18px;
}

.brand strong,
h1,
h2,
h3 {
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.12;
}

.brand strong {
  display: block;
  font-size: 0.96rem;
  white-space: nowrap;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 600;
}

.nav-toggle {
  display: grid;
  gap: 5px;
  width: 42px;
  height: 42px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.main-nav {
  position: absolute;
  top: 76px;
  left: 16px;
  right: 16px;
  display: grid;
  gap: 8px;
  padding: 16px;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.main-nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  text-align: center;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.25);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  padding: 118px 0 46px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(249, 115, 22, 0.15), transparent 28%),
    linear-gradient(90deg, rgba(5, 10, 20, 0.97), rgba(15, 23, 42, 0.82) 48%, rgba(15, 23, 42, 0.34)),
    url("https://images.unsplash.com/photo-1485083269755-a7b559a4fe5e?auto=format&fit=crop&w=1900&q=86") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.88), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-copy-block {
  max-width: 790px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before,
.section-kicker::after {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}

h1 {
  max-width: 820px;
  margin: 18px 0 18px;
  font-size: clamp(2.2rem, 4.35vw, 3.65rem);
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.hero .hero-actions {
  display: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.2);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

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

.hero-panel {
  display: grid;
  gap: 12px;
  width: min(100%, 330px);
  justify-self: end;
  align-self: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(7, 12, 23, 0.74));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.panel-label {
  display: block;
  margin: 0 0 2px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  max-width: 280px;
  margin: 0 auto;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1.2;
  text-align: center;
}

.hero-panel p {
  max-width: 292px;
  margin: 0 auto 2px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.panel-metrics span {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.panel-metrics b {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1;
}

.panel-metrics small {
  display: block;
  max-width: 110px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  line-height: 1.28;
}

.proof-strip {
  background: var(--mist);
  color: var(--navy);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.proof-grid span {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 18px 20px 18px 36px;
  background: var(--white);
  color: var(--steel);
  font-weight: 800;
  text-align: left;
}

.proof-grid span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 6px;
  height: 28px;
  border-radius: 99px;
  background: var(--orange);
  transform: translateY(-50%);
}

.intro-band {
  padding: clamp(2.25rem, 4vw, 3.35rem) 0;
  background: #101827;
  color: var(--white);
}

.intro-grid {
  position: relative;
  display: grid;
  gap: 24px;
  align-items: center;
}

h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: clamp(1.9rem, 4.5vw, 3.15rem);
  letter-spacing: 0;
}

.intro-band h2,
.stats-section h2,
.contact-section h2,
.site-footer h3 {
  color: var(--white);
}

.intro-band h2 {
  max-width: 520px;
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.intro-band p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-section,
.services-section,
.projects-section,
.values-section,
.contact-section,
.process-section {
  padding: var(--section) 0;
}

.about-section {
  display: grid;
  gap: 26px;
  padding-top: clamp(2.6rem, 4vw, 3.7rem);
  padding-bottom: clamp(2.3rem, 3.7vw, 3.2rem);
}

.services-section {
  padding-top: clamp(2.25rem, 3.5vw, 3.1rem);
}

.about-media {
  position: relative;
  height: 100%;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.9);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.media-caption strong {
  color: var(--orange);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.4rem;
}

.media-caption span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.about-copy h2 {
  max-width: 560px;
  font-size: clamp(2rem, 3.7vw, 3.05rem);
}

.about-copy p,
.section-heading p,
.coverage-grid p,
.contact-info p {
  color: var(--gray);
}

.about-copy > p {
  max-width: 660px;
  font-size: 1rem;
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 9px;
  max-width: 620px;
  margin-top: 22px;
}

.check-list span {
  padding: 12px 14px;
  border-left: 3px solid var(--orange);
  background: var(--mist);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.94rem;
}

.services-section,
.coverage-section {
  background: linear-gradient(180deg, #eef3f8 0%, #f8fafc 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.services-section .section-heading {
  max-width: 1100px;
}

.services-section .section-heading h2 {
  max-width: 1040px;
  margin-inline: auto;
  font-size: clamp(2rem, 3.45vw, 2.85rem);
  line-height: 1.14;
}

.split-title span {
  display: block;
  white-space: nowrap;
}

.services-section .section-heading p {
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  white-space: nowrap;
}

.section-heading .section-kicker {
  justify-content: center;
}

.projects-section .section-heading {
  max-width: 980px;
}

.projects-section .section-heading h2 {
  white-space: nowrap;
}
.values-section .section-kicker {
  justify-content: center;
  white-space: nowrap;
}

.values-section .section-heading {
  max-width: 980px;
}

.values-section .section-heading h2 {
  max-width: none;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  white-space: nowrap;
}
.card-grid,
.values-grid,
.project-grid {
  display: grid;
  gap: 18px;
}

.values-grid {
  gap: 16px;
}

.service-card,
.value-card,
.contact-form {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 34px 24px 28px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card::before {
  display: none;
}

.service-number {
  display: none;
}

.service-card:hover,
.value-card:hover,
.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.36);
  box-shadow: var(--shadow);
}

.icon-box,
.value-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius);
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange);
}

.icon-box svg,
.value-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.value-card h3 {
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 12px;
  color: var(--navy);
}

.service-card h3 {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.08rem;
}

.service-card h3::after,
.value-card h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 99px;
  background: var(--orange);
  transform: translateX(-50%);
}

.service-card p {
  max-width: 230px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.55;
}

.value-card {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 22px 20px 20px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.value-card p {
  max-width: 285px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.45;
}

.value-card .value-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 7px;
  background: rgba(249, 115, 22, 0.075);
}

.value-card .value-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.9;
}

.value-card h3 {
  margin-bottom: 13px;
  padding-bottom: 9px;
  font-size: 1.04rem;
}

.value-card h3::after {
  width: 34px;
  height: 2px;
}
.stats-section {
  padding: clamp(2.6rem, 4.3vw, 4rem) 0;
  background:
    linear-gradient(rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.92)),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1600&q=70") center/cover;
  color: var(--white);
}

.stats-layout {
  display: grid;
  gap: 30px;
}

.stats-grid {
  display: grid;
  gap: 14px;
}

.stat-item {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.stat-item strong {
  display: block;
  color: var(--orange);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  line-height: 1;
}

.stat-item span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

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

.process-grid {
  display: grid;
  gap: 30px;
}

.process-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.process-list li {
  display: grid;
  gap: 6px;
  padding: 20px;
  background: var(--white);
}

.process-list strong {
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.02rem;
}

.process-list span {
  color: var(--gray);
}

.project-card {
  overflow: hidden;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.project-card div {
  padding: 20px;
}

.project-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.coverage-section {
  padding: clamp(2.6rem, 4.3vw, 4rem) 0;
}

.coverage-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.coverage-map {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=900&q=80") center/cover;
  box-shadow: var(--shadow);
}

.coverage-map::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.map-line {
  position: absolute;
  left: 50%;
  top: 22%;
  width: 2px;
  height: 56%;
  background: linear-gradient(var(--orange), rgba(255, 255, 255, 0.4));
}

.map-point {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.map-point::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
}

.point-one {
  left: 17%;
  top: 29%;
}

.point-two {
  right: 13%;
  bottom: 29%;
}

.map-badge {
  position: absolute;
  left: 40px;
  bottom: 40px;
  right: 40px;
  padding: 17px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96)),
    url("https://images.unsplash.com/photo-1581094288338-2314dddb7ece?auto=format&fit=crop&w=1600&q=60") center/cover;
  color: var(--white);
}

.contact-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-list a,
.contact-list span {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.87);
  font-weight: 800;
}

.contact-list a:hover {
  color: var(--orange);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 20px;
  color: var(--steel);
}

.form-heading {
  display: grid;
  gap: 4px;
  padding-bottom: 4px;
}

.form-heading strong {
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.15rem;
}

.form-heading span {
  color: var(--gray);
  font-weight: 600;
}

.form-row {
  display: grid;
  gap: 7px;
}

label {
  color: var(--navy);
  font-weight: 900;
  font-size: 0.88rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

textarea {
  resize: vertical;
}

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

.site-footer {
  padding: 42px 0 22px;
  background: #090f1d;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  gap: 26px;
  text-align: center;
  justify-items: center;
}

.footer-brand {
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.site-footer p {
  max-width: 310px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 7px 0;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  z-index: 18;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 18px 28px rgba(22, 163, 74, 0.3);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  stroke: none;
}

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

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

@media (min-width: 640px) {
  .proof-grid,
  .service-grid,
  .values-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px;
  }

  .form-wide,
  .form-heading {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .topbar {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
  }

  .topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 9px 0;
    color: rgba(255, 255, 255, 0.66);
    font-weight: 700;
  }

  .topbar-inner div {
    display: flex;
    gap: 20px;
  }

  .nav-shell {
    min-height: 74px;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

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

  .nav-cta {
    margin-left: 8px;
    padding-inline: 16px !important;
  }

  .hero {
    min-height: 82vh;
    padding-top: 138px;
    padding-bottom: 42px;
  }

  .hero-content {
    grid-template-columns: minmax(0, 0.94fr) 330px;
  }

  .proof-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .intro-grid,
  .coverage-grid,
  .contact-grid,
  .process-grid,
  .stats-layout {
    grid-template-columns: minmax(360px, 0.86fr) minmax(420px, 1fr);
  }

  .about-section {
    grid-template-columns: minmax(440px, 0.95fr) minmax(420px, 1fr);
  }

  .intro-grid::before {
    content: "";
    position: absolute;
    left: calc(46% - 1px);
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
  }

  .about-section {
    align-items: stretch;
  }

  .process-grid,
  .stats-layout {
    align-items: center;
  }

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

  .values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1100px;
    margin-inline: auto;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
  }
}


@media (min-width: 900px) and (max-height: 760px) {
  .hero {
    min-height: 100vh;
    padding-top: 112px;
    padding-bottom: 34px;
  }

  h1 {
    max-width: 720px;
    margin: 12px 0 14px;
    font-size: clamp(2.05rem, 3.55vw, 2.9rem);
    line-height: 1.05;
  }

  .hero-copy {
    max-width: 610px;
    font-size: 0.96rem;
  }

  .hero-panel {
    width: min(100%, 320px);
    padding: 18px;
    gap: 10px;
  }

  .panel-metrics span {
    min-height: 70px;
  }
}

@media (max-width: 420px) {
  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    display: none;
  }

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

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

  .map-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 860px) {
  .values-section .section-heading h2 {
    white-space: normal;
  }
}
@media (max-width: 980px) {
  .split-title span {
    white-space: normal;
  }

  .services-section .section-heading p {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .projects-section .section-heading h2 {
    white-space: normal;
  }
}
