:root {
  --navy: #0A3A7A;
  --navy-2: #072C5C;
  --steel: #2F5FA3;
  --blue: #0A3A7A;
  --line: #E5E7EB;
  --muted: #F4F6F8;
  --text: #2D3748;
  --subtle: #6B7280;
  --white: #ffffff;
  --gold: #C9A227;
  --gold-hover: #A8871A;
  --gold-gradient: linear-gradient(135deg, #D8BD62 0%, #C9A227 46%, #A8871A 100%);
  --hero-subtext: #D9E5F5;
  --shadow: 0 18px 45px rgba(7, 44, 92, 0.10);
  --shadow-hover: 0 24px 55px rgba(7, 44, 92, 0.16);
  --radius: 12px;
  --button-radius: 10px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes fade-slide {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.95);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 1px solid rgba(10, 58, 122, 0.12);
  border-radius: 50%;
  background: var(--white);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand small {
  color: var(--steel);
  font-size: 12px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 13px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--navy-2);
}

.hero-home {
  min-height: min(620px, calc(100vh - 140px));
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(7, 44, 92, 0.94), rgba(7, 44, 92, 0.76) 42%, rgba(7, 44, 92, 0.38));
}

.hero-content,
.page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 820px;
  animation: fade-slide 520ms ease both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(36px, 5.4vw, 66px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 800;
}

h2 {
  color: var(--navy);
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.25;
}

p {
  margin-bottom: 16px;
}

.lead {
  max-width: 700px;
  color: var(--hero-subtext);
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.55;
}

.hero .eyebrow,
.page-hero .eyebrow,
.project-band .section-kicker {
  color: var(--gold);
}

.hero .lead strong,
.page-hero .lead strong,
.project-band p strong,
.site-footer strong {
  color: var(--white);
}

.section-heading p {
  max-width: 780px;
  color: var(--subtle);
  font-size: 17px;
}

.section strong {
  color: var(--navy);
  font-weight: 800;
}

.hero-actions,
.cta-section {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.icon,
.service-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(201, 162, 39, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #B89834 0%, var(--gold-hover) 100%);
}

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

.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.btn-on-dark {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-on-dark:hover {
  border-color: var(--gold);
  background: var(--gold-gradient);
  color: var(--white);
}

.btn-card {
  height: 38px;
  min-height: 38px;
  margin-top: 16px;
  padding: 8px 12px;
  background: var(--gold-gradient);
  color: var(--white);
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: none;
}

.btn-card .icon {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}

.btn-card:hover {
  background: linear-gradient(135deg, #B89834 0%, var(--gold-hover) 100%);
  color: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--navy-2);
  color: var(--white);
}

.trust-strip div {
  padding: 26px clamp(18px, 3vw, 40px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip strong {
  display: block;
  color: var(--white);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  color: var(--hero-subtext);
  font-weight: 700;
}

.section {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 72px);
}

.section > * {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.section-muted {
  background: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.split p,
.two-panel p,
.service-detail p,
.feature-grid p,
.timeline p {
  color: var(--subtle);
}

.split p,
.two-panel p {
  font-size: 17px;
}

.text-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--steel);
}

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

.card-grid,
.feature-grid,
.project-grid,
.client-grid,
.services-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.feature-grid article,
.timeline article,
.belief-grid article,
.two-panel article,
.contact-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 170px;
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  animation: fade-slide 460ms ease both;
}

.service-card:hover,
.feature-grid article:hover,
.service-detail:hover,
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(10, 58, 122, 0.22);
}

.service-card span,
.service-detail span,
.timeline span {
  color: var(--blue);
  font-weight: 900;
}

.service-icon {
  width: 34px;
  height: 34px;
  color: var(--steel);
  margin-bottom: 18px;
}

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

.feature-grid article {
  padding: 26px;
  animation: fade-slide 460ms ease both;
}

.project-band {
  background: var(--navy-2);
}

.project-band h2,
.project-band h3 {
  color: var(--white);
}

.project-band .section-heading p {
  color: var(--hero-subtext);
}

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

.project-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  animation: fade-slide 460ms ease both;
}

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

.project-card h3 {
  margin: 0;
  padding: 18px;
  font-size: 17px;
}

.section-action {
  margin-top: 28px;
}

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

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

.client-grid span,
.pill-grid span {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  background: var(--muted);
}

.cta-section {
  justify-content: space-between;
  padding: clamp(48px, 7vw, 76px) clamp(20px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.cta-section h2 {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--navy);
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, #ffffff, var(--muted));
  border-top: 1px solid var(--line);
}

.footer-cta > div {
  max-width: var(--container);
}

.footer-cta h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.5vw, 44px);
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

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

.btn-outline-gold {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: var(--white);
}

.footer-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 clamp(20px, 5vw, 72px);
  background: var(--navy);
  color: var(--white);
}

.footer-trust div {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 12px;
  padding: 22px clamp(12px, 2vw, 28px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-trust div:last-child {
  border-right: 0;
}

.footer-trust .icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.footer-trust strong {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.25;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(180px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(48px, 7vw, 78px) clamp(20px, 5vw, 72px);
  background: var(--navy-2);
  color: var(--hero-subtext);
}

.footer-logo {
  width: clamp(150px, 16vw, 220px);
  height: clamp(150px, 16vw, 220px);
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  background: var(--white);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
}

.site-footer h2,
.site-footer h3,
.site-footer strong {
  color: var(--white);
}

.site-footer h2 {
  margin-bottom: 10px;
  font-size: 27px;
}

.site-footer h3 {
  margin-bottom: 18px;
  font-size: 17px;
}

.footer-company p {
  max-width: 440px;
  color: var(--hero-subtext);
}

.footer-col a,
.footer-col p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--hero-subtext);
  text-decoration: none;
}

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

.footer-col .icon {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--gold);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
}

.contact-list .social-link {
  color: var(--blue);
}

.site-footer .social-link {
  display: flex;
}

.page-hero {
  min-height: 430px;
  background:
    linear-gradient(90deg, rgba(7, 44, 92, 0.94), rgba(7, 44, 92, 0.72)),
    url("assets/facility.jpg") center / cover;
}

.about-credibility {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: var(--navy-2);
  color: var(--white);
}

.about-credibility div {
  padding: clamp(28px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.045);
}

.about-credibility span {
  display: inline-flex;
  min-width: 54px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 999px;
  color: var(--gold);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.about-credibility strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.25;
}

.about-credibility p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--hero-subtext);
}

.belief-grid p {
  color: var(--subtle);
  font-size: 17px;
}

.services-hero {
  background:
    linear-gradient(90deg, rgba(7, 44, 92, 0.94), rgba(7, 44, 92, 0.7)),
    url("assets/infrastructure.jpg") center / cover;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(7, 44, 92, 0.94), rgba(7, 44, 92, 0.72)),
    url("assets/maintenance.jpg") center / cover;
}

.belief-grid,
.two-panel,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.belief-grid article,
.two-panel article {
  padding: clamp(28px, 4vw, 42px);
}

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

.timeline article {
  padding: 22px;
}

.timeline h3 {
  margin-bottom: 10px;
}

.check-list {
  margin: 0;
  padding-left: 20px;
  color: var(--subtle);
}

.check-list li {
  margin-bottom: 10px;
}

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

.service-detail {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-detail img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-detail > span,
.service-detail h2,
.service-detail p {
  display: block;
  margin-left: 22px;
  margin-right: 22px;
}

.service-detail .btn {
  align-self: flex-start;
  margin-left: 22px;
  margin-right: 22px;
  margin-bottom: 24px;
}

.service-detail > .service-icon {
  display: block;
  margin: 22px 22px 0;
}

.service-detail > span {
  margin-top: 20px;
}

.service-detail .btn span,
.service-card .btn span {
  display: inline;
  margin: 0;
}

.service-detail h2 {
  margin-bottom: 10px;
  font-size: 23px;
}

.service-detail p {
  margin-bottom: 24px;
}

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

.contact-panel,
.contact-form {
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.contact-intro,
.form-intro {
  color: var(--subtle);
  font-size: 16px;
}

.contact-form h2 {
  margin-bottom: 10px;
  font-size: clamp(25px, 3vw, 34px);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 22px;
}

.map-card,
.map-details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-card {
  overflow: hidden;
  min-height: 420px;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.map-details {
  align-self: stretch;
  padding: clamp(28px, 4vw, 42px);
}

.map-details .service-icon {
  color: var(--gold);
}

.map-details p {
  color: var(--subtle);
  margin-bottom: 24px;
}

.contact-list {
  margin: 0;
}

.contact-list div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-list dt {
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 4px 0 0;
  color: var(--text);
  font-weight: 700;
}

.contact-list a {
  color: var(--blue);
  text-decoration: none;
}

.contact-form label {
  display: block;
  margin: 14px 0 6px;
  color: var(--navy);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  color: var(--text);
  background: var(--white);
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(47, 95, 163, 0.16);
  border-color: var(--steel);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 8px 0 0;
  color: var(--subtle);
  font-size: 13px;
}

.contact-form .btn {
  margin-top: 18px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 54px;
  height: 54px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(7, 44, 92, 0.24);
  transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp .icon {
  width: 24px;
  height: 24px;
}

.floating-whatsapp {
  bottom: 22px;
  background: #25D366;
}

.floating-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-1px);
}

.floating-whatsapp.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.mobile-cta-bar {
  display: none;
}

.mobile-cta-bar a {
  color: var(--white);
  text-decoration: none;
}

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

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

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

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

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

  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-cta-actions {
    justify-content: flex-start;
  }

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

  .footer-trust div:nth-child(2) {
    border-right: 0;
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand strong {
    font-size: 13px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

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

  .site-nav a {
    padding: 12px 0;
  }

  .hero,
  .hero-home {
    min-height: 620px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .lead {
    font-size: 17px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(7, 44, 92, 0.94), rgba(7, 44, 92, 0.78));
  }

  .trust-strip,
  .split,
  .belief-grid,
  .two-panel,
  .contact-layout,
  .map-layout,
  .about-credibility,
  .service-preview,
  .feature-grid,
  .project-grid,
  .client-grid,
  .services-grid,
  .timeline,
  .pill-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-footer,
  .cta-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-cta {
    padding: 40px 20px;
  }

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

  .footer-trust {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .footer-trust div {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 20px;
  }

  .footer-logo {
    width: 160px;
    height: 160px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -16px 32px rgba(7, 44, 92, 0.12);
  }

  .mobile-cta-bar a {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 10px;
    background: var(--gold-gradient);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
  }

  .mobile-cta-bar a:hover {
    background: linear-gradient(135deg, #B89834 0%, var(--gold-hover) 100%);
  }
}
