:root {
  color-scheme: light;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: #f4f7fa;
}

.site-header,
.site-branding,
.custom-logo-link,
.page-header,
.entry-title,
.wp-block-post-title {
  display: none !important;
}

.entry-content,
.wp-block-post-content,
.site-main,
main {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.exploreplus-premium-home {
  --blue: #438aae;
  --orange: #ef8224;
  --navy: #06233F;
  --ink: #102133;
  --muted: #647386;
  --line: #dbe6ed;
  --soft: #f4f8fb;
  --blue-soft: #e9f5fa;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(6, 35, 63, .08);
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow: hidden;
}

.exploreplus-premium-home *,
.exploreplus-premium-home *::before,
.exploreplus-premium-home *::after {
  box-sizing: border-box;
}

.exploreplus-premium-home a {
  color: inherit;
  text-decoration: none;
}

.exploreplus-premium-home img,
.exploreplus-premium-home svg {
  display: block;
}

.ep-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.ep-skip-link {
  position: fixed;
  z-index: 9999;
  top: -80px;
  left: 18px;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--orange);
  font-weight: 800;
  transition: top .2s ease;
}

.ep-skip-link:focus {
  top: 14px;
}

.ep-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.ep-btn-orange {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 16px 32px rgba(239, 130, 36, .28);
}

.ep-btn-orange:hover,
.ep-btn-orange:focus-visible {
  background: #d96d11;
  transform: translateY(-2px);
}

.ep-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.ep-header .ep-container {
  width: min(1380px, calc(100% - 36px));
}

.ep-nav {
  display: grid;
  grid-template-columns: 128px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 96px;
}

.ep-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.ep-logo img {
  width: 104px;
  height: 76px;
  object-fit: contain;
  object-position: center;
}

.ep-logo-fallback {
  display: none;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.ep-menu {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 700;
}

.ep-menu .nav-link {
  position: relative;
  white-space: nowrap;
}

.ep-menu .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  transform: translateX(-50%);
  transition: width .25s ease;
}

.ep-menu .nav-link:hover::after,
.ep-menu .nav-link:focus-visible::after {
  width: 28px;
}

.ep-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.ep-langs {
  display: flex;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
}

.ep-langs a {
  opacity: .68;
  transition: opacity .2s ease, color .2s ease;
}

.ep-langs a:hover,
.ep-langs a:focus-visible,
.ep-langs a.is-active {
  color: var(--orange);
  opacity: 1;
}

.ep-socials {
  display: flex;
  gap: 7px;
}

.ep-socials a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  transition: transform .22s ease, background .22s ease, color .22s ease;
}

.ep-socials a:hover,
.ep-socials a:focus-visible {
  color: var(--navy);
  background: #fff;
  transform: translateY(-2px);
}

.ep-socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.ep-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: transparent;
  color: #fff;
}

.ep-menu-toggle span,
.ep-menu-toggle::before,
.ep-menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.ep-menu-toggle.is-open span {
  opacity: 0;
}

.ep-menu-toggle.is-open::before {
  transform: translateY(6px) rotate(45deg);
}

.ep-menu-toggle.is-open::after {
  transform: translateY(-6px) rotate(-45deg);
}

.ep-mobile-socials {
  display: none;
}

.terms-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 430px;
  padding: 132px 0 74px;
  overflow: hidden;
  color: #fff;
  background: #06233F;
}

.terms-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(67, 138, 174, .2), transparent 42%),
    linear-gradient(90deg, rgba(239, 130, 36, .1), transparent 30%),
    #06233F;
}

.terms-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.terms-hero__mark {
  position: absolute;
  right: clamp(22px, 7vw, 110px);
  bottom: 34px;
  width: min(330px, 42vw);
  height: 150px;
  border: 1px solid rgba(239, 130, 36, .35);
  border-left: 8px solid var(--orange);
  opacity: .75;
  transform: skewX(-10deg);
}

.terms-hero__mark::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(67, 138, 174, .5);
}

.terms-hero__inner {
  position: relative;
  z-index: 2;
}

.terms-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: #ffb06e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.terms-eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.terms-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 6vw, 74px);
  line-height: .98;
  letter-spacing: -.045em;
}

.terms-hero__subtitle {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
}

.terms-hero__date {
  display: inline-flex;
  margin: 18px 0 0;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .06);
  font-size: 12px;
  font-weight: 800;
}

.terms-main {
  padding: 58px 0 86px;
  background:
    linear-gradient(180deg, #f3f8fb 0%, #fff 42%, #f6f9fb 100%);
}

.terms-shell {
  display: grid;
  gap: 26px;
}

.benefit-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(239, 130, 36, .38);
  border-left: 8px solid var(--orange);
  border-radius: 18px;
  background:
    linear-gradient(135deg, #fff 0%, #f2f9fc 100%);
  box-shadow: var(--shadow);
}

.benefit-card__icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 18px;
  color: var(--orange);
  background: #fff3e9;
}

.benefit-card__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card__label {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.benefit-card h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(27px, 4vw, 44px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.benefit-card p:last-child {
  max-width: 820px;
  margin: 0;
  color: #4f6070;
  font-size: 16px;
  line-height: 1.75;
}

.quick-index {
  padding: 18px;
  border: 1px solid #deebf2;
  border-radius: 16px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 26px rgba(6, 35, 63, .05);
}

.quick-index p {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.quick-index__links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.quick-index__links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(67, 138, 174, .28);
  border-radius: 999px;
  color: #18364f;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  white-space: nowrap;
}

.quick-index__links a:hover,
.quick-index__links a:focus-visible {
  border-color: rgba(239, 130, 36, .7);
  background: #fff7f0;
  transform: translateY(-1px);
}

.terms-card-list {
  display: grid;
  gap: 18px;
}

.terms-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid #e0e9ef;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(6, 35, 63, .06);
  scroll-margin-top: 26px;
}

.terms-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  opacity: .88;
}

.terms-card__number {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}

.terms-card h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -.028em;
}

.terms-card p {
  margin: 0 0 14px;
  color: #4f6070;
  font-size: 16px;
  line-height: 1.78;
}

.terms-card p:last-child {
  margin-bottom: 0;
}

.terms-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
}

.terms-card li {
  position: relative;
  padding-left: 28px;
  color: #405363;
  font-size: 15px;
  line-height: 1.62;
}

.terms-card li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 4px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: #fff;
}

.terms-callout {
  display: grid;
  gap: 6px;
  margin: 18px 0;
  padding: 16px 18px;
  border-left: 5px solid var(--orange);
  border-radius: 12px;
  background: #edf7fb;
}

.terms-callout strong {
  color: var(--navy);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.terms-callout span {
  color: #3f5566;
  line-height: 1.64;
}

.terms-callout--strong {
  background: linear-gradient(135deg, #fff7f0, #eef8fc);
}

.terms-callout--strong strong {
  color: var(--orange);
  font-size: clamp(19px, 3vw, 26px);
  letter-spacing: 0;
}

.terms-callout--warning {
  background: #fff6ec;
}

.terms-callout--soft {
  background: #f2f8fb;
}

.official-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.official-grid a,
.official-grid div {
  min-width: 0;
  padding: 16px;
  border: 1px solid #deebf2;
  border-radius: 14px;
  background: #f8fbfd;
}

.official-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.official-grid strong {
  display: block;
  color: #18364f;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.terms-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(26px, 5vw, 46px);
  border-radius: 20px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(239, 130, 36, .14), transparent 26%),
    linear-gradient(135deg, #083052, #06233F 62%, #0d4b71);
  box-shadow: 0 24px 60px rgba(6, 35, 63, .18);
}

.terms-cta h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.terms-cta .terms-eyebrow {
  margin-bottom: 12px;
}

.terms-cta__button {
  flex: 0 0 auto;
  min-width: 190px;
}

.ep-footer {
  position: relative;
  padding: 70px 0 26px;
  overflow: hidden;
  color: rgba(255, 255, 255, .68);
  background: radial-gradient(circle at 50% 0, rgba(67, 138, 174, .18), transparent 36%), linear-gradient(145deg, #031522, #06233f 62%, #041b30);
}

.ep-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: radial-gradient(circle at 20% 30%, #438aae 1px, transparent 1.5px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, transparent, #000 35%, transparent 75%);
}

.ep-footer .ep-container {
  position: relative;
  width: min(1520px, calc(100% - 48px));
}

.ep-footer-main {
  display: grid;
  grid-template-columns: 1.25fr .82fr 1fr 1.18fr;
  gap: 0;
  padding: 30px;
  border: 1px solid rgba(67, 138, 174, .35);
  border-radius: 26px;
  background: rgba(3, 21, 34, .38);
  box-shadow: inset 0 0 42px rgba(67, 138, 174, .05), 0 24px 60px rgba(0, 0, 0, .18);
}

.ep-footer-col {
  min-width: 0;
  padding: 10px clamp(22px, 2.4vw, 40px);
  border-left: 1px solid rgba(67, 138, 174, .22);
}

.ep-footer-col:first-child {
  padding-left: 10px;
  border-left: 0;
}

.ep-footer-logo img {
  width: 148px;
  height: 108px;
  object-fit: contain;
  object-position: left;
}

.ep-footer-brand p {
  max-width: 330px;
  margin: 10px 0 22px;
  font-size: 12px;
  line-height: 1.7;
}

.ep-footer h4 {
  position: relative;
  margin: 5px 0 25px;
  color: #fff;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ep-footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
}

.ep-footer-links {
  display: grid;
  gap: 12px;
  font-size: 12px;
}

.ep-footer-links a,
.ep-footer-links span {
  transition: color .2s ease;
}

.ep-footer a:hover,
.ep-footer a:focus-visible {
  color: #8fd3f2;
}

.ep-footer-wa {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(67, 138, 174, .32);
  border-radius: 15px;
  background: rgba(67, 138, 174, .06);
}

.ep-footer-wa b {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
}

.ep-footer-wa svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.ep-footer-wa span {
  display: block;
  color: #fff;
  font-size: 11px;
}

.ep-footer-wa small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .6);
  font-size: 10px;
}

.ep-newsletter-copy {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.65;
}

.ep-subscribe-fields {
  display: flex;
}

.ep-subscribe-fields input {
  min-width: 0;
  flex: 1;
  height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(67, 138, 174, .38);
  border-right: 0;
  border-radius: 10px 0 0 10px;
  outline: 0;
  color: #fff;
  background: rgba(255, 255, 255, .04);
}

.ep-subscribe-fields button {
  min-width: 118px;
  height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 0 10px 10px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff9c36);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.ep-subscribe-message {
  min-height: 20px;
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.ep-subscribe-message.success {
  color: #25d366;
}

.ep-subscribe-message.error {
  color: #ff8b8b;
}

.ep-footer-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(145px, 1fr)) 190px 190px;
  align-items: stretch;
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(67, 138, 174, .28);
  border-radius: 20px;
  background: rgba(3, 21, 34, .34);
}

.ep-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(67, 138, 174, .16);
  border-radius: 14px;
  background: rgba(67, 138, 174, .035);
}

.ep-trust-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  height: 42px;
  border: 1px solid rgba(67, 138, 174, .55);
  border-radius: 12px;
  color: #8fd3f2;
  background: rgba(67, 138, 174, .08);
}

.ep-trust-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ep-trust-item strong {
  display: block;
  color: #fff;
  font-size: 11px;
}

.ep-trust-item span {
  display: block;
  margin-top: 4px;
  font-size: 9px;
}

.ep-footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(67, 138, 174, .2);
  border-radius: 14px;
  background: rgba(67, 138, 174, .035);
}

.ep-footer-socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: #fff;
  transition: transform .22s ease, background .22s ease;
}

.ep-footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.ep-footer-socials a:hover,
.ep-footer-socials a:focus-visible {
  color: #fff;
  transform: translateY(-2px);
}

.ep-cadastur-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 76px;
  padding: 10px 16px;
  border: 1px dashed rgba(255, 255, 255, .32);
  border-radius: 14px;
  color: rgba(255, 255, 255, .56);
  background: rgba(255, 255, 255, .025);
  text-align: center;
}

.ep-cadastur-slot strong {
  color: #fff;
  font-size: 12px;
  letter-spacing: .1em;
}

.ep-cadastur-slot small {
  margin-top: 5px;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.ep-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  padding: 20px 8px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 10px;
}

.ep-float-wa {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
  transition: transform .25s ease;
}

.ep-float-wa::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 2px solid rgba(37, 211, 102, .58);
  border-radius: inherit;
  animation: ep-wa-ring 2.2s ease-out infinite;
}

.ep-float-wa:hover,
.ep-float-wa:focus-visible {
  transform: scale(1.07);
}

.ep-float-wa svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

@keyframes ep-wa-ring {
  0% {
    opacity: .8;
    transform: scale(.96);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.52);
  }
}

@media (max-width: 1180px) {
  .ep-nav {
    grid-template-columns: 112px 1fr auto;
  }

  .ep-actions .ep-socials {
    display: none;
  }

  .ep-menu {
    gap: 16px;
  }

  .ep-footer .ep-container {
    width: min(100% - 36px, 1180px);
  }

  .ep-footer-main {
    grid-template-columns: 1.15fr 1fr;
  }

  .ep-footer-col:nth-child(3),
  .ep-footer-news {
    margin-top: 18px;
    padding-top: 28px;
    border-top: 1px solid rgba(67, 138, 174, .2);
  }

  .ep-footer-col:nth-child(3) {
    border-left: 0;
  }

  .ep-footer-trust {
    grid-template-columns: repeat(2, 1fr) 190px 190px;
  }
}

@media (max-width: 860px) {
  .ep-container,
  .ep-header .ep-container {
    width: calc(100% - 28px);
  }

  .ep-nav {
    display: flex;
    justify-content: space-between;
    min-height: 76px;
  }

  .ep-logo img {
    width: 84px;
    height: 62px;
  }

  .ep-menu-toggle {
    display: block;
  }

  .ep-menu {
    position: absolute;
    z-index: 60;
    top: 76px;
    left: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: calc(100svh - 94px);
    padding: 14px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(6, 35, 63, .98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  .ep-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .ep-menu > a {
    width: 100%;
    min-height: 46px;
    padding: 13px;
    border-radius: 10px;
    text-align: center;
  }

  .ep-menu .nav-link::after {
    display: none;
  }

  .ep-mobile-socials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .ep-mobile-socials a {
    min-height: 38px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: rgba(255, 255, 255, .82);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .05em;
  }

  .terms-hero {
    min-height: 360px;
    padding: 104px 0 46px;
  }

  .terms-hero h1 {
    max-width: 680px;
  }

  .terms-hero__mark {
    right: -50px;
    bottom: 22px;
    width: 240px;
    height: 116px;
    opacity: .34;
  }

  .terms-main {
    padding: 38px 0 64px;
  }

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

  .quick-index__links {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .quick-index__links::-webkit-scrollbar {
    display: none;
  }

  .quick-index__links a {
    scroll-snap-align: start;
  }

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

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

  .terms-cta__button {
    width: 100%;
  }

  .ep-footer {
    padding-top: 54px;
  }

  .ep-footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .ep-footer-brand,
  .ep-footer-news {
    grid-column: 1 / -1;
  }

  .ep-footer-col:nth-child(2),
  .ep-footer-col:nth-child(3) {
    margin-top: 18px;
    padding-top: 28px;
    border-top: 1px solid rgba(67, 138, 174, .2);
  }

  .ep-footer-col:nth-child(2) {
    border-left: 0;
  }

  .ep-footer-col:nth-child(3) {
    border-left: 1px solid rgba(67, 138, 174, .22);
  }

  .ep-footer-trust {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .ep-container,
  .ep-header .ep-container,
  .ep-footer .ep-container {
    width: calc(100% - 24px);
  }

  .ep-actions {
    gap: 8px;
  }

  .ep-langs {
    gap: 5px;
    font-size: 9px;
  }

  .ep-menu-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .terms-hero {
    min-height: 330px;
    padding-top: 96px;
  }

  .terms-hero h1 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .terms-hero__subtitle {
    font-size: 17px;
    line-height: 1.38;
  }

  .terms-hero__date {
    align-items: center;
    min-height: 38px;
    font-size: 11px;
  }

  .terms-main {
    padding-top: 26px;
  }

  .benefit-card,
  .quick-index,
  .terms-card,
  .terms-cta {
    border-radius: 14px;
  }

  .benefit-card {
    gap: 16px;
    padding: 22px;
  }

  .benefit-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .benefit-card h2 {
    font-size: 28px;
  }

  .benefit-card p:last-child,
  .terms-card p {
    font-size: 15px;
    line-height: 1.68;
  }

  .terms-card {
    padding: 22px;
  }

  .terms-card h2 {
    font-size: 24px;
  }

  .terms-card li {
    font-size: 14px;
  }

  .terms-callout {
    padding: 14px;
    border-radius: 10px;
  }

  .terms-cta {
    padding: 26px 22px;
  }

  .terms-cta h2 {
    font-size: 31px;
  }

  .ep-footer-main {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 20px;
  }

  .ep-footer-brand,
  .ep-footer-news {
    grid-column: auto;
  }

  .ep-footer-col,
  .ep-footer-col:first-child,
  .ep-footer-col:nth-child(2),
  .ep-footer-col:nth-child(3) {
    margin: 0;
    padding: 22px 4px;
    border-left: 0;
    border-top: 1px solid rgba(67, 138, 174, .2);
  }

  .ep-footer-col:first-child {
    border-top: 0;
  }

  .ep-footer-logo img {
    width: 126px;
    height: 86px;
  }

  .ep-subscribe-fields {
    flex-direction: column;
    gap: 9px;
  }

  .ep-subscribe-fields input,
  .ep-subscribe-fields button {
    width: 100%;
    border: 1px solid rgba(67, 138, 174, .38);
    border-radius: 10px;
  }

  .ep-footer-trust {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .ep-footer-socials {
    justify-content: center;
  }

  .ep-footer-bottom {
    display: block;
    line-height: 1.5;
  }

  .ep-footer-bottom span {
    display: block;
    margin-top: 8px;
  }

  .ep-float-wa {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .ep-float-wa svg {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .exploreplus-premium-home *,
  .exploreplus-premium-home *::before,
  .exploreplus-premium-home *::after {
    animation: none !important;
    transition: none !important;
  }
}


.terms-hero h1,
.benefit-card h2,
.terms-card h2,
.terms-cta h2 {
  letter-spacing: 0;
}

.terms-hero h1 {
  max-width: 980px;
  font-size: 58px;
  line-height: 1.05;
}

.terms-hero__subtitle {
  max-width: 900px;
  line-height: 1.45;
}

.terms-hero__highlight {
  max-width: 960px;
  margin: 24px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-left: 5px solid var(--orange);
  border-radius: 14px;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .08);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.terms-card--intro h2 {
  margin-top: 0;
}

.terms-card h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

.terms-card a,
.benefit-card a {
  color: #0d638f;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(67, 138, 174, .28);
  text-underline-offset: 3px;
}

.terms-card a:hover,
.terms-card a:focus-visible,
.benefit-card a:hover,
.benefit-card a:focus-visible {
  color: var(--orange);
}

.terms-cta__copy {
  max-width: 780px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .terms-hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 600px) {
  .terms-hero h1 {
    font-size: 32px;
    line-height: 1.12;
  }

  .terms-hero__highlight {
    padding: 15px;
    font-size: 14px;
  }
}
