/* base.css — shared styles for all secondary pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #0d2220;
  overflow-x: clip;
}

p { text-align: justify; text-align-last: left; }

/* ── Animations ── */
@keyframes headerSlideIn {
  from { transform: translateY(-110%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
@keyframes ruleSweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes lineCharge {
  0%   { top: -40%; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { top: 140%; opacity: 0; }
}
@keyframes lineChargeH {
  0%   { left: -50%; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { left: 150%; opacity: 0; }
}
@keyframes titleLineCharge {
  0%   { background-position: -40% 0, 0 0; }
  100% { background-position: 140% 0, 0 0; }
}
@keyframes mobLinkIn {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes spinBorder {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes arcFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}
@keyframes glowRingIn {
  from { box-shadow: 0 0 0 2px rgba(49,147,145,0),    0 0  0px rgba(49,147,145,0); }
  to   { box-shadow: 0 0 0 2px rgba(49,147,145,0.95), 0 0 14px rgba(49,147,145,0.35); }
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%; z-index: 100;
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.45s ease, box-shadow 0.45s ease,
              backdrop-filter 0.45s ease, -webkit-backdrop-filter 0.45s ease;
  animation: headerSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.header.is-scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header__rule {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: rgba(255,255,255,0.18);
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.45s ease;
}

.header__rule::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.9) 50%, transparent 100%);
  animation: ruleSweep 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.header.is-scrolled .header__rule { opacity: 0; pointer-events: none; }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 48px;
  position: relative;
}

.header__logo-link { display: flex; align-items: center; }
.header__logo { height: 52px; width: auto; display: block; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header__nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  transition: color 0.35s ease, opacity 0.35s ease;
}

.header.is-scrolled .header__nav-link { color: #111; }
.header__nav-link:hover { opacity: 0.65; }
.header__nav-link--active { color: #fff; }
.header.is-scrolled .header__nav-link--active { color: #319391; }
.header__nav-link--events {
  color: #fff !important;
  background: rgba(49,147,145,0.18);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(49,147,145,0.4);
  transition: background 0.2s, border-color 0.2s !important;
}
.header__nav-link--events:hover {
  background: #319391 !important;
  border-color: #319391;
  opacity: 1 !important;
}
.header.is-scrolled .header__nav-link--events { color: #319391 !important; }
.header.is-scrolled .header__nav-link--events:hover { color: #fff !important; }

.header__actions { display: flex; align-items: center; gap: 12px; }

.header__cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 100px;
  transition: background 0.35s ease, border-color 0.35s ease,
              box-shadow 0.35s ease, transform 0.2s ease;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.header.is-scrolled .header__cta {
  background: #319391;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(49,147,145,0.4);
}

.header__cta:hover { background: rgba(255,255,255,0.30); transform: translateY(-2px); }
.header.is-scrolled .header__cta:hover {
  background: #267573;
  box-shadow: 0 6px 24px rgba(49,147,145,0.55);
}

/* ── Burger ── */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  z-index: 201; position: relative;
}

.header__burger-line {
  display: block;
  width: 100%; height: 1.5px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  position: relative; overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              opacity 0.25s ease, width 0.4s ease;
  transform-origin: center;
}

.header.is-scrolled .header__burger-line { background: rgba(0,0,0,0.15); }

.header__burger-line::after {
  content: '';
  position: absolute;
  top: 0; left: -50%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, #319391 50%, transparent);
  animation: lineChargeH 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.header__burger-line:nth-child(2)::after { animation-delay: 0.45s; }
.header__burger-line:nth-child(3)::after { animation-delay: 0.9s; }

.header__burger.is-open .header__burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open .header__burger-line:nth-child(2) { opacity: 0; width: 0; }
.header__burger.is-open .header__burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════ */
.mob-menu {
  position: fixed; inset: 0;
  z-index: 199;
  pointer-events: none;
  visibility: hidden;
}

.mob-menu.is-open { pointer-events: all; visibility: visible; }

.mob-menu__bg {
  position: absolute; inset: 0;
  background: #e8f5f5;
  clip-path: circle(0% at calc(100% - 38px) 26px);
  transition: clip-path 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-menu.is-open .mob-menu__bg { clip-path: circle(150% at calc(100% - 38px) 26px); }

.mob-menu__inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: 0 32px 40px;
  opacity: 0;
  transition: opacity 0.3s ease 0.2s;
}

.mob-menu.is-open .mob-menu__inner { opacity: 1; }

.mob-menu__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px; padding: 20px 0 0;
  flex-shrink: 0;
}

.mob-menu__logo { height: 46px; width: auto; }

.mob-menu__close {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(49,147,145,0.1);
  border: none; border-radius: 50%;
  color: #319391; cursor: pointer;
  transition: background 0.2s;
}

.mob-menu__close:hover { background: rgba(49,147,145,0.2); }

.mob-menu__nav {
  display: flex; flex-direction: column;
  flex: 1; justify-content: flex-start;
  gap: 0;
  overflow-y: auto;
  padding-top: 80px;
}

.mob-menu__link {
  display: flex; align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(49,147,145,0.75);
  text-decoration: none;
  padding: 11px 0;
  border-bottom: 1px solid rgba(49,147,145,0.12);
  opacity: 0;
  transition: color 0.2s, padding-left 0.2s;
}

.mob-menu__link:first-child { border-top: 1px solid rgba(49,147,145,0.12); }

.mob-menu.is-open .mob-menu__link {
  animation: mobLinkIn 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: calc(0.25s + var(--i) * 0.07s);
}

.mob-menu__link:hover,
.mob-menu__link:active { color: #319391; padding-left: 6px; }

.mob-menu__footer {
  display: flex; flex-direction: column;
  gap: 24px; flex-shrink: 0;
}

.mob-menu__cta {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; background: #319391;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 100px; text-align: center;
  transition: background 0.25s;
}

.mob-menu__cta:hover { background: #267573; }

.mob-menu__social {
  display: flex; gap: 20px; justify-content: center;
}

.mob-menu__social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  color: rgba(49,147,145,0.5);
  transition: color 0.2s;
}

.mob-menu__social a svg { width: 20px; height: 20px; }
.mob-menu__social a:hover { color: #319391; }

/* ══════════════════════════════════════
   SHARED UTILITIES
══════════════════════════════════════ */
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #319391; margin-bottom: 14px;
  display: block;
}

.section-eyebrow--light { color: rgba(255,255,255,0.6); }

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 32px;
  line-height: 1.1; letter-spacing: 0.04em;
  text-transform: uppercase; color: #319391;
  position: relative; padding-bottom: 22px; margin-bottom: 4px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 56px; height: 2px;
  border-radius: 2px;
  background:
    linear-gradient(to right, transparent, #319391 50%, transparent) no-repeat,
    rgba(49, 147, 145, 0.18);
  background-size: 40% 100%, 100% 100%;
  animation: titleLineCharge 2s linear infinite;
}

.section-title--light { color: #fff; }

.section-title--light::after {
  background:
    linear-gradient(to right, transparent, #fff 50%, transparent) no-repeat,
    rgba(255,255,255,0.2);
  background-size: 40% 100%, 100% 100%;
}

.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; background: #319391;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(49,147,145,0.4);
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: #267573;
  box-shadow: 0 6px 24px rgba(49,147,145,0.55);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   SEC-HEADER COMPONENT
══════════════════════════════════════ */
.sec-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 40px 36px 56px;
  max-width: 76%; margin: 0 auto;
  box-sizing: border-box;
}

.sec-header__left { flex: 0 0 auto; min-width: 0; }

.sec-header__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #319391; margin-bottom: 4px; display: block;
}

.sec-header__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.1; color: #319391;
  letter-spacing: 0.02em; text-transform: uppercase;
}

.sec-header__divider {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  padding: 0 6px;
}

.sec-header__line {
  width: 2px; height: 80px;
  background: rgba(49, 147, 145, 0.15);
  border-radius: 2px; position: relative; overflow: hidden;
}

.sec-header__line::after {
  content: '';
  position: absolute;
  left: 0; width: 100%; height: 40%;
  border-radius: 2px;
  background: linear-gradient(to bottom, transparent, #319391 50%, transparent);
  box-shadow: 0 0 10px rgba(49,147,145,0.7);
  animation: lineCharge 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.sec-header__right { flex: 0 0 auto; max-width: 540px; min-width: 0; }

.sec-header__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 300;
  line-height: 1.85; color: #555; max-width: 520px;
}

/* ══════════════════════════════════════
   GA PLECA
══════════════════════════════════════ */
.ga-pleca {
  background: #319391;
  padding: 40px 0 36px;
}

.ga-pleca fieldset {
  border: 1px solid rgba(255,255,255,0.3);
  width: 82%;
  margin: 0 auto;
  padding: 20px 24px 28px;
}

.ga-pleca legend {
  text-align: center;
  width: 18%;
  padding: 0;
}

.ga-pleca legend img {
  padding: 0 20px;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.ga-pleca .contmarcas {
  overflow: hidden;
  padding: 8px 0 0;
}

.ga-pleca .contmarcas div {
  width: calc(100% / 16);
  float: left;
  text-align: center;
  padding: 8px 0;
}

.ga-pleca .contmarcas div img {
  width: 50px !important;
  height: 50px;
  filter: brightness(0) invert(1) !important;
  object-fit: contain;
}

.ga-pleca .contmarcas div a {
  display: inline-block;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.ga-pleca .contmarcas div a:hover { opacity: 1; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: #319391;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 48px;
}

.footer__copy {
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
}

.footer__legal { display: flex; gap: 20px; }

.footer__legal a {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__legal a:hover { color: #fff; }

.footer__social { display: flex; gap: 12px; }

.footer__social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer__social a svg { width: 14px; height: 14px; }

.footer__social a:hover {
  background: #fff;
  border-color: #fff;
  color: #319391;
}

/* ══════════════════════════════════════
   MOBILE
══════════════════════════════════════ */
@media (max-width: 768px) {
  .header__inner { padding: 8px 20px; }
  .header__nav   { display: none; }
  .header__logo  { height: 36px; }
  .header__cta   { font-size: 9px; padding: 9px 14px; letter-spacing: 0.12em; }
  .header__burger { display: flex; }

  .sec-header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 40px 20px 28px;
    width: 100%; max-width: 100%;
    margin: 0 auto;
    text-align: center; text-align-last: center;
  }
  .sec-header__left { width: 100%; }
  .sec-header__right { flex: 0 0 auto; width: 100%; max-width: 100%; }
  .sec-header__divider { display: none; }
  .sec-header__desc { max-width: 100%; font-size: 14px; text-align: justify; hyphens: none; }
  .sec-header__title,
  .sec-header__eyebrow { text-align: center; text-align-last: center; }
  .sec-header__title { font-size: clamp(19px, 5.3vw, 26px); }

  .section-title {
    font-size: clamp(19px, 5.3vw, 26px) !important;
    text-wrap: balance;
    text-align: center; text-align-last: center;
  }
  .section-eyebrow { text-align: center; text-align-last: center; }

  .section-title::after { left: 50%; transform: translateX(-50%); }

  .btn-primary { margin-left: auto; margin-right: auto; }

  .ga-pleca { padding: 40px 12px 0; }

  .ga-pleca legend { text-align: center; width: 70%; }
  .ga-pleca fieldset { width: 92%; }
  .ga-pleca legend img { padding: 0 10px; width: 90%; }
  .ga-pleca .contmarcas div { width: calc(100% / 4) !important; float: left; text-align: center; }
  .ga-pleca .contmarcas div:last-child img { margin-top: 20% !important; }

  .footer__bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 20px 24px;
    gap: 10px;
  }

  body { padding-bottom: calc(100px + env(safe-area-inset-bottom)); }
}

/* ══════════════════════════════════════
   MOBILE BOTTOM NAV
══════════════════════════════════════ */
.app-nav { display: none; }

@media (max-width: 768px) {
  .app-nav {
    display: flex;
    position: fixed;
    bottom: calc(5px + env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 480px;
    z-index: 200;
    background: #0d2827;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow:
      0 12px 48px rgba(0,0,0,0.28),
      0 3px 10px rgba(0,0,0,0.18),
      inset 0 1px 0 rgba(255,255,255,0.06);
    padding: 7px 16px;
    justify-content: space-between;
    align-items: center;
  }

  .app-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color 0.3s, transform 0.2s;
    -webkit-tap-highlight-color: transparent;
    border-radius: 50px;
    flex: 1;
  }

  .app-nav__item--store {
    background: transparent;
    color: #fff !important;
    width: auto;
    height: auto;
    border-radius: 0;
    padding: 0;
    margin-top: -30px;
    flex: 0 0 60px;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
  }

  .app-nav__item--store .app-nav__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #071714;
    position: relative;
    overflow: hidden;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: glowRingIn 0.7s ease-out 1.5s forwards;
  }

  .app-nav__item--store .app-nav__icon::before {
    content: '';
    position: absolute;
    width: 150%; height: 150%;
    top: -25%; left: -25%;
    background: conic-gradient(
      from 0deg,
      transparent 0deg,
      transparent 305deg,
      rgba(49,147,145,0.15) 320deg,
      rgba(49,147,145,0.7) 338deg,
      #b2e8e7 348deg,
      #fff 353deg,
      transparent 360deg
    );
    animation:
      spinBorder 2s linear 1,
      arcFadeOut 0.7s ease-in 1.5s forwards;
  }

  .app-nav__item--store .app-nav__icon::after {
    content: '';
    position: absolute;
    inset: 2.5px;
    border-radius: 50%;
    background: #071714;
  }

  .app-nav__item--store .app-nav__label {
    display: block;
    position: relative;
    z-index: 1;
  }

  .app-nav__silla {
    width: 22px; height: 22px;
    filter: brightness(0) invert(1);
    object-fit: contain;
    position: relative;
    z-index: 1;
  }

  .app-nav__icon {
    width: 22px; height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
  }

  .app-nav__icon svg {
    width: 20px; height: 20px;
    stroke: currentColor;
    transition: stroke-width 0.2s;
  }

  .app-nav__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px; font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
  }

  .app-nav__item--active { color: #fff; }
  .app-nav__item--active .app-nav__icon { transform: translateY(-2px); }
  .app-nav__item--active .app-nav__icon svg { stroke-width: 2.2; stroke: #319391; }
  .app-nav__item--active .app-nav__label { color: #319391; }

  .app-nav__item:active { color: #fff; transform: scale(0.92); }

  body {
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
  }
}

/* ══════════════════════════════════════
   EVENTS MODAL
══════════════════════════════════════ */
.ev-modal {
  position: fixed; inset: 0;
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  pointer-events: none;
  visibility: hidden;
}

.ev-modal.is-open {
  pointer-events: all;
  visibility: visible;
}

.ev-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(7,23,20,0.75);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ev-modal.is-open .ev-modal__overlay { opacity: 1; }

.ev-modal__box {
  position: relative;
  background: #fff;
  border-radius: 24px;
  width: 100%; max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 44px 40px;
  box-shadow: 0 24px 80px rgba(7,23,20,0.35);
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.35s ease;
}

.ev-modal.is-open .ev-modal__box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.ev-modal__close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%; border: none;
  background: rgba(49,147,145,0.08);
  color: #319391; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.ev-modal__close:hover { background: rgba(49,147,145,0.18); }

.ev-modal__header { margin-bottom: 28px; }

.ev-modal__eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #319391; margin-bottom: 6px;
}

.ev-modal__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800; line-height: 1.1;
  text-transform: uppercase;
  color: #071712; margin-bottom: 8px;
}

.ev-modal__sub {
  font-size: 13px; font-weight: 300;
  color: #666; line-height: 1.6;
}

.ev-modal__form { display: flex; flex-direction: column; gap: 16px; }

.ev-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ev-modal__field {
  display: flex; flex-direction: column; gap: 6px;
}

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

.ev-modal__label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #333;
}

.ev-modal__input {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 400;
  color: #0d2220;
  border: 1.5px solid rgba(49,147,145,0.2);
  border-radius: 10px;
  padding: 11px 14px;
  background: #f7fafa;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.ev-modal__input:focus {
  border-color: #319391;
  box-shadow: 0 0 0 3px rgba(49,147,145,0.12);
  background: #fff;
}

.ev-modal__input::placeholder { color: #aaa; }

.ev-modal__select { cursor: pointer; }

.ev-modal__textarea {
  resize: vertical;
  min-height: 80px;
}

.ev-modal__submit {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; background: #319391;
  border: none; border-radius: 100px;
  padding: 15px 36px;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(49,147,145,0.4);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  margin-top: 4px;
}

.ev-modal__submit:hover {
  background: #267573;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(49,147,145,0.5);
}

.ev-modal__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 20px 0;
}

.ev-modal__success.is-visible { display: flex; }

.ev-modal__success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(49,147,145,0.1);
  display: flex; align-items: center; justify-content: center;
}

.ev-modal__success-title {
  font-size: 22px; font-weight: 800;
  text-transform: uppercase; color: #071712;
}

.ev-modal__success-msg {
  font-size: 14px; font-weight: 300;
  color: #555; line-height: 1.7; max-width: 360px;
}

@media (max-width: 600px) {
  .ev-modal__box { padding: 36px 24px 28px; border-radius: 20px; }
  .ev-modal__row { grid-template-columns: 1fr; }
}
