:root {
  --navy-950: #031d42;
  --navy-900: #062a5e;
  --navy-800: #0a397d;
  --blue-700: #0754ac;
  --blue-600: #0870d4;
  --cyan-500: #18b9dc;
  --cyan-300: #77d9ec;
  --sky-100: #e7f7fd;
  --sky-50: #f4fbff;
  --ink: #0a2342;
  --text: #43566c;
  --muted: #6f8093;
  --line: #dce8f2;
  --white: #ffffff;
  --whatsapp: #19b966;
  --shadow-sm: 0 12px 34px rgba(6, 42, 94, 0.09);
  --shadow-lg: 0 28px 70px rgba(3, 29, 66, 0.18);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 15px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan-500);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
  font-weight: 760;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  color: rgba(255, 255, 255, 0.86);
  background: var(--navy-950);
  font-size: 0.79rem;
  letter-spacing: 0.015em;
}

.topbar-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar a {
  color: var(--white);
  font-weight: 700;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(6, 42, 94, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 35px rgba(6, 42, 94, 0.055);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand > span {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.brand strong {
  color: var(--navy-900);
  font-size: 1.12rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.brand small {
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 650;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.desktop-nav a {
  position: relative;
  color: #354c67;
  font-size: 0.92rem;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-500));
  content: "";
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.mobile-nav {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  box-shadow: 0 12px 30px rgba(8, 112, 212, 0.22);
  font-size: 0.93rem;
  font-weight: 750;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button:hover {
  box-shadow: 0 16px 36px rgba(8, 112, 212, 0.3);
  transform: translateY(-2px);
}

.button svg,
.whatsapp-float svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.88rem;
}

.button-white {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.button-outline {
  border-color: #b9cede;
  color: var(--navy-900);
  background: var(--white);
  box-shadow: none;
}

.button-outline:hover {
  border-color: var(--blue-600);
  box-shadow: 0 12px 28px rgba(6, 42, 94, 0.1);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  font-size: 0.94rem;
  font-weight: 750;
}

.text-link svg,
.service-card a svg,
.specialty-row svg,
.button .arrow-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 0.2s ease;
}

.text-link:hover svg,
.service-card a:hover svg {
  transform: translateX(4px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 88px;
  background:
    linear-gradient(125deg, rgba(244, 251, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 58%, rgba(231, 247, 253, 0.86) 100%);
}

.hero::before {
  position: absolute;
  top: -210px;
  right: -160px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(24, 185, 220, 0.16);
  border-radius: 50%;
  content: "";
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.hero-orb-one {
  top: 50px;
  left: -70px;
  width: 170px;
  height: 170px;
  background: rgba(24, 185, 220, 0.09);
}

.hero-orb-two {
  right: 39%;
  bottom: -58px;
  width: 120px;
  height: 120px;
  background: rgba(8, 112, 212, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: 66px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 25px;
  height: 2px;
  border-radius: 3px;
  background: var(--cyan-500);
}

.eyebrow.light {
  color: var(--cyan-300);
}

.hero h1 {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--navy-950);
  font-size: clamp(3.4rem, 6.6vw, 6.2rem);
  font-weight: 820;
  letter-spacing: -0.062em;
}

.hero h1::after {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border-radius: 50%;
  background: var(--cyan-500);
  content: "";
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 31px;
  color: var(--text);
  font-size: clamp(1.04rem, 1.7vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.hero-trust {
  display: flex;
  margin-top: 43px;
  gap: 0;
}

.hero-trust > div {
  display: flex;
  min-width: 145px;
  flex-direction: column;
  padding: 0 24px;
  border-left: 1px solid var(--line);
}

.hero-trust > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-trust strong {
  margin-bottom: 2px;
  color: var(--navy-900);
  font-size: 0.88rem;
}

.hero-trust span {
  color: var(--muted);
  font-size: 0.75rem;
}

.hero-visual {
  position: relative;
  padding: 18px 0 18px 25px;
}

.hero-visual::before {
  position: absolute;
  top: 0;
  right: -18px;
  bottom: 0;
  left: 62px;
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(24, 185, 220, 0.28), rgba(8, 112, 212, 0.05));
  content: "";
  transform: rotate(4deg);
}

.hero-photo-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 490px;
  border: 10px solid var(--white);
  border-radius: 34px 34px 100px 34px;
  background: var(--sky-100);
  box-shadow: var(--shadow-lg);
}

.hero-photo-frame img {
  width: 100%;
  height: 490px;
  object-fit: cover;
  object-position: 50% 50%;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.floating-card-top {
  top: 48px;
  left: -10px;
}

.floating-card-bottom {
  right: -26px;
  bottom: 52px;
}

.floating-card div {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.floating-card small {
  color: var(--muted);
  font-size: 0.69rem;
}

.floating-card strong {
  color: var(--navy-900);
  font-size: 0.82rem;
}

.pulse-dot {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--whatsapp);
}

.pulse-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(25, 185, 102, 0.35);
  border-radius: 50%;
  content: "";
  animation: pulse 2s infinite;
}

.floating-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--blue-600);
}

.floating-icon svg,
.contact-item > span svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(0.8); }
  75%, 100% { opacity: 0; transform: scale(1.5); }
}

.service-marquee {
  color: var(--white);
  background: linear-gradient(90deg, var(--navy-950), var(--navy-800));
}

.service-marquee-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 19px;
  overflow: hidden;
  white-space: nowrap;
}

.service-marquee span {
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-marquee i {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--cyan-500);
}

.section {
  padding: 112px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 92px;
}

.about-media {
  position: relative;
  min-height: 560px;
}

.about-image-wrap {
  position: absolute;
  inset: 0 32px 24px 0;
  overflow: hidden;
  border-radius: 34px 90px 34px 34px;
  background: var(--sky-100);
  box-shadow: var(--shadow-lg);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.about-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  min-width: 225px;
  flex-direction: column;
  padding: 22px 25px;
  border: 8px solid var(--white);
  border-radius: 22px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.about-badge strong {
  font-size: 1.13rem;
}

.about-badge span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.about-copy > p {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
}

.check-list {
  display: grid;
  margin: 0 0 32px;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #344a62;
  font-weight: 620;
}

.check-list span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  border-radius: 9px;
  color: var(--blue-700);
  background: var(--sky-100);
  font-size: 0.8rem;
  font-weight: 900;
}

.services-section {
  background: var(--sky-50);
}

.section-heading {
  max-width: 750px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  color: var(--text);
  font-size: 1.03rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 28px 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(6, 42, 94, 0.045);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.service-card:hover {
  border-color: rgba(8, 112, 212, 0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-code {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 27px;
  place-items: center;
  border: 1px solid rgba(8, 112, 212, 0.14);
  border-radius: 15px;
  color: var(--blue-700);
  background: linear-gradient(145deg, #eefaff, #e5f1ff);
  font-size: 0.68rem;
  font-weight: 880;
  letter-spacing: 0.06em;
}

.service-card h3 {
  margin-bottom: 11px;
  color: var(--navy-900);
  font-size: 1.14rem;
  letter-spacing: -0.018em;
}

.service-card p {
  margin-bottom: 23px;
  color: var(--text);
  font-size: 0.87rem;
  line-height: 1.65;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--blue-700);
  font-size: 0.8rem;
  font-weight: 780;
}

.service-card a svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.agenda-section {
  padding: 90px 0;
  background: var(--white);
}

.agenda-shell {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  padding: 74px;
  border-radius: 40px;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 100%, rgba(24, 185, 220, 0.2), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow-lg);
}

.agenda-shell::after {
  position: absolute;
  top: -110px;
  right: -80px;
  width: 320px;
  height: 320px;
  border: 55px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  content: "";
}

.agenda-intro {
  position: relative;
  z-index: 2;
}

.agenda-intro h2 {
  margin-bottom: 21px;
  color: var(--white);
  font-size: clamp(2.4rem, 4.3vw, 4.3rem);
}

.agenda-intro > p {
  max-width: 450px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.agenda-cards {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
}

.agenda-card {
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 18px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.agenda-card.featured {
  border-color: rgba(119, 217, 236, 0.45);
  background: rgba(24, 185, 220, 0.13);
}

.agenda-card.compact {
  grid-template-columns: 16px 1fr;
  padding: 16px 19px;
}

.date-box {
  display: flex;
  width: 66px;
  height: 66px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--navy-900);
  background: var(--white);
  line-height: 1;
}

.date-box strong {
  font-size: 1.65rem;
  font-weight: 850;
}

.date-box span {
  margin-top: 4px;
  color: var(--blue-600);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.agenda-label {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan-300);
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agenda-card h3 {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}

.agenda-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.79rem;
  line-height: 1.5;
}

.availability-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 5px rgba(24, 185, 220, 0.16);
}

.agenda-note {
  margin: 3px 4px 0;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.67rem;
}

.specialties-section {
  padding-top: 45px;
}

.specialties-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
}

.specialties-grid > div:first-child {
  position: sticky;
  top: 125px;
  align-self: start;
}

.specialty-list {
  border-top: 1px solid var(--line);
}

.specialty-row {
  display: grid;
  min-height: 78px;
  grid-template-columns: 48px 1fr 28px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.2s ease, color 0.2s ease;
}

.specialty-row:hover {
  padding-left: 10px;
  color: var(--blue-700);
}

.specialty-row > span {
  color: var(--cyan-500);
  font-size: 0.7rem;
  font-weight: 850;
}

.specialty-row strong {
  font-size: 1.03rem;
  font-weight: 690;
}

.specialty-row svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.team-section {
  background: var(--sky-50);
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 74px;
}

.team-copy p {
  margin-bottom: 30px;
  color: var(--text);
  line-height: 1.8;
}

.team-photo {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
}

.team-photo::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(3, 29, 66, 0.68));
  content: "";
}

.team-photo > img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  object-position: center;
}

.team-caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 720;
}

.team-caption span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan-500);
}

.faq-section {
  padding-top: 100px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 100px;
}

.faq-grid > div:first-child p {
  max-width: 380px;
  color: var(--text);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--navy-900);
  cursor: pointer;
  font-weight: 710;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-700);
  background: var(--sky-100);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 48px 24px 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.75;
}

.location-section {
  padding-top: 10px;
}

.location-shell {
  display: grid;
  overflow: hidden;
  grid-template-columns: 0.84fr 1.16fr;
  min-height: 580px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.location-info {
  padding: 58px;
}

.location-info > p {
  margin-bottom: 31px;
  color: var(--text);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

.contact-item > span {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 13px;
  color: var(--blue-700);
  background: var(--sky-100);
}

.contact-item > div {
  display: flex;
  flex-direction: column;
}

.contact-item small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-item strong,
.contact-item a {
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.55;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.map-wrap {
  min-height: 580px;
  background: #dbe7ed;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 580px;
  border: 0;
  filter: saturate(0.82) contrast(1.03);
}

.final-cta {
  padding: 78px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(24, 185, 220, 0.24), transparent 25%),
    linear-gradient(120deg, var(--blue-700), var(--navy-900));
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta span {
  color: var(--cyan-300);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 740px;
  margin: 8px 0 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 0 19px;
  border: 3px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  background: var(--whatsapp);
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.22);
  font-size: 0.82rem;
  font-weight: 780;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.29);
  transform: translateY(-3px);
}

.site-footer {
  padding: 55px 0 28px;
  color: rgba(255, 255, 255, 0.67);
  background: var(--navy-950);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 62px;
  height: 62px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  object-fit: contain;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.footer-brand span {
  font-size: 0.74rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 29px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--cyan-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.68rem;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 19px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
    gap: 40px;
  }

  .hero-trust > div {
    min-width: 125px;
    padding-inline: 15px;
  }

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

  .agenda-shell {
    padding: 55px;
    gap: 45px;
  }
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }

  .header-inner {
    min-height: 74px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--navy-900);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .mobile-nav[open] summary span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-nav[open] summary span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav[open] summary span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav-panel {
    position: absolute;
    top: 54px;
    right: 0;
    display: grid;
    width: min(300px, calc(100vw - 48px));
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
  }

  .mobile-nav-panel a {
    padding: 11px 12px;
    border-radius: 10px;
    color: var(--navy-900);
    font-size: 0.88rem;
    font-weight: 680;
  }

  .mobile-nav-panel a:last-child {
    margin-top: 5px;
    color: var(--white);
    background: var(--blue-600);
    text-align: center;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-grid,
  .about-grid,
  .team-grid,
  .faq-grid,
  .location-shell,
  .specialties-grid,
  .agenda-shell {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 62px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(3.4rem, 12vw, 5.9rem);
  }

  .hero-visual {
    width: min(680px, 100%);
    margin-inline: auto;
  }

  .hero-photo-frame,
  .hero-photo-frame img {
    min-height: 520px;
    height: 520px;
  }

  .about-grid {
    gap: 60px;
  }

  .about-media {
    min-height: 620px;
  }

  .about-copy {
    max-width: 720px;
  }

  .agenda-shell {
    gap: 55px;
  }

  .specialties-grid,
  .team-grid,
  .faq-grid {
    gap: 55px;
  }

  .specialties-grid > div:first-child {
    position: static;
  }

  .team-photo,
  .team-photo > img {
    min-height: 540px;
    height: 540px;
  }

  .location-info {
    padding: 52px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 450px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand small {
    max-width: 165px;
    font-size: 0.63rem;
  }

  .section {
    padding: 82px 0;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero {
    padding: 50px 0 70px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 16vw, 4.5rem);
  }

  .hero h1::after {
    width: 11px;
    height: 11px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 36px;
  }

  .hero-trust > div {
    min-width: 0;
    padding-inline: 10px;
  }

  .hero-trust strong {
    font-size: 0.73rem;
  }

  .hero-trust span {
    font-size: 0.64rem;
  }

  .hero-visual {
    padding-left: 0;
  }

  .hero-visual::before {
    right: 4px;
    left: 22px;
  }

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

  .hero-photo-frame {
    border-width: 7px;
    border-radius: 25px 25px 70px 25px;
  }

  .floating-card-top {
    top: 40px;
    left: -8px;
  }

  .floating-card-bottom {
    right: -7px;
    bottom: 35px;
  }

  .floating-card {
    padding: 10px 12px;
  }

  .floating-card strong {
    font-size: 0.72rem;
  }

  .service-marquee-inner {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .service-marquee-inner::-webkit-scrollbar {
    display: none;
  }

  .about-media {
    min-height: 470px;
  }

  .about-image-wrap {
    inset: 0 14px 32px 0;
    border-radius: 26px 65px 26px 26px;
  }

  .about-badge {
    min-width: 198px;
    padding: 17px 19px;
    border-width: 6px;
  }

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

  .service-card {
    min-height: 260px;
  }

  .agenda-section {
    padding: 60px 0;
  }

  .agenda-shell {
    width: calc(100% - 20px);
    padding: 38px 20px;
    border-radius: 27px;
    gap: 42px;
  }

  .agenda-intro h2 {
    font-size: 2.7rem;
  }

  .agenda-card {
    grid-template-columns: 58px 1fr;
    gap: 13px;
    padding: 13px;
  }

  .date-box {
    width: 58px;
    height: 61px;
  }

  .agenda-card h3 {
    font-size: 0.98rem;
  }

  .specialty-row {
    grid-template-columns: 35px 1fr 24px;
  }

  .team-photo,
  .team-photo > img {
    min-height: 390px;
    height: 390px;
  }

  .team-photo {
    border-radius: 25px;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 0.9rem;
  }

  .location-shell {
    width: calc(100% - 20px);
    border-radius: 27px;
  }

  .location-info {
    padding: 38px 22px;
  }

  .location-actions {
    display: grid;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 390px;
  }

  .final-cta {
    padding: 62px 0;
  }

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

  .final-cta .button {
    width: 100%;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 16px;
  }

  .footer-bottom {
    gap: 8px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}

@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;
  }
}
