:root {
  --navy: #1a2533;
  --navy-deep: #121a24;
  --ink: #243041;
  --muted: #5b6776;
  --blue: #3b9fe8;
  --blue-deep: #2b86cb;
  --blue-soft: #e7f4fc;
  --blue-mist: #f4f9fd;
  --line: #d7e3ee;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(26, 37, 51, 0.1);
  --radius: 22px;
  --header: 78px;
  --container: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.js-smooth-scroll {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker.light {
  color: #9ed0f5;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2,
.about-copy h2,
.why-copy h2,
.contact-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.section-lead,
.about-copy p,
.why-copy p,
.contact-panel p,
.hero-lead {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(215, 227, 238, 0.8);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-logo,
.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.nav a:hover {
  color: var(--blue);
}

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 999px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.lang-btn {
  border: 0;
  background: transparent;
  min-width: 42px;
  height: 32px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--navy);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - var(--header)));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-slider,
.hero-slide,
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s var(--ease), transform 6s linear;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  object-fit: cover;
  object-position: 72% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 26, 36, 0.38) 0%, rgba(18, 26, 36, 0.78) 100%),
    linear-gradient(90deg, rgba(18, 26, 36, 0.62) 0%, rgba(18, 26, 36, 0.22) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 0 56px;
  color: #fff;
  max-width: 820px;
  margin: 0 auto 0 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #d7ecfb;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(59, 159, 232, 0.22);
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 560px;
  color: #d5dee8;
  font-size: 1.05rem;
}

.hero-actions,
.hero-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin: 28px 0 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s var(--ease), background 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-deep);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-full {
  width: 100%;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.slider-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.slider-dots button.is-active {
  width: 26px;
  background: #fff;
}

.trust-bar {
  background: var(--blue-mist);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.trust-item h3 {
  margin: 0 0 4px;
  font-size: 0.98rem;
  color: var(--navy);
}

.trust-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.trust-icon,
.service-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
}

.trust-icon svg,
.service-icon svg,
.about-badge-mark,
.process-num {
  width: 22px;
  height: 22px;
}

.trust-icon svg,
.service-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about {
  background:
    radial-gradient(circle at 12% 20%, rgba(59, 159, 232, 0.09), transparent 26%),
    #fff;
}

.about-grid,
.why-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 48px;
}

.about-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.about-frame {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-media {
  position: relative;
}

.about-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px 10px 10px;
  box-shadow: var(--shadow);
}

.about-badge p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
}

.about-badge-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background:
    radial-gradient(circle at 50% 42%, var(--blue) 0 5px, transparent 6px),
    #fff;
}

.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-weight: 600;
  color: var(--navy);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.72rem;
  display: grid;
  place-items: center;
}

.services {
  background: var(--blue-mist);
}

.services-grid,
.quotes-grid,
.why-cards,
.process-grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.quote-card,
.why-card,
.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.service-card h3,
.why-card h3,
.process-step h3,
.quote-card footer strong {
  margin: 16px 0 8px;
  color: var(--navy);
}

.service-card p,
.why-card p,
.process-step p,
.quote-card p,
.footer-brand p {
  margin: 0;
  color: var(--muted);
}

.process {
  background:
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
}

.process h2,
.process .process-step h3 {
  color: #fff;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-step {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.process-step p {
  color: #c5d0db;
}

.gallery-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  width: min(100% - 16px, 1280px);
  margin: 0 auto;
}

.gallery-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: none;
  scrollbar-width: none;
  padding: 8px 4px 16px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track.is-dragging {
  cursor: grabbing;
}

.gallery-card {
  flex: 0 0 min(78vw, 360px);
  margin: 0 16px 0 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}

.gallery-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(26, 37, 51, 0.78);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.gallery-btn {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.why-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.why-cards {
  grid-template-columns: 1fr;
}

.why-card {
  border-left: 4px solid var(--blue);
}

.quotes-grid {
  grid-template-columns: repeat(3, 1fr);
}

.quote-card p {
  font-size: 1.02rem;
  color: var(--ink);
}

.quote-card footer {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact {
  background:
    radial-gradient(circle at 85% 10%, rgba(59, 159, 232, 0.14), transparent 24%),
    var(--blue-mist);
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.contact-panel {
  background: var(--navy);
  color: #fff;
  border-radius: 32px;
  padding: 40px 36px;
}

.contact-panel h2 {
  color: #fff;
}

.contact-panel p {
  color: #c9d5e1;
}

.contact-meta {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.contact-meta span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8aa0b5;
}

.contact-meta a,
.contact-meta strong {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  box-shadow: var(--shadow);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full,
.form-error,
.form-hint,
.contact-form .btn {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  background: #fbfdff;
  color: var(--navy);
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(59, 159, 232, 0.15);
}

.form-error {
  margin: 0;
  color: #b42318;
  font-weight: 600;
}

.form-hint {
  margin: 0;
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 48px 0 24px;
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
  padding-bottom: 28px;
}

.footer-grid h3 {
  margin: 0 0 12px;
  font-size: 0.92rem;
  color: var(--navy);
}

.footer-grid a,
.footer-bottom p {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.float-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
}

.float-actions {
  position: absolute;
  right: 5px;
  bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  visibility: hidden;
  pointer-events: none;
}

.float-action {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.92);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}

.float-dock.is-open .float-actions,
.float-dock.is-open .float-action {
  visibility: visible;
  pointer-events: auto;
}

.float-dock.is-open .float-action {
  opacity: 1;
  transform: none;
}

.float-dock.is-open .float-action:nth-child(2) {
  transition-delay: 0.05s;
}

.float-label {
  background: var(--navy);
  color: #fff;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.float-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.float-icon svg {
  width: 22px;
  height: 22px;
}

.float-action.is-whatsapp .float-icon {
  background: #25d366;
}

.float-action.is-email .float-icon {
  background: var(--blue);
}

.float-action.is-email svg {
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.float-toggle {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(26, 37, 51, 0.28);
  display: grid;
  place-items: center;
}

.float-toggle-plus,
.float-toggle-plus::after {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
}

.float-toggle-plus {
  position: relative;
}

.float-toggle-plus::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: rotate(90deg);
}

.float-dock.is-open .float-toggle {
  background: var(--blue);
}

.float-dock.is-open .float-toggle-plus {
  transform: rotate(45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s var(--ease) forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .trust-grid,
  .services-grid,
  .process-grid,
  .quotes-grid,
  .about-grid,
  .why-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-frame img {
    height: 380px;
  }
}

@media (max-width: 1100px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: fixed;
    inset: var(--header) 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }
}

@media (max-width: 820px) {
  :root {
    --header: 70px;
  }

  .brand-logo {
    height: 42px;
  }

  .trust-grid,
  .services-grid,
  .process-grid,
  .quotes-grid,
  .about-grid,
  .why-grid,
  .contact-grid,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(18, 26, 36, 0.52) 0%, rgba(18, 26, 36, 0.84) 100%);
  }

  .hero-slide img {
    object-position: 80% center;
  }

  .hero-content {
    padding: 48px 0 40px;
  }

  .section {
    padding: 64px 0;
  }

  .gallery-btn {
    display: none;
  }

  .contact-panel,
  .contact-form {
    padding: 24px 20px;
  }

  body {
    padding-bottom: 76px;
  }

  .contact-form {
    padding-bottom: 88px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .about-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-slide,
  .reveal,
  .btn {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}
