﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --red: #ff4c4c;
  --dark: #1a1a1a;
  --muted: #5f5f5f;
  --light: #f1f4f4;
  --white: #ffffff;
  --shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset, 0px);
}

body {
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
}

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

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translate(var(--reveal-x, 0px), var(--reveal-y, 24px)) rotate(var(--reveal-rot, 0deg))
    scale(var(--reveal-scale, 0.98));
  filter: blur(2px);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

section,
footer {
  scroll-margin-top: var(--scroll-offset, 0px);
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 1.1rem 0;
}

.nav-pill {
  width: min(1120px, 92vw);
  margin: 0 auto;
  background: var(--white);
  border-radius: 999px;
  padding: 0.95rem 1.8rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  box-shadow: var(--shadow);
  gap: 2.2rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  line-height: 1;
  height: 40px;
  overflow: visible;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
  transform: scale(1.35);
  transform-origin: left center;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  justify-self: center;
}

.nav-links > a,
.nav-item > .nav-link {
  color: #101010;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  padding: 0.1rem 0 0.35rem;
  line-height: 1;
}

.nav-links > a::after,
.nav-item > .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links > a:hover::after,
.nav-links > a:focus-visible::after,
.nav-item > .nav-link:hover::after,
.nav-item > .nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-toggle {
  background: transparent;
  border: none;
  padding: 0;
  color: inherit;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: 16px;
  padding: 0.9rem 0.6rem 0.6rem;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 30;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  color: #101010;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(255, 76, 76, 0.08);
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu,
.nav-item.is-open .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-pill:hover {
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.caret {
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  justify-self: end;
  align-self: center;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 20px;
  height: 2px;
  background: #141414;
  display: block;
  border-radius: 999px;
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.hero {
  position: relative;
  min-height: 78vh;
  color: var(--white);
  padding: 10.5rem 0 5rem;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  opacity: 0;
  animation: heroFade 18s infinite;
  will-change: opacity;
}

.hero-slide.is-1 {
  background-image: url('../images/hero1.jpg');
  animation-delay: 0s;
}

.hero-slide.is-2 {
  background-image: url('../images/hero2.jpg');
  animation-delay: 6s;
}

.hero-slide.is-3 {
  background-image: url('../images/hero3.jpg');
  animation-delay: 12s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.25) 55%,
      rgba(0, 0, 0, 0) 62.5%,
      rgba(0, 0, 0, 0) 100%
    ),
    radial-gradient(circle at 15% 30%, rgba(255, 76, 76, 0.25), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.2rem;
  align-items: center;
}

@keyframes heroFade {
  0%,
  100% {
    opacity: 0;
  }
  3% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 0;
  }

  .hero-slide.is-1 {
    opacity: 1;
  }
}

.hero-text {
  max-width: 540px;
}

.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin: 0 0 1.2rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
  position: relative;
}

.hero-text h1::after {
  content: '';
  display: block;
  width: 120px;
  height: 5px;
  margin-top: 0.9rem;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 8px 18px rgba(255, 76, 76, 0.45);
}

.hero-text p {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.85rem;
  max-width: 46ch;
  margin-bottom: 1.9rem;
  padding: 0.6rem 0.9rem;
  background: rgba(0, 0, 0, 0.35);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  backdrop-filter: blur(2px);
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #ff4c4c, #ff6a6a);
  color: var(--white);
  padding: 0.75rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 28px rgba(255, 76, 76, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 30px rgba(255, 76, 76, 0.45);
}

.section-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.hero-map {
  display: flex;
  justify-content: flex-end;
}

.map-card {
  width: min(420px, 100%);
  background: #ffffff;
  border-radius: 20px;
  padding: 0.9rem 1rem 1rem;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(0, 0, 0, 0.06);
  animation: mapFloat 6s ease-in-out infinite;
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--red);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding-bottom: 0.4rem;
}

.search-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.search-icon svg {
  width: 18px;
  height: 18px;
}

.map-body {
  margin-top: 0.6rem;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  padding: 0;
  height: 260px;
}

.map-body img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left center;
  filter: saturate(1.05);
}

@keyframes mapFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.who {
  background: var(--light);
  padding: 3.8rem 0 4rem;
}

.who h2 {
  text-align: center;
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 20px rgba(255, 76, 76, 0.25);
}

.lead {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 2.6rem;
  color: #333;
}

.who-image {
  display: flex;
  justify-content: center;
}

.who-image img {
  width: min(900px, 100%);
  height: auto;
  border-radius: 14px;
}

.structure-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.6fr;
  gap: 2rem;
  align-items: start;
}

.structure-title {
  color: var(--red);
  font-weight: 700;
  font-size: 1.1rem;
}

.structure-list-wrap {
  position: relative;
  padding-left: 2.8rem;
}

.structure-list-wrap::before {
  content: '';
  position: absolute;
  left: 0.9rem;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 18px;
  border-left: 3px solid #111;
  border-top: 3px solid #111;
  border-bottom: 3px solid #111;
  border-radius: 18px 0 0 18px;
}

.structure-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
  font-weight: 600;
}

.structure-icons {
  display: grid;
  gap: 1.2rem;
  color: var(--red);
}

.structure-icon {
  width: 48px;
  height: 48px;
}

.structure-icon svg {
  width: 100%;
  height: 100%;
}

.principles {
  background: var(--white);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.principles::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -140px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 76, 76, 0.18), transparent 70%);
  pointer-events: none;
}

.principles-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.principles-intro h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--red);
  margin: 0 0 0.8rem;
}

.principles-sub {
  margin: 0 0 1.6rem;
  color: #4a4a4a;
  max-width: 42ch;
}

.principles-tabs {
  display: flex;
  gap: 0.6rem;
  background: #f4f4f4;
  border: 1px solid #ececec;
  border-radius: 999px;
  padding: 0.35rem;
  width: fit-content;
  margin-bottom: 1.6rem;
}

.principles-tab {
  background: transparent;
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: #303030;
  transition: all 0.2s ease;
}

.principles-tab.is-active {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 20px rgba(255, 76, 76, 0.35);
}

.principles-tab:focus-visible {
  outline: 2px solid rgba(255, 76, 76, 0.5);
  outline-offset: 2px;
}

.principles-logo {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.principles-logo img {
  height: 260px;
  width: auto;
  display: block;
  filter: drop-shadow(0 20px 34px rgba(255, 76, 76, 0.45));
  transition: transform 0.3s ease, filter 0.3s ease;
  animation: logoPulse 3.4s ease-in-out infinite;
}

.principles-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 28px 40px rgba(255, 76, 76, 0.55));
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 18px 30px rgba(255, 76, 76, 0.4));
  }
  50% {
    transform: scale(1.03);
    filter: drop-shadow(0 26px 38px rgba(255, 76, 76, 0.6));
  }
}

.principle-panels {
  display: grid;
  gap: 1.2rem;
}

.principle-panel {
  display: none;
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 22px;
  padding: 1.6rem 1.8rem;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.principle-panel.is-active {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.6rem;
  align-items: center;
  animation: panelIn 0.35s ease;
}

.panel-kicker {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.principle-panel h3 {
  margin: 0 0 0.6rem;
  font-size: 1.3rem;
  color: #1b1b1b;
}

.principle-panel p {
  margin: 0;
  color: #4b4b4b;
}

.panel-icon {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: #f7f7f7;
  display: grid;
  place-items: center;
  color: #222;
}

.panel-icon svg {
  width: 56px;
  height: 56px;
}

.values-panel {
  background: linear-gradient(140deg, #ff4c4c, #ff6a6a);
  color: var(--white);
  border-radius: 32px;
  padding: 2.4rem;
  box-shadow: 0 24px 40px rgba(255, 76, 76, 0.35);
  position: relative;
  overflow: hidden;
}

.values-panel::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.values-panel::after {
  content: '';
  position: absolute;
  bottom: -90px;
  left: -70px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.values-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.4rem;
}

.values-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.9rem 1rem;
  border-radius: 16px;
  display: grid;
  gap: 0.35rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.45);
}

.value-title {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.value-text {
  font-size: 0.9rem;
  opacity: 0.92;
}

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

.services {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  padding: 4.2rem 0 4.6rem;
}

.services-heading {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 2.4rem;
  max-width: 720px;
}

.services-title {
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0;
  letter-spacing: 0.02em;
}

.services-subtitle {
  margin: 0;
  color: #444;
  max-width: 64ch;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
}

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

.service-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.14);
  border-color: rgba(255, 76, 76, 0.35);
}

.service-media {
  position: relative;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.55) 100%);
  color: #fff;
}

.service-tag {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-cta {
  background: var(--red);
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s ease;
}

.service-card:hover .service-cta {
  opacity: 1;
  transform: translateY(0);
}

.service-cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.service-body {
  padding: 1.2rem 1.3rem 1.5rem;
  display: grid;
  gap: 0.8rem;
}

.service-body h3 {
  color: var(--red);
  margin: 0;
  font-size: 1.05rem;
}

.service-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #333;
  font-size: 0.85rem;
  display: grid;
  gap: 0.35rem;
}

.services-note {
  margin-top: 2.4rem;
  color: var(--red);
  font-weight: 700;
  text-align: center;
  display: block;
  position: relative;
}

.services-note::after {
  content: '';
  display: block;
  width: 60px;
  height: 26px;
  margin: 0.5rem auto 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='30' viewBox='0 0 80 30' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round'><path d='M6 20c8-10 16-10 24 0 8 10 16 10 24 0 8-10 16-10 20 2'/></svg>") center/contain no-repeat;
}

.insights {
  background: #4c4c4c;
  padding: 3.5rem 0 4rem;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.4rem;
}

.insight-card {
  color: #e8e8e8;
  font-size: 0.82rem;
}

.insight-card img {
  width: 100%;
  border-radius: 2px;
  margin-bottom: 1rem;
  filter: grayscale(1);
}

.insight-tag {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: #cfcfcf;
  margin-bottom: 0.6rem;
}

.insight-card h3 {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
}

.insight-card p {
  margin: 0 0 1rem;
  color: #bdbdbd;
}

.insight-link {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border: 1px solid #d0d0d0;
  color: #f5f5f5;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-section {
  padding: 4.5rem 0 5rem;
  background: radial-gradient(circle at 10% 20%, rgba(255, 76, 76, 0.25), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(255, 211, 106, 0.18), transparent 40%), #1b1b1b;
  position: relative;
  overflow: hidden;
}

.contact-section::before,
.contact-section::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.contact-section::before {
  width: 320px;
  height: 320px;
  top: -140px;
  left: -120px;
  opacity: 0.4;
}

.contact-section::after {
  width: 260px;
  height: 260px;
  bottom: -140px;
  right: -120px;
  opacity: 0.3;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: clamp(2rem, 4vw, 3.2rem);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  display: grid;
  gap: 1.4rem;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -140px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 211, 106, 0.25), transparent 70%);
  opacity: 0.6;
  animation: contactAura 12s ease-in-out infinite;
  pointer-events: none;
}

.contact-card::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -140px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255, 138, 138, 0.22), transparent 70%);
  opacity: 0.5;
  animation: contactAura 14s ease-in-out infinite reverse;
  pointer-events: none;
}

.contact-intro {
  display: grid;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}

.contact-kicker {
  display: inline-block;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.05;
  background: linear-gradient(120deg, #ffffff 15%, #ffd36a 55%, #ff8a8a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  position: relative;
}

.contact-card h2 {
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffd36a;
  font-weight: 600;
}

.contact-sub {
  margin: 0;
  color: #d8d8d8;
  font-size: 0.95rem;
  max-width: 36ch;
}

.contact-kicker::after {
  content: '';
  display: block;
  width: 120px;
  height: 3px;
  margin-top: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd36a, rgba(255, 255, 255, 0));
}

.contact-details {
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.contact-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
  isolation: isolate;
}

.contact-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(255, 211, 106, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.contact-item::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -45%;
  width: 60%;
  height: 220%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  opacity: 0;
  transform: translateX(-30%);
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.contact-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 211, 106, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.contact-item:hover::before {
  opacity: 1;
}

.contact-item:hover::after {
  opacity: 0.8;
  transform: translateX(170%);
}

.contact-item:focus-visible {
  outline: 2px solid #ffd36a;
  outline-offset: 3px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffd36a;
  background: rgba(255, 211, 106, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 211, 106, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.contact-meta {
  display: grid;
  gap: 0.2rem;
  position: relative;
  z-index: 1;
}

.contact-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: #ffd36a;
}

.contact-text {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  overflow-wrap: anywhere;
}

.contact-chip {
  position: relative;
  z-index: 1;
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.contact-item:hover .contact-chip {
  transform: translateY(-1px);
  border-color: rgba(255, 211, 106, 0.6);
}

.contact-item.is-whatsapp .contact-icon {
  color: #45ea7a;
  background: rgba(69, 234, 122, 0.14);
  box-shadow: inset 0 0 0 1px rgba(69, 234, 122, 0.4);
}

.contact-item.is-email .contact-icon {
  color: #ff9a9a;
  background: rgba(255, 138, 138, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 138, 138, 0.4);
}

.contact-item.is-whatsapp .contact-chip {
  background: rgba(69, 234, 122, 0.2);
  border-color: rgba(69, 234, 122, 0.45);
}

.contact-item.is-email .contact-chip {
  background: rgba(255, 138, 138, 0.2);
  border-color: rgba(255, 138, 138, 0.45);
}

@media (max-width: 640px) {
  .contact-item {
    grid-template-columns: auto 1fr;
  }

  .contact-chip {
    grid-column: 1 / -1;
    justify-self: start;
    margin-left: 3.4rem;
  }
}

@media (min-width: 900px) {
  .contact-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    align-items: center;
  }

  .contact-details {
    grid-column: 2;
  }
}

@keyframes contactAura {
  0%,
  100% {
    transform: translate(-6%, -4%);
    opacity: 0.5;
  }
  50% {
    transform: translate(6%, 4%);
    opacity: 0.9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-card::before,
  .contact-card::after {
    animation: none;
  }

  .contact-item::before,
  .contact-item::after,
  .contact-item,
  .contact-chip,
  .contact-icon {
    transition: none;
  }
}

.site-footer {
  background: linear-gradient(140deg, #1f1f1f 0%, #2a2a2a 55%, #262626 100%);
  color: #f1f1f1;
  padding: 3.2rem 0 2.4rem;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 211, 106, 0.25), transparent 70%);
  opacity: 0.7;
}

.site-footer::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 76, 76, 0.25), transparent 70%);
  opacity: 0.7;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
  transform: scale(1.05);
}

.footer-brand p {
  margin: 0 0 1.2rem;
  color: #d6d6d6;
  max-width: 320px;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 211, 106, 0.7);
  color: #ffd36a;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(255, 211, 106, 0.08);
}

.footer-title {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: #ffd36a;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.footer-links a,
.footer-legal a {
  display: block;
  margin-bottom: 0.45rem;
  color: #f1f1f1;
  font-size: 0.95rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible,
.footer-cta:hover,
.footer-cta:focus-visible {
  color: #ffd36a;
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #bdbdbd;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.privacy-page {
  background: linear-gradient(180deg, #f8f1f1 0%, #f2f4f4 50%, #f8f8f8 100%);
}

.privacy-header {
  padding: 2.4rem 0 1.4rem;
}

.privacy-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.privacy-page .logo img {
  transform: none;
  margin-top: 0;
  height: 46px;
}

.privacy-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid #1a1a1a;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.privacy-main {
  padding: 0 0 4rem;
}

.privacy-card {
  background: #ffffff;
  border-radius: 28px;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow);
  max-width: 920px;
  margin: 0 auto;
  line-height: 1.75;
}

.privacy-card h1 {
  margin-top: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.privacy-card h2 {
  margin: 1.6rem 0 0.6rem;
  font-size: 1.05rem;
}

.privacy-card p {
  margin: 0 0 1rem;
  color: #4a4a4a;
  font-size: 0.98rem;
}

.privacy-card ul {
  margin: 0 0 1.4rem;
  padding-left: 1.2rem;
  color: #4a4a4a;
  font-size: 0.98rem;
}

.privacy-card li {
  margin-bottom: 0.4rem;
}

.info-card {
  max-width: 980px;
  padding: clamp(2rem, 4vw, 3.2rem);
}

.info-hero {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.info-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.info-hero h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-hero p {
  margin: 0;
  color: #4a4a4a;
  font-size: 1rem;
}

.info-hero-icon {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: linear-gradient(140deg, rgba(255, 76, 76, 0.15), rgba(255, 211, 106, 0.25));
  color: #1a1a1a;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.info-hero-icon svg {
  width: 64px;
  height: 64px;
}

.info-divider {
  height: 1px;
  background: #e7e7e7;
  margin: 2rem 0;
}

.info-section h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
  color: #4a4a4a;
}

.info-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid #ededed;
  background: #fafafa;
}

.info-list-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.info-list-icon svg {
  width: 100%;
  height: 100%;
}

@media (min-width: 860px) {
  .info-hero {
    grid-template-columns: 1.1fr auto;
  }
}

.scroll-mascot {
  position: fixed;
  left: 24px;
  top: 120px;
  width: 70px;
  height: 120px;
  z-index: 55;
  pointer-events: none;
  overflow: visible;
  opacity: 0;
  transform: translateY(var(--mascot-y, 0px)) scale(0.9);
  transition: transform 0.2s linear, opacity 0.25s ease;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.2));
  animation: mascotFloat 1.2s ease-in-out infinite;
  animation-play-state: paused;
  animation-fill-mode: both;
}

.scroll-mascot.is-visible {
  opacity: 1;
  transform: translateY(var(--mascot-y, 0px)) scale(1);
}
.scroll-mascot svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  animation: mascotWiggle 0.5s ease-in-out infinite;
  animation-play-state: paused;
  animation-fill-mode: both;
  transform-origin: center;
}

.scroll-mascot.is-scrolling {
  animation-play-state: running;
}

.scroll-mascot.is-scrolling svg {
  animation-play-state: running;
}

.scroll-mascot .mascot-sign {
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.18));
}

.scroll-mascot .mascot-sign-logo {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.mascot-eye,
.mascot-eye-light {
  transform-box: fill-box;
  transform-origin: center;
  animation: blink 3.4s ease-in-out infinite;
}

.scroll-mascot.is-scrolling .mascot-eye,
.scroll-mascot.is-scrolling .mascot-eye-light {
  animation: none;
  transform: scaleY(1);
}

@keyframes mascotFloat {
  0%,
  100% {
    transform: translateY(var(--mascot-y, 0px)) translateX(0);
  }
  50% {
    transform: translateY(calc(var(--mascot-y, 0px) - 12px)) translateX(4px);
  }
}

@keyframes mascotWiggle {
  0%,
  100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

.mascot-arm,
.mascot-leg {
  transform-box: fill-box;
  transform-origin: top center;
}

.mascot-arm.left {
  animation: armSwing 0.6s ease-in-out infinite;
  animation-play-state: paused;
  animation-fill-mode: both;
}

.mascot-arm.right {
  animation: armSwing 0.6s ease-in-out infinite reverse;
  animation-play-state: paused;
  animation-fill-mode: both;
}

.mascot-leg.left {
  animation: legSwing 0.6s ease-in-out infinite reverse;
  animation-play-state: paused;
  animation-fill-mode: both;
}

.mascot-leg.right {
  animation: legSwing 0.6s ease-in-out infinite;
  animation-play-state: paused;
  animation-fill-mode: both;
}

.scroll-mascot.is-scrolling .mascot-arm.left,
.scroll-mascot.is-scrolling .mascot-arm.right,
.scroll-mascot.is-scrolling .mascot-leg.left,
.scroll-mascot.is-scrolling .mascot-leg.right {
  animation-play-state: running;
}

@keyframes armSwing {
  0% {
    transform: rotate(12deg) translateY(0);
  }
  50% {
    transform: rotate(-12deg) translateY(2px);
  }
  100% {
    transform: rotate(12deg) translateY(0);
  }
}

@keyframes legSwing {
  0% {
    transform: rotate(-10deg) translateY(0);
  }
  50% {
    transform: rotate(10deg) translateY(3px);
  }
  100% {
    transform: rotate(-10deg) translateY(0);
  }
}

@keyframes blink {
  0%,
  92%,
  100% {
    transform: scaleY(1);
  }
  94%,
  96% {
    transform: scaleY(0.1);
  }
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
  z-index: 60;
  animation: whatsappPulse 2.8s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
  will-change: transform, opacity;
}

.whatsapp-float.is-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  display: block;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.34);
}

.whatsapp-float:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28), 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 1024px) {
  .hero-content,
  .principles-layout,
  .services-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .hero-map {
    justify-content: flex-start;
  }

  .structure-grid {
    grid-template-columns: 1fr;
  }

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

  .principle-panel.is-active {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .panel-icon {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .nav-pill {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding: 0.85rem 1.2rem;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    position: absolute;
    top: 72px;
    right: 6vw;
    width: min(92vw, 360px);
    background: #ffffff;
    padding: 1.1rem 1.2rem;
    border-radius: 20px;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.2);
  }

  .nav-item {
    width: 100%;
    justify-content: space-between;
  }

  .nav-links > a,
  .nav-item > .nav-link {
    width: 100%;
    justify-content: space-between;
    font-size: 0.88rem;
  }

  .nav-item > .nav-link::after,
  .nav-links > a::after {
    display: none;
  }

  .dropdown-toggle {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 76, 76, 0.1);
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    min-width: auto;
    box-shadow: none;
    background: #f7f7f7;
    padding: 0.5rem;
    border-radius: 14px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: none;
  }

  .dropdown-menu a {
    font-size: 0.72rem;
  }

  .nav-item.is-open .dropdown-menu {
    display: block;
  }

  .hero {
    padding-top: 8.5rem;
  }

  .scroll-mascot {
    display: none;
  }
}

@media (max-width: 640px) {
  .structure-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-text h1 {
    font-size: clamp(2.2rem, 8.5vw, 3.1rem);
  }

  .hero-text p {
    font-size: 0.78rem;
  }

  .nav-links.open {
    width: min(92vw, 320px);
  }

  .dropdown-menu {
    width: 100%;
  }

  .dropdown-menu a {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .contact-kicker {
    font-size: clamp(2rem, 9vw, 2.8rem);
    letter-spacing: 0.08em;
  }

  .contact-card h2 {
    letter-spacing: 0.12em;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
  }

  .principles-tabs {
    width: 100%;
    justify-content: space-between;
  }
}
