
:root {
  --navy-950: #050d19;
  --navy-900: #071325;
  --navy-800: #0d2343;
  --navy-700: #153660;
  --blue: #1769e0;
  --silver: #e8edf4;
  --gold: #d6ad4f;
  --gold-light: #f0d98f;
  --paper: #ffffff;
  --soft: #f3f6fa;
  --text: #152033;
  --muted: #637087;
  --line: #dce3ec;
  --shadow: 0 24px 70px rgba(5, 13, 25, 0.18);
  --radius: 26px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--soft);
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }

html { scroll-padding-top: 82px; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--soft);
}

body.no-scroll { overflow: hidden; }

a, button, input, select, textarea { font: inherit; }
a, button { -webkit-tap-highlight-color: transparent; }

button { cursor: pointer; }

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  color: white;
  background:
    radial-gradient(circle at 50% 36%, rgba(23, 105, 224, .28), transparent 28rem),
    radial-gradient(circle at 65% 65%, rgba(214, 173, 79, .16), transparent 22rem),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 48%, var(--navy-800));
  transition: opacity .75s ease, visibility .75s ease;
}

.intro-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-glow {
  position: absolute;
  width: min(70vw, 760px);
  height: min(70vw, 760px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow:
    0 0 80px rgba(23,105,224,.18),
    inset 0 0 80px rgba(214,173,79,.07);
  animation: introPulse 4s ease-in-out infinite;
}

.intro-content {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  text-align: center;
}

.intro-logo {
  width: min(680px, 92vw);
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.42));
  animation: introFloat 3.6s ease-in-out infinite;
}

.intro-content > p {
  margin: -12px 0 26px;
  color: #d9e2ee;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 800;
}

.enter-button {
  min-width: min(100%, 320px);
  padding: 15px 24px;
  border: 1px solid rgba(240,217,143,.58);
  border-radius: 999px;
  color: var(--navy-950);
  background: linear-gradient(135deg, #f0d98f, #d6ad4f);
  box-shadow: 0 18px 36px rgba(0,0,0,.28);
  font-weight: 900;
}

.enter-button span,
.enter-button small { display: block; }

.enter-button small {
  margin-top: 4px;
  font-weight: 600;
  opacity: .74;
}

.sound-toggle {
  display: block;
  margin: 14px auto 0;
  border: 0;
  color: #aebed0;
  background: transparent;
  font-size: .8rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px max(18px, calc((100vw - 1180px) / 2));
  color: white;
  background: rgba(5, 13, 25, .93);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-weight: 850;
  white-space: nowrap;
}

.mini-brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.main-menu {
  margin-left: auto;
  display: flex;
  gap: 4px;
}

.main-menu a {
  padding: 10px 11px;
  border-radius: 10px;
  color: #dbe4ef;
  text-decoration: none;
  font-size: .87rem;
  font-weight: 650;
}

.main-menu a:hover,
.main-menu a:focus-visible {
  color: white;
  background: rgba(255,255,255,.09);
  outline: none;
}

.menu-button {
  display: none;
  margin-left: auto;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  color: white;
  background: transparent;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  overflow: hidden;
  padding: 58px max(20px, calc((100vw - 1180px) / 2));
  color: white;
  background:
    radial-gradient(circle at 18% 18%, rgba(23,105,224,.24), transparent 30rem),
    radial-gradient(circle at 82% 68%, rgba(214,173,79,.16), transparent 26rem),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 45%, var(--navy-800));
}

.hero-background {
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-copy,
.hero-portrait { position: relative; z-index: 2; }

.hero-logo {
  display: block;
  width: min(520px, 90%);
  max-height: 265px;
  object-fit: contain;
  margin: 0 0 10px;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.42));
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.light { color: var(--gold-light); }

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  margin: 0;
  font-size: clamp(2.45rem, 6.2vw, 5.3rem);
  line-height: .98;
  letter-spacing: -.04em;
}

.hero-role {
  margin: 16px 0 0;
  color: var(--gold-light);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 800;
}

.hero-lead {
  max-width: 650px;
  margin: 20px 0 0;
  color: #d7e1ed;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #1769e0, #0e4fb3);
  box-shadow: 0 14px 32px rgba(23,105,224,.28);
}

.button-outline {
  color: white;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.07);
}

.button-gold {
  color: var(--navy-950);
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.button-light {
  color: white;
  border-color: rgba(255,255,255,.23);
  background: rgba(255,255,255,.08);
}

.hero-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 19px;
}

.text-link {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 750;
}

.button-reset {
  padding: 0;
  border: 0;
  background: none;
}

.portrait-ring {
  position: relative;
  width: min(44vw, 520px);
  aspect-ratio: 1 / 1.12;
  margin: 0 auto;
  padding: 8px;
  border-radius: 45% 45% 24% 24%;
  background: linear-gradient(145deg, var(--gold-light), var(--blue), var(--silver));
  box-shadow: 0 28px 90px rgba(0,0,0,.38);
}

.portrait-ring::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(214,173,79,.28), rgba(23,105,224,.28));
  filter: blur(28px);
}

.portrait-ring img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 44% 35%;
  border-radius: inherit;
}

.floating-badge {
  position: absolute;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  color: white;
  background: rgba(5,13,25,.72);
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
  font-size: .86rem;
  font-weight: 800;
}

.badge-one { left: -5%; bottom: 22%; }
.badge-two { right: -2%; bottom: 8%; }

.quick-actions {
  position: relative;
  z-index: 4;
  width: min(calc(100% - 28px), 1060px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: -38px auto 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 24px;
  background: rgba(255,255,255,.93);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.quick-action {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 10px;
  align-items: center;
  padding: 13px;
  border: 0;
  border-radius: 16px;
  color: var(--text);
  background: transparent;
  text-align: left;
  text-decoration: none;
}

.quick-action:hover {
  background: var(--soft);
}

.quick-icon {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: var(--navy-800);
  font-weight: 900;
}

.quick-action strong { font-size: .94rem; }
.quick-action small {
  min-width: 0;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section {
  padding: 88px max(18px, calc((100vw - 1180px) / 2));
}

.section-soft { background: #edf2f8; }

.section-dark {
  color: white;
  background:
    radial-gradient(circle at top right, rgba(23,105,224,.15), transparent 26rem),
    linear-gradient(145deg, var(--navy-950), var(--navy-900));
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.4vw, 3.55rem);
  line-height: 1.08;
}

.section-dark .section-heading h2 { color: white; }

.section-heading > p:last-child {
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.62;
}

.section-dark .section-heading > p:last-child { color: #b9c8d9; }

.profile-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items: stretch;
}

.profile-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 48px rgba(5,13,25,.08);
}

.profile-photo {
  width: 100%;
  aspect-ratio: .82 / 1;
  object-fit: cover;
  object-position: 46% 35%;
  border-radius: 20px;
}

.profile-intro {
  margin: 0 0 20px;
  color: #35435a;
  font-size: 1.08rem;
  line-height: 1.7;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.stat-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border-radius: 22px;
  color: white;
  background:
    linear-gradient(145deg, rgba(23,105,224,.9), rgba(13,35,67,.98));
  box-shadow: 0 16px 38px rgba(5,13,25,.15);
}

.stat-card:nth-child(2),
.stat-card:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(214,173,79,.95), rgba(122,89,20,.98));
}

.stat-card strong {
  display: block;
  font-size: 2.7rem;
  line-height: 1;
}

.stat-card span {
  margin-top: 9px;
  color: rgba(255,255,255,.86);
  line-height: 1.4;
}

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

.service-card {
  position: relative;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214,173,79,.45);
  background: rgba(255,255,255,.085);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 1.15rem;
  font-weight: 950;
}

.service-card h3 {
  margin: 22px 0 11px;
  font-size: 1.25rem;
}

.service-card p {
  margin: 0;
  color: #b9c8d9;
  line-height: 1.62;
}

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

.promotion-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 18px 48px rgba(5,13,25,.08);
}

.promotion-tag {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  color: #674f14;
  background: #fff4cd;
  font-size: .75rem;
  font-weight: 900;
}

.promotion-card h3 {
  margin: 22px 0 12px;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.promotion-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.promotion-card .button {
  margin-top: auto;
}

.presentation-banner {
  width: min(calc(100% - 28px), 1180px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  margin: 70px auto;
  padding: clamp(34px, 6vw, 66px);
  border-radius: 30px;
  color: white;
  background:
    radial-gradient(circle at 85% 40%, rgba(214,173,79,.20), transparent 18rem),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow);
}

.presentation-banner h2 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.presentation-banner p {
  max-width: 720px;
  color: #c3d0df;
  line-height: 1.6;
}

.form-card {
  width: min(100%, 850px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 18px 50px rgba(5,13,25,.08);
}

.form-card label {
  display: grid;
  gap: 8px;
  color: var(--navy-900);
  font-weight: 800;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #c8d2df;
  border-radius: 12px;
  color: var(--text);
  background: white;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(23,105,224,.14);
}

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

.faq-list {
  width: min(100%, 860px);
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: white;
}

.faq-item summary {
  padding: 20px 22px;
  color: var(--navy-900);
  font-weight: 850;
  cursor: pointer;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.64;
}

.contact-section {
  padding: 88px 18px;
  color: white;
  background:
    radial-gradient(circle at top, rgba(23,105,224,.22), transparent 26rem),
    linear-gradient(145deg, var(--navy-950), var(--navy-900));
}

.contact-card {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: rgba(255,255,255,.055);
  text-align: center;
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
}

.contact-logo {
  width: min(460px, 90%);
  max-height: 230px;
  object-fit: contain;
}

.contact-card h2 {
  margin: 6px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.contact-card > p { color: var(--gold-light); }

.contact-data {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.contact-data a,
.contact-data span {
  color: #d7e1ed;
  text-decoration: none;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
  margin-top: 26px;
}

footer {
  padding: 24px 18px;
  color: #8495aa;
  background: var(--navy-950);
  text-align: center;
  font-size: .86rem;
}

footer p { margin: 5px 0; }

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,8,16,.78);
  backdrop-filter: blur(9px);
}

.modal-card {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  padding: 28px;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
}

.modal-card h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.modal-card img {
  width: min(100%, 310px);
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.modal-card p:last-child {
  color: var(--muted);
  line-height: 1.55;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--soft);
  font-size: 1.6rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 1300;
  max-width: calc(100% - 28px);
  padding: 12px 18px;
  border-radius: 999px;
  color: white;
  background: rgba(5,13,25,.94);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 18px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Presentation */
.presentation-body {
  min-height: 100vh;
  color: white;
  background:
    radial-gradient(circle at 18% 15%, rgba(23,105,224,.25), transparent 30rem),
    radial-gradient(circle at 82% 72%, rgba(214,173,79,.16), transparent 24rem),
    linear-gradient(145deg, var(--navy-950), var(--navy-900), var(--navy-800));
}

.presentation-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  padding: 16px;
}

.presentation-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.presentation-top-actions {
  display: flex;
  gap: 8px;
}

.presentation-control {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: white;
  background: rgba(255,255,255,.07);
  text-decoration: none;
  font-weight: 800;
}

.presentation-stage {
  position: relative;
  width: min(100%, 1100px);
  min-height: min(76vh, 720px);
  margin: auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(5,13,25,.96), rgba(13,35,67,.89));
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: clamp(34px, 8vw, 94px);
  opacity: 0;
  transform: translateX(6%) scale(.98);
  pointer-events: none;
  transition: opacity .72s ease, transform .72s ease;
}

.slide.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.slide-inner { max-width: 820px; }
.centered { margin: auto; text-align: center; }

.slide-logo {
  width: min(620px, 90%);
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.40));
}

.slide-profile {
  display: block;
  width: clamp(160px, 22vw, 230px);
  height: clamp(160px, 22vw, 230px);
  object-fit: cover;
  margin: -18px auto 20px;
  border: 5px solid var(--gold);
  border-radius: 50%;
}

.slide h1 {
  font-size: clamp(2.5rem, 6.6vw, 5.3rem);
}

.slide h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6.5vw, 5.4rem);
  line-height: 1.03;
}

.slide-subtitle,
.slide-copy {
  color: #cfdae7;
  font-size: clamp(1.1rem, 2.5vw, 1.65rem);
  line-height: 1.58;
}

.slide-subtitle { color: var(--gold-light); font-weight: 800; }

.slide-index {
  color: var(--gold);
  font-weight: 950;
  letter-spacing: .18em;
}

.slide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.slide-tags span {
  padding: 12px 16px;
  border: 1px solid rgba(240,217,143,.38);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(214,173,79,.08);
  font-weight: 850;
}

.button-large {
  min-width: min(100%, 300px);
  margin-top: 18px;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 50%;
  color: white;
  background: rgba(5,13,25,.56);
  font-size: 2rem;
  transform: translateY(-50%);
}

.slide-arrow.left { left: 18px; }
.slide-arrow.right { right: 18px; }

.presentation-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.presentation-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
}

.presentation-dot.active {
  width: 32px;
  background: var(--gold);
}

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

@keyframes introPulse {
  0%, 100% { transform: scale(.96); opacity: .72; }
  50% { transform: scale(1.03); opacity: 1; }
}

@media (max-width: 980px) {
  .main-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: var(--navy-900);
    box-shadow: var(--shadow);
  }

  .main-menu.open {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-button { display: block; }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-logo { margin-left: auto; margin-right: auto; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions,
  .hero-secondary { justify-content: center; }

  .portrait-ring { width: min(74vw, 500px); }
  .profile-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .quick-actions {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .profile-photo {
    max-width: 330px;
    margin: 0 auto;
  }

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

  .presentation-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .form-card { grid-template-columns: 1fr; }
  .full { grid-column: auto; }

  .floating-badge {
    position: static;
    display: inline-block;
    margin: 12px 4px 0;
  }

  .presentation-top {
    align-items: flex-start;
  }

  .presentation-top-actions {
    flex-direction: column;
  }

  .slide {
    padding: 70px 28px 58px;
  }

  .slide-arrow {
    top: auto;
    bottom: 16px;
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 72px;
  }

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

  .quick-actions {
    grid-template-columns: 1fr;
    margin-top: -46px;
  }

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

  .section { padding-top: 64px; padding-bottom: 64px; }

  .contact-card { padding: 28px 18px; }

  .contact-buttons { display: grid; }

  .presentation-shell { padding: 9px; }
  .presentation-stage { min-height: 76vh; border-radius: 22px; }
}


/* ---------- Versión profesional V2: pólizas, video, redes y privacidad ---------- */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.policy-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 18px 48px rgba(5,13,25,.09);
}

.policy-image-button {
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: #071325;
  cursor: zoom-in;
}

.policy-image-button img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .28s ease;
}

.policy-image-button:hover img {
  transform: scale(1.025);
}

.policy-card-content {
  padding: 20px;
}

.policy-card-content h3 {
  margin: 4px 0 18px;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.policy-price {
  margin: 0;
  color: #0e4fb3;
  font-weight: 900;
}

.video-feature {
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: center;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: 0 20px 55px rgba(5,13,25,.10);
}

.video-feature video {
  width: min(100%, 430px);
  max-height: 720px;
  justify-self: center;
  border-radius: 22px;
  background: #050d19;
  box-shadow: 0 18px 46px rgba(5,13,25,.22);
}

.video-copy h3 {
  margin: 14px 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.video-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.video-label {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  color: #674f14;
  background: #fff4cd;
  font-size: .78rem;
  font-weight: 900;
}

.social-grid {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 0 auto;
}

.social-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--text);
  background: white;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(5,13,25,.07);
  transition: transform .18s ease, border-color .18s ease;
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.social-initial {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: white;
  background: linear-gradient(145deg, var(--navy-800), var(--blue));
  font-size: 1.25rem;
  font-weight: 950;
}

.social-card strong,
.social-card small {
  display: block;
}

.social-card small {
  margin-top: 4px;
  color: var(--muted);
}

.social-arrow {
  color: var(--gold);
  font-size: 1.25rem;
}

.contact-data strong {
  color: var(--gold-light);
}

.image-modal-card {
  width: min(100%, 880px);
}

.image-modal-card > img {
  width: min(100%, 690px);
  max-height: 70vh;
  object-fit: contain;
  background: #071325;
}

.image-modal-card .button {
  margin-top: 16px;
}

.legal-page {
  min-height: 100vh;
  color: var(--text);
  background: #e9eef5;
}

.legal-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px max(18px, calc((100vw - 900px) / 2));
  color: white;
  background: rgba(5,13,25,.96);
}

.legal-topbar a,
.legal-topbar button {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: white;
  background: rgba(255,255,255,.07);
  text-decoration: none;
  font-weight: 800;
}

.legal-document {
  width: min(calc(100% - 28px), 900px);
  margin: 30px auto 60px;
  padding: clamp(24px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.legal-logo {
  width: min(420px, 82%);
  max-height: 220px;
  display: block;
  object-fit: contain;
  margin: 0 auto 22px;
}

.legal-document > h1 {
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 1.03;
  text-align: center;
}

.legal-subtitle {
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

.legal-document section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  margin: 0 0 14px;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.legal-document h3 {
  margin: 22px 0 10px;
  color: var(--navy-800);
}

.legal-document p,
.legal-document li {
  color: #45546a;
  line-height: 1.72;
}

.legal-document a {
  color: #0e4fb3;
}

.legal-signature {
  padding-bottom: 4px !important;
}

.legal-note {
  margin-top: 28px;
  padding: 14px 16px;
  border-radius: 14px;
  color: #5d4a18 !important;
  background: #fff6d8;
  font-size: .9rem;
}

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

  .video-feature {
    grid-template-columns: 1fr;
  }

  .video-copy {
    text-align: center;
  }
}

@media (max-width: 620px) {
  .policy-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .legal-topbar {
    align-items: stretch;
    flex-direction: column;
  }
}

@media print {
  .legal-topbar {
    display: none;
  }

  .legal-page {
    background: white;
  }

  .legal-document {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .legal-document section {
    break-inside: avoid;
  }
}


/* ===== Identidad e iconografía v1.3 ===== */
.quick-icon svg,
.social-initial svg,
.service-icon svg,
.button-icon svg { width: 24px; height: 24px; fill: currentColor; display: block; }

.button-icon { display:inline-flex; align-items:center; margin-right:8px; vertical-align:middle; }
.button-icon svg { width:18px; height:18px; }

.service-card {
  isolation:isolate;
  min-height:310px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background-image: linear-gradient(180deg, rgba(3,10,22,.16) 0%, rgba(3,10,22,.90) 72%), var(--service-bg);
  background-size:cover;
  background-position:center;
  box-shadow:0 20px 45px rgba(0,0,0,.22);
}
.service-card::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(135deg, rgba(10,37,72,.15), rgba(0,0,0,.12));
}
.service-overlay { position:absolute; inset:0; z-index:-1; background:linear-gradient(180deg, transparent 25%, rgba(3,10,22,.92) 100%); }
.service-content { position:relative; z-index:2; }
.service-icon { position:absolute; top:20px; left:20px; z-index:2; color:var(--navy-950); }
.service-card h3 { margin:0 0 11px; font-size:1.38rem; text-shadow:0 2px 10px rgba(0,0,0,.55); }
.service-card p { color:#eef4fb; text-shadow:0 2px 9px rgba(0,0,0,.7); }
.service-card:hover { background-position:center 45%; }

.social-initial { color:white; }
.social-initial svg { width:25px; height:25px; }

.contact-buttons .button { display:inline-flex; align-items:center; justify-content:center; }

footer p:empty { display:none; }
