:root {
  --navy: #13232e;
  --navy-deep: #0d1b24;
  --cyan: #35bce2;
  --cyan-dark: #1686a5;
  --light: #f4f8fa;
  --text: #17212b;
  --muted: #667788;
  --white: #ffffff;
  --border: #e3eaf0;
  --glass: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 70px rgba(13, 27, 36, 0.16);
  --shadow-soft: 0 16px 42px rgba(13, 27, 36, 0.1);
  --radius-lg: 24px;
  --radius: 18px;
  --radius-sm: 14px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--light);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon,
.service-icon svg {
  width: 1.2em;
  height: 1.2em;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon.icon-whatsapp {
  width: 1.3em;
  height: 1.3em;
  object-fit: contain;
}

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

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

button {
  cursor: pointer;
}

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(53, 188, 226, 0.18), transparent 28%),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
  color: var(--white);
  transition: opacity 420ms ease, visibility 420ms ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-card {
  width: min(280px, calc(100vw - 48px));
  display: grid;
  justify-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  animation: loader-rise 780ms ease both;
}

.loader-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 20px 42px rgba(53, 188, 226, 0.28);
}

.loader-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.loader-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
}

.loader-card em {
  margin: 4px 0 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.loader-bar {
  position: relative;
  width: 100%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.loader-bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 44%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: loader-track 1.05s ease-in-out infinite;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), #7de4ff);
  box-shadow: 0 0 18px rgba(53, 188, 226, 0.55);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 27, 36, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(13, 27, 36, 0.96);
  box-shadow: 0 12px 34px rgba(4, 12, 18, 0.22);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(53, 188, 226, 0.25);
  animation: brand-glow 4.8s ease-in-out infinite;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  gap: 0;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 220ms ease, opacity 220ms ease;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.nav-menu {
  position: fixed;
  inset: 76px 16px auto 16px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(13, 27, 36, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.nav-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu a:not(.nav-cta),
.lang-switch button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-menu a:not(.nav-cta) {
  padding: 0 12px;
}

.nav-menu a:not(.nav-cta):hover,
.nav-menu a:not(.nav-cta).is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.lang-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.lang-switch button {
  justify-content: center;
  border: 0;
  background: transparent;
}

.lang-switch .is-active {
  color: var(--navy);
  background: var(--white);
}

.nav-cta,
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta {
  padding: 0 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
}

.btn {
  width: 100%;
  padding: 14px 18px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  background-size: 180% 180%;
  box-shadow: 0 16px 34px rgba(53, 188, 226, 0.24);
  animation: gradient-shift 6s ease infinite;
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.btn-whatsapp {
  width: 100%;
  color: var(--white);
  background: #24c463;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(13, 27, 36, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 12%, rgba(53, 188, 226, 0.26), transparent 26%),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(244, 248, 250, 0.1));
  pointer-events: none;
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, transparent 0 46%, rgba(53, 188, 226, 0.1) 46% 46.4%, transparent 46.4% 100%);
  opacity: 0.8;
  pointer-events: none;
  animation: line-drift 10s ease-in-out infinite alternate;
}

.hero-shape {
  position: absolute;
  z-index: 0;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(53, 188, 226, 0.28);
  border-radius: 28px;
  transform: rotate(18deg);
  pointer-events: none;
}

.hero-shape-one {
  top: 18%;
  right: 8%;
  animation: float-soft 7s ease-in-out infinite;
}

.hero-shape-two {
  bottom: 18%;
  left: 5%;
  width: 64px;
  height: 64px;
  border-color: rgba(255, 255, 255, 0.14);
  animation: float-soft 8s ease-in-out infinite reverse;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.quote-section h2,
.contact h2,
.about h2 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.65rem, 14vw, 4.7rem);
  line-height: 0.98;
}

.hero-text {
  max-width: 610px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.75;
}

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

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.trust-badges span {
  padding: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 300px;
  max-height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.24);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: 72% center;
  animation: image-breathe 8s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(13, 27, 36, 0.76));
}

.hero-card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(13, 27, 36, 0.72);
  backdrop-filter: blur(16px);
}

.hero-mini-stats {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: flex;
  gap: 8px;
}

.hero-mini-stats span {
  display: grid;
  gap: 2px;
  min-width: 76px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(13, 27, 36, 0.64);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.hero-mini-stats strong {
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
  line-height: 1;
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  margin-bottom: 4px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.hero-card span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.section {
  padding: 72px 0;
}

.section-head {
  max-width: 740px;
  margin-bottom: 30px;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section h2,
.quote-section h2,
.contact h2,
.about h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 9vw, 3rem);
  line-height: 1.05;
}

.section-head p:not(.eyebrow),
.quote-copy p,
.contact p,
.about-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  gap: 18px;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 24px;
}

.service-pills span {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(13, 27, 36, 0.06);
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, transparent 0%, rgba(53, 188, 226, 0.1) 45%, transparent 72%);
  opacity: 0;
  transform: translateX(-65%);
  transition: opacity 220ms ease, transform 520ms ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(53, 188, 226, 0.45);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  opacity: 1;
  transform: translateX(65%);
}

.service-card img {
  width: 100%;
  height: clamp(170px, 44vw, 220px);
  object-fit: cover;
  transition: transform 260ms ease;
}

.service-card img.image-focus-plumbing {
  object-position: 50% 68%;
}

.service-card img.image-focus-carpentry {
  object-position: 48% center;
}

.service-card img.image-focus-painting {
  object-position: 72% center;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-body {
  padding: 20px;
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 15px;
  color: var(--cyan-dark);
  background: rgba(53, 188, 226, 0.12);
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card:hover .service-icon {
  transform: translateY(-2px) rotate(-3deg);
  color: var(--white);
  background: var(--cyan-dark);
}

.service-body h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.32rem;
}

.service-body p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.service-body a {
  color: var(--cyan-dark);
  font-weight: 800;
}

.service-featured {
  background: linear-gradient(180deg, #ffffff, #edfaff);
}

.about {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(53, 188, 226, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.about-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--navy);
}

.about-image img {
  width: 100%;
  height: clamp(260px, 46vw, 440px);
  object-fit: cover;
  object-position: center;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(13, 27, 36, 0.76));
  pointer-events: none;
}

.about-image-badge {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(13, 27, 36, 0.74);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.about-image-badge strong,
.about-image-badge span {
  display: block;
}

.about-image-badge strong {
  margin-bottom: 5px;
  font-family: "Space Grotesk", sans-serif;
}

.about-image-badge span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.55;
}

.about-copy {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.identity-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 22px;
}

.identity-list span {
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8fbfd;
  color: var(--muted);
}

.identity-list strong {
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.stat-card {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: -40% -30% auto auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(53, 188, 226, 0.16);
  filter: blur(6px);
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong span {
  display: inline;
}

.stat-card strong {
  position: relative;
  z-index: 1;
  margin-bottom: 7px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 2.45rem);
  line-height: 1;
}

.stat-card span:last-child {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  line-height: 1.3;
}

.process {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(244, 248, 250, 1)),
    var(--light);
}

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

.process-step {
  position: relative;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, border-color 200ms ease;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 188, 226, 0.42);
}

.process-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--white);
  font-weight: 900;
}

.process-step h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

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

.gallery-grid img {
  width: 100%;
  height: clamp(180px, 52vw, 260px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-grid img:hover {
  transform: translateY(-5px) scale(1.015);
  filter: saturate(1.06) contrast(1.02);
}

.seo-answers {
  background: var(--white);
}

.answer-grid {
  display: grid;
  gap: 16px;
}

.answer-grid article {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fbfdfe;
}

.answer-grid h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
}

.answer-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.quote-section {
  padding: 72px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(53, 188, 226, 0.14), transparent 28%),
    var(--light);
}

.quote-grid {
  display: grid;
  gap: 40px;
  align-items: start;
  max-width: 1240px;
  margin-inline: auto;
}

.quote-copy {
  display: grid;
  gap: 24px;
  max-width: 680px;
}

.reassurance-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.reassurance-list span {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-weight: 700;
}

.quote-form {
  width: 100%;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-grid label,
.form-grid span,
.form-grid small {
  display: block;
}

.form-grid span {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fbfdfe;
  color: var(--text);
  padding: 16px 16px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-grid textarea {
  resize: vertical;
  min-height: 150px;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(53, 188, 226, 0.14);
}

.form-grid .is-invalid input,
.form-grid .is-invalid select,
.form-grid .is-invalid textarea {
  border-color: #c84b4b;
  box-shadow: 0 0 0 4px rgba(200, 75, 75, 0.1);
}

.form-grid small {
  min-height: 18px;
  margin-top: 5px;
  color: #b73939;
  font-size: 0.78rem;
}

.form-submit {
  margin-top: 8px;
  border: 0;
}

.privacy-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.form-success {
  display: none;
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(36, 196, 99, 0.12);
  color: #197343;
  font-weight: 800;
}

.form-success.is-visible {
  display: block;
}

.contact {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-deep), var(--navy));
}

.contact h2 {
  color: var(--white);
}

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

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

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
}

.contact-panel a:not(.btn),
.contact-panel > span {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel a:not(.btn) span,
.contact-panel > span span {
  display: grid;
  gap: 4px;
}

.contact-panel strong {
  color: var(--white);
}

.contact-icon {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 12px;
  color: var(--cyan);
  background: rgba(53, 188, 226, 0.12);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer {
  padding: 24px 0 92px;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.64);
}

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

.footer p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 45;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #24c463;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(36, 196, 99, 0.3);
  animation: pulse 2.6s infinite;
  transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-float .icon {
  width: 28px;
  height: 28px;
}

.whatsapp-float.is-hidden {
  opacity: 0;
  transform: scale(0.84);
  pointer-events: none;
}

.toast {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 86px;
  z-index: 60;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

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

[data-reveal].is-visible {
  animation: fade-up 620ms ease both;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(36, 196, 99, 0.38), 0 16px 34px rgba(36, 196, 99, 0.3); }
  70% { box-shadow: 0 0 0 16px rgba(36, 196, 99, 0), 0 16px 34px rgba(36, 196, 99, 0.3); }
  100% { box-shadow: 0 0 0 0 rgba(36, 196, 99, 0), 0 16px 34px rgba(36, 196, 99, 0.3); }
}

@keyframes loader-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loader-track {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(260%);
  }
}

@keyframes brand-glow {
  0%, 100% {
    box-shadow: 0 14px 30px rgba(53, 188, 226, 0.25);
  }
  50% {
    box-shadow: 0 18px 44px rgba(53, 188, 226, 0.42);
  }
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes line-drift {
  from {
    transform: translate3d(-12px, 0, 0);
  }
  to {
    transform: translate3d(18px, 0, 0);
  }
}

@keyframes float-soft {
  0%, 100% {
    transform: translateY(0) rotate(18deg);
  }
  50% {
    transform: translateY(-16px) rotate(28deg);
  }
}

@keyframes image-breathe {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 48px));
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

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

  .btn {
    width: auto;
  }

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

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

  .form-grid .full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  .section,
  .quote-section {
    padding: 92px 0;
  }

  .hero {
    padding: 86px 0 100px;
  }

  .hero-grid,
  .about-grid,
  .quote-grid,
  .contact-grid {
    grid-template-columns: minmax(340px, 1.05fr) minmax(420px, 520px);
  }

  .quote-grid {
    align-items: stretch;
  }

  .quote-copy {
    height: 100%;
    grid-template-rows: auto auto auto 1fr;
  }

  .reassurance-list {
    height: 100%;
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  .reassurance-list span {
    display: flex;
    align-items: center;
  }

  .about-grid {
    gap: 38px;
  }

  .hero-media,
  .hero-media img {
    min-height: 390px;
  }

  .service-card img {
    height: 210px;
  }

  .about-copy {
    padding: 28px;
  }

  .about-image,
  .about-image img {
    min-height: 520px;
    height: 100%;
  }

  .gallery-grid img {
    height: 240px;
  }

  .quote-form {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .quote-grid {
    grid-template-columns: minmax(360px, 1fr) minmax(420px, 520px);
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-menu a:not(.nav-cta) {
    padding: 0 10px;
  }

  .lang-switch {
    width: 88px;
    margin: 0 4px;
  }

  .nav-cta {
    margin-left: 4px;
  }

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

  .hero-media,
  .hero-media img {
    min-height: 430px;
  }

  .service-card img {
    height: 205px;
  }

  .gallery-grid img {
    height: 300px;
  }

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

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

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

  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 42px;
    right: -22px;
    width: 30px;
    height: 1px;
    background: rgba(53, 188, 226, 0.35);
  }
}

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