:root {
  --navy: #08213f;
  --navy-2: #0d315c;
  --navy-3: #123f72;
  --ink: #142235;
  --muted: #53677d;
  --line: #dbe4ee;
  --soft: #f3f6f9;
  --soft-2: #e9eff5;
  --white: #ffffff;
  --green: #22a06b;
  --green-dark: #14784f;
  --orange: #f28c28;
  --shadow: 0 18px 42px rgba(8, 33, 63, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

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

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

.skip-link {
  position: absolute;
  top: -44px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
}

.skip-link:focus {
  top: 12px;
}

.top-strip {
  color: #dbe9f8;
  background: linear-gradient(90deg, #06192f, var(--navy));
  font-size: 0.86rem;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 0;
}

.top-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

.top-strip span {
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(8, 33, 63, 0.06);
  backdrop-filter: blur(14px);
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

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

.brand-logo {
  display: block;
  width: 220px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.brand-logo + .brand-text {
  display: none;
}

.brand-text strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  content: "";
  transition: 0.2s ease;
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] {
  border-color: rgba(242, 140, 40, 0.75);
  box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.14);
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(1px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-1px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 3px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 10px;
  border-radius: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  transition: 0.18s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-dark);
  background: #eef8f4;
}

.dropdown-toggle::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 300px;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.18s ease;
}

.dropdown a {
  display: block;
  padding: 10px 11px;
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.dropdown a:hover,
.dropdown a.active {
  color: var(--green-dark);
  background: #eef8f4;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(6, 25, 47, 0.98), rgba(8, 33, 63, 0.95) 48%, rgba(18, 63, 114, 0.94)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.075) 0 1px, transparent 1px 78px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 78px);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 56%, rgba(34, 160, 107, 0.18) 56% 57%, transparent 57%),
    linear-gradient(90deg, rgba(242, 140, 40, 0.18), transparent 23%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.82fr);
  align-items: center;
  gap: 46px;
  min-height: 680px;
  padding: 88px 0 94px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--orange);
  content: "";
}

.hero .eyebrow {
  color: #d9fff0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

.hero h1 {
  margin: 0 0 18px;
  max-width: 870px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1.05;
}

.hero p {
  max-width: 760px;
  color: #e2edf8;
  font-size: 1.08rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 12px 26px rgba(34, 160, 107, 0.26);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

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

.btn-outline {
  color: var(--navy);
  background: var(--white);
  border-color: #b9cadb;
}

.btn-outline:hover,
.btn-light:hover {
  color: var(--green-dark);
  background: #eef8f4;
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.12);
}

.quick-contact div {
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
}

.quick-contact span {
  display: block;
  color: #bdd3e8;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-contact strong {
  display: block;
  color: var(--white);
  overflow-wrap: anywhere;
}

.quick-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.hero-card {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.16);
  box-shadow: 0 28px 70px rgba(0,0,0,0.22);
}

.hero-card .placeholder {
  min-height: 320px;
  border-color: rgba(255,255,255,0.32);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(230,239,247,0.92)),
    repeating-linear-gradient(135deg, transparent 0 17px, rgba(8,33,63,0.07) 17px 19px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
}

.hero-stats div {
  padding: 13px;
  background: rgba(255,255,255,0.12);
}

.hero-stats strong {
  display: block;
  font-size: 1.18rem;
}

.hero-stats span {
  display: block;
  color: #c8d9e8;
  font-size: 0.78rem;
  font-weight: 700;
}

.page-hero {
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(6,25,47,0.99), rgba(13,49,92,0.96)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 82px);
}

.page-hero .container {
  padding: 78px 0;
}

.breadcrumb {
  margin-bottom: 12px;
  color: #b8cde3;
  font-size: 0.9rem;
  font-weight: 800;
}

.page-hero h1 {
  margin: 0 0 14px;
  max-width: 890px;
  font-size: clamp(2.15rem, 4.3vw, 4rem);
  line-height: 1.08;
}

.page-hero p {
  max-width: 830px;
  color: #dce8f4;
  font-size: 1.05rem;
}

.section {
  padding: 76px 0;
}

.section.alt {
  background:
    linear-gradient(180deg, var(--soft), #fbfcfe),
    repeating-linear-gradient(90deg, rgba(8,33,63,0.04) 0 1px, transparent 1px 78px);
}

.section.navy {
  color: var(--white);
  background:
    linear-gradient(135deg, #06192f, var(--navy), var(--navy-3)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 84px);
}

.section-header {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-header.center {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.section-title {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.16;
}

.section-header p,
.lead {
  color: var(--muted);
  font-size: 1.03rem;
}

.navy .section-title,
.navy .section-header p,
.navy .lead {
  color: var(--white);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  align-items: center;
  gap: 44px;
}

.card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8, 33, 63, 0.07);
  transition: 0.22s ease;
}

.card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  border-radius: var(--radius) var(--radius) 0 0;
  content: "";
  opacity: 0;
  transition: 0.22s ease;
}

.card:hover {
  border-color: #bad0e4;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.13rem;
  line-height: 1.3;
}

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

.card .btn {
  margin-top: 8px;
}

.service-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
}

.service-card .btn {
  align-self: end;
  width: fit-content;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 15px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, var(--navy-3), var(--navy)),
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(255,255,255,0.18) 8px 10px);
  font-weight: 900;
}

.placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  color: var(--navy);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(231,238,246,0.94)),
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(8,33,63,0.08) 16px 18px);
  border: 1px solid #b9cadb;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(8, 33, 63, 0.08);
  font-weight: 900;
}

.placeholder::before {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(34,160,107,0.36);
  border-radius: 7px;
  content: "";
}

.placeholder::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 94px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  content: "";
  opacity: 0.75;
}

.placeholder small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid #b9cadb;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: 0 12px 28px rgba(8, 33, 63, 0.08);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  aspect-ratio: 30 / 19;
  object-fit: contain;
  background: #e8eff6;
}

.hero-card .image-frame {
  border-color: rgba(255,255,255,0.72);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.hero-card .image-frame img {
  min-height: 320px;
}

.founder-card img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #e8eff6;
}

.media-card {
  overflow: hidden;
  padding: 0;
}

.media-card .placeholder {
  min-height: 190px;
  border-width: 0 0 1px;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: none;
}

.media-card .card-body {
  padding: 24px;
}

.check-list,
.service-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.check-list li,
.service-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #35475b;
}

.check-list li::before,
.service-list li::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 140, 40, 0.13);
  content: "";
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat {
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.65rem;
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--green-dark), var(--navy)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 18px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band h3 {
  margin: 0 0 9px;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
}

.cta-band p {
  color: #e7f3ee;
  max-width: 800px;
}

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

.process-step {
  position: relative;
  min-height: 116px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(8, 33, 63, 0.08);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  height: 32px;
  margin-bottom: 12px;
  color: var(--white);
  background: var(--green);
  border-radius: 99px;
  font-weight: 900;
}

.process-step h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
}

.flow {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.flow-item {
  position: relative;
  padding: 16px 18px 16px 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
}

.flow-item::before {
  position: absolute;
  left: 18px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--white);
  background: var(--green);
  border-radius: 99px;
  content: attr(data-step);
  font-size: 0.76rem;
}

.flow-item::after {
  position: absolute;
  left: 29px;
  bottom: -13px;
  width: 2px;
  height: 12px;
  background: var(--orange);
  content: "";
}

.flow-item:last-child::after {
  display: none;
}

.customer-logo {
  display: grid;
  place-items: center;
  min-height: 128px;
  padding: 18px;
  border: 1px solid #d5e0ea;
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--white);
  text-align: center;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(8, 33, 63, 0.05);
}

.customer-logo img {
  width: 100%;
  max-width: 210px;
  max-height: 96px;
  object-fit: contain;
}

.customer-note {
  margin-top: 22px;
  color: var(--muted);
  text-align: center;
  font-size: 0.94rem;
}

.footer-brand {
  max-width: 220px;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--white);
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.contact-card {
  display: grid;
  gap: 12px;
}

.contact-line {
  display: grid;
  gap: 3px;
}

.contact-line span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-line strong,
.contact-line a {
  color: var(--navy);
  overflow-wrap: anywhere;
}

.contact-line a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}

.form {
  display: grid;
  gap: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #c7d4e1;
  border-radius: var(--radius);
}

textarea {
  min-height: 145px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(34, 160, 107, 0.16);
  border-color: var(--green);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-placeholder {
  min-height: 320px;
}

.site-footer {
  color: #d6e4f1;
  background:
    linear-gradient(135deg, #06192f, var(--navy)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 80px);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr 1.1fr;
  gap: 28px;
  padding: 56px 0;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 13px;
  color: var(--white);
  font-size: 1.08rem;
}

.site-footer p,
.site-footer a {
  color: #c5d5e4;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 17px 0;
  color: #b8cbe0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.9rem;
}

.whatsapp-float,
.scroll-top {
  position: fixed;
  right: 18px;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(8, 33, 63, 0.22);
  font-weight: 900;
}

.whatsapp-float {
  bottom: 84px;
  background: #24d366;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.scroll-top {
  bottom: 24px;
  border: 0;
  background: var(--navy);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: 0.55s ease;
}

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

.mt-24 {
  margin-top: 24px;
}

.mt-34 {
  margin-top: 34px;
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: grid;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    align-content: start;
    align-items: stretch;
    justify-content: stretch;
    justify-items: stretch;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
    padding: 14px 16px 28px;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: grid;
  }

  .nav-menu > li {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    min-height: 46px;
    padding: 12px;
  }

  .dropdown {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 8px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .has-dropdown:hover .dropdown {
    display: none;
  }

  .has-dropdown.open:hover .dropdown {
    display: block;
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .grid-4,
  .grid-3,
  .stat-band,
  .footer-main,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .top-strip .container {
    display: grid;
    gap: 0;
    padding: 8px 0;
  }

  .top-strip span {
    white-space: normal;
  }

  .brand-text span {
    display: none;
  }

  .brand-logo {
    width: 176px;
    max-height: 56px;
  }

  .nav-menu {
    max-height: calc(100vh - 78px);
    padding-right: 12px;
    padding-left: 12px;
  }

  .hero-grid {
    padding: 52px 0 64px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
    line-height: 1.08;
  }

  .hero p,
  .page-hero p,
  .section-header p,
  .lead {
    font-size: 1rem;
  }

  .page-hero .container {
    padding: 52px 0;
  }

  .section {
    padding: 54px 0;
  }

  .hero-actions,
  .button-row {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .quick-contact,
  .hero-stats,
  .grid-4,
  .grid-3,
  .grid-2,
  .stat-band,
  .footer-main,
  .process,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .cta-band {
    padding: 26px 22px;
  }

  .placeholder {
    min-height: 220px;
  }

  .image-frame img,
  .hero-card .image-frame img {
    min-height: 210px;
  }

  .whatsapp-float,
  .scroll-top {
    right: 14px;
    width: 46px;
    height: 46px;
  }

  .whatsapp-float {
    bottom: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
  }

  .whatsapp-float.show-mobile {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .scroll-top {
    bottom: 76px;
  }
}
