:root {
  --navy-900: #081a33;
  --navy-800: #0d2342;
  --navy-700: #16325d;
  --gold-500: #d89c2b;
  --gold-600: #be851f;
  --bg-50: #f6f8fc;
  --text-900: #112039;
  --text-700: #41516b;
  --white: #ffffff;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 10px 24px rgba(8, 26, 51, 0.08);
  --shadow-md: 0 20px 50px rgba(8, 26, 51, 0.14);
  --container: min(1140px, calc(100% - 2.4rem));
  --ease: 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-900);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 6vw, 6.5rem) 0;
}

.eyebrow {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 800;
  font-size: 0.76rem;
  margin-bottom: 0.7rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.85rem);
}

h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
}

p {
  margin: 0 0 1rem;
  color: var(--text-700);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.86rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), #f1b53f);
  color: #1e1609;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e0a432, #ffd27a);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #1fb85b, #4ad87c);
  color: #ffffff;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #17ab50, #5ee48f);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
  backdrop-filter: blur(2px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: opacity 420ms ease, visibility 420ms ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--gold-500), #f9cf81);
  display: grid;
  place-items: center;
  color: #231600;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  box-shadow: 0 0 0 8px rgba(216, 156, 43, 0.14);
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.09);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 26, 51, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(160px, 16vw, 240px);
  height: 70px;
  overflow: hidden;
  border-radius: 4px;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

#siteNav {
  position: fixed;
  inset: 76px 0 auto;
  background: #0a1f3d;
  display: grid;
  gap: 0.85rem;
  padding: 1.2rem;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--ease);
}

#siteNav.open {
  transform: scaleY(1);
}

#siteNav a {
  color: #dbe7ff;
  font-weight: 600;
}

.nav-cta {
  justify-self: start;
}

.nav-whatsapp {
  justify-self: start;
}

.header-whatsapp {
  margin-left: auto;
  font-size: 0.84rem;
  padding: 0.72rem 0.95rem;
}

.menu-toggle {
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  display: grid;
  gap: 4px;
  place-content: center;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  background: url("https://images.unsplash.com/photo-1485083269755-a7b559a4fe5e?auto=format&fit=crop&w=1700&q=80") center/cover no-repeat;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 26, 51, 0.93), rgba(14, 44, 87, 0.68));
  z-index: -1;
}

.hero-content {
  color: var(--white);
  max-width: 760px;
  text-align: left;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.86);
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  margin-bottom: 1.6rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.urgency {
  margin-top: 1rem;
  font-weight: 700;
  color: #ffd489;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
}

.scroll-indicator span {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  display: inline-block;
  position: relative;
}

.scroll-indicator span::before {
  content: "";
  width: 5px;
  height: 7px;
  background: var(--gold-500);
  border-radius: 99px;
  position: absolute;
  left: 50%;
  top: 7px;
  transform: translateX(-50%);
  animation: scroll-dot 1.5s infinite;
}

@keyframes scroll-dot {
  0% {
    opacity: 0;
    transform: translate(-50%, -4px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

.trust-bar {
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.1rem;
  text-align: center;
}

.stat-card i {
  color: var(--gold-500);
  font-size: 1.2rem;
}

.stat-card h3 {
  margin: 0.3rem 0 0;
}

.stat-card p {
  margin: 0;
  font-weight: 600;
  color: var(--text-700);
}

.about {
  background: var(--bg-50);
}

.about-grid,
.why-grid,
.lead-grid,
.footer-grid {
  display: grid;
  gap: 1.4rem;
}

.about-visual {
  position: relative;
}

.about-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  min-height: 360px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: rgba(8, 26, 51, 0.9);
  color: #eef4ff;
  font-size: 0.82rem;
  font-weight: 700;
}

.inline-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.inline-trust div {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.8rem;
  box-shadow: var(--shadow-sm);
}

.inline-trust strong {
  display: block;
  color: var(--navy-900);
}

.inline-trust span {
  font-size: 0.84rem;
  color: var(--text-700);
}

.section-head {
  max-width: 720px;
  margin-bottom: 1.6rem;
}

.services {
  background: radial-gradient(1000px 600px at 80% 0%, rgba(216, 156, 43, 0.1), transparent 50%), #fff;
}

.services-grid,
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card,
.project-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(16, 41, 74, 0.08);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(216, 156, 43, 0.4);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(216, 156, 43, 0.16), rgba(13, 35, 66, 0.08));
  color: var(--navy-800);
  margin-bottom: 0.8rem;
}

.service-card .btn {
  margin-top: 0.7rem;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.filter-btn {
  border: 1px solid rgba(8, 26, 51, 0.2);
  background: var(--white);
  color: var(--navy-900);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.filter-btn.active {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

.project-media {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.9rem;
}

.project-media img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  font-size: 0.88rem;
}

.project-meta span {
  padding: 0.5rem;
  background: #f2f6fd;
  border-radius: 9px;
  color: var(--text-700);
}

.why-us {
  background: var(--bg-50);
}

.why-copy ul,
.lead-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.why-copy li,
.lead-copy li {
  display: flex;
  gap: 0.6rem;
  align-items: start;
  color: var(--text-700);
}

.why-copy i,
.lead-copy i {
  color: var(--gold-500);
  margin-top: 0.16rem;
}

.why-card {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: #e9f0ff;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.why-card p {
  color: #cdd9ee;
}

.process {
  background: #fff;
}

.process-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.process-step {
  background: var(--white);
  border: 1px solid rgba(12, 37, 69, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  gap: 0.9rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.process-index {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.testimonials {
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.testimonial-shell {
  background: var(--white);
  border: 1px solid rgba(8, 26, 51, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.2rem;
}

.testimonial-item {
  display: none;
}

.testimonial-item.active {
  display: block;
  animation: fadeUp 430ms ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rating {
  color: var(--gold-500);
  margin-bottom: 0.6rem;
}

.testimonial-controls {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.45rem;
}

.testimonial-controls button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(8, 26, 51, 0.2);
  background: #fff;
  cursor: pointer;
}

.lead {
  background: radial-gradient(1000px 600px at 0% 100%, rgba(216, 156, 43, 0.11), transparent 55%), #fff;
}

.lead-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.lead-form label {
  font-weight: 700;
  color: var(--navy-900);
  font-size: 0.93rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  border: 1px solid rgba(8, 26, 51, 0.18);
  border-radius: 10px;
  padding: 0.78rem 0.85rem;
  font: inherit;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(216, 156, 43, 0.25);
  border-color: var(--gold-500);
}

.lead-form textarea { resize: vertical; min-height: 120px; }
.lead-form small { color: var(--text-700); font-size: 0.78rem; }
.lead-form button:disabled { cursor: wait; opacity: 0.7; }
.form-status { margin: 0.35rem 0 0; font-size: 0.9rem; color: var(--text-700); }
.form-status.success { color: #087b3a; font-weight: 700; }
.form-status.error { color: #b42318; font-weight: 700; }

.form-note {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
}

.site-footer {
  background: var(--navy-900);
  color: #d6e3ff;
  padding: 3rem 0 1.2rem;
}

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

.site-footer h3,
.site-footer h4 {
  color: #fff;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.site-footer iframe {
  width: 100%;
  min-height: 160px;
  border: 0;
  border-radius: 12px;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-contact-links i {
  color: var(--gold-500);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  margin-top: 1.3rem;
  padding-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
}

.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 32, 0.7);
}

.modal-content {
  position: relative;
  width: min(900px, calc(100% - 1.8rem));
  margin: 4.8rem auto;
  max-height: calc(100vh - 6rem);
  overflow: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-md);
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(8, 26, 51, 0.2);
  background: #fff;
}

.modal-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-top: 1rem;
}

.modal-images img {
  border-radius: 12px;
  min-height: 190px;
  object-fit: cover;
}

.comparison-slider {
  --comparison-position: 50%;
  position: relative;
  margin-top: 1rem;
  min-height: 250px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(145deg, rgba(8, 26, 51, 0.12), rgba(216, 156, 43, 0.08));
  touch-action: none;
  user-select: none;
}

.comparison-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 26, 51, 0.08), transparent 24%, transparent 76%, rgba(8, 26, 51, 0.16));
  z-index: 2;
  pointer-events: none;
}

.comparison-layer {
  position: absolute;
  inset: 0;
}

.comparison-layer img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  display: block;
}

.comparison-before {
  z-index: 0;
}

.comparison-after {
  z-index: 1;
  clip-path: inset(0 0 0 var(--comparison-position));
  transition: clip-path 140ms ease-out;
}

.comparison-label {
  position: absolute;
  top: 1rem;
  z-index: 3;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(8, 26, 51, 0.8);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.comparison-label.left {
  left: 1rem;
}

.comparison-label.right {
  right: 1rem;
}

.comparison-handle {
  position: absolute;
  top: 0;
  left: var(--comparison-position);
  z-index: 4;
  width: 56px;
  height: 100%;
  transform: translateX(-50%);
  border: 0;
  background: transparent;
  cursor: ew-resize;
  transition: left 140ms ease-out;
}

.comparison-handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), #fff 20%, #fff 80%, rgba(255, 255, 255, 0.15));
  box-shadow: 0 0 0 1px rgba(8, 26, 51, 0.12);
}

.comparison-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), #ffd27a);
  box-shadow: 0 10px 26px rgba(8, 26, 51, 0.22);
}

.comparison-handle span::before,
.comparison-handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #1e1609;
  border-right: 2px solid #1e1609;
}

.comparison-handle span::before {
  left: 11px;
  transform: translateY(-50%) rotate(-135deg);
}

.comparison-handle span::after {
  right: 11px;
  transform: translateY(-50%) rotate(45deg);
}

.comparison-slider.is-dragging .comparison-handle span,
.comparison-handle:hover span {
  transform: translate(-50%, -50%) scale(1.06);
}

.comparison-slider.is-dragging .comparison-after,
.comparison-slider.is-dragging .comparison-handle {
  transition: none;
}

.floating-action {
  position: fixed;
  right: 1rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  z-index: 980;
  box-shadow: var(--shadow-md);
}

.floating-action.whatsapp {
  bottom: 1rem;
  background: #1fbe5b;
}

.floating-action.call {
  bottom: 4.4rem;
  background: var(--navy-800);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .trust-grid,
  .services-grid,
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .why-grid,
  .lead-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

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

  .modal-images {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .header-whatsapp {
    display: none;
  }

  #siteNav {
    position: static;
    inset: auto;
    background: transparent;
    display: flex;
    transform: none;
    align-items: center;
    gap: 1.1rem;
    padding: 0;
  }

  #siteNav a {
    color: #f0f5ff;
    font-size: 0.95rem;
  }

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

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

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

  .about-grid,
  .lead-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

  .process-step {
    flex-direction: column;
    align-items: start;
    min-height: 165px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 0.8fr;
    align-items: start;
  }
}

@media (max-width: 540px) {
  .nav-wrap {
    min-height: 72px;
  }

  .brand {
    width: 165px;
    height: 56px;
  }

  .brand img {
    width: 100%;
    height: 100%;
  }

  .header-whatsapp {
    padding: 0.65rem 0.82rem;
    font-size: 0.78rem;
  }
}

/* Multi-page extensions */
.nav-link.active {
  color: var(--gold-500) !important;
}

.page-hero {
  position: relative;
  min-height: 48vh;
  display: grid;
  align-items: center;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(8, 26, 51, 0.93), rgba(14, 44, 87, 0.72));
  z-index: -1;
}

.page-hero .hero-content {
  max-width: 760px;
}

.cta-strip {
  background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
  color: #dce8ff;
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow-md);
}

.cta-strip p {
  color: #d2ddf3;
  margin: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.team-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 35, 70, 0.08);
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-card .team-content {
  padding: 1rem;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.value-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 35, 70, 0.08);
}

.growth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.growth-step {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 35, 70, 0.08);
  padding: 1rem;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

.service-image-wrap {
  border-radius: 14px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-feature-list {
  margin: 0.8rem 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.service-feature-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: var(--text-700);
}

.service-feature-list i {
  color: var(--gold-500);
  margin-top: 0.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 35, 70, 0.08);
  padding: 1.2rem;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: 0.6rem;
}

.contact-points li {
  display: flex;
  gap: 0.6rem;
  color: var(--text-700);
}

.contact-points a {
  color: inherit;
}

.contact-points i {
  color: var(--gold-500);
  margin-top: 0.2rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-follow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.social-follow span {
  font-weight: 800;
  color: var(--navy-900);
}

.social-follow .socials {
  gap: 0.65rem;
}

.social-follow .socials a {
  border-color: rgba(8, 26, 51, 0.14);
  color: var(--navy-900);
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 720px) {
  .team-grid,
  .value-grid,
  .growth-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .service-detail-card {
    grid-template-columns: 1fr 1.1fr;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}
