.elementor-392 .elementor-element.elementor-element-3a60a388{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-392 .elementor-element.elementor-element-3a60a388:not(.elementor-motion-effects-element-type-background), .elementor-392 .elementor-element.elementor-element-3a60a388 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-392 .elementor-element.elementor-element-c9d39db{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-c9d39db *//* ════════════════════════════════════════════
   THE CASE PROJECT — HEADER
   Pegar en: Elementor → Custom CSS (Pro) o
             Apariencia → Personalizar → CSS adicional
════════════════════════════════════════════ */

#header-flotante {
  --orange: #d57814;
  --orange-soft: #e88a26;
  --red: #dc1018;
  --red-soft: #f02530;
  --bg-header: rgba(20,20,20,0.97);
  --radius: 33px;
  font-family: 'Outfit', sans-serif;
}

#header-flotante,
#header-flotante *,
#header-flotante *::before,
#header-flotante *::after {
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

/* ════════════════════════════════════════════
   HEADER FLOTANTE
════════════════════════════════════════════ */
#header-flotante {
  position: fixed;
  top: 25px;
  left: 50px;
  right: 50px;
  z-index: 9999;
  background: var(--bg-header);
  box-shadow: 0 4px 20px rgba(213,120,20,0.30);
  border-radius: var(--radius);
  overflow: visible;
  transition: top 0.3s, box-shadow 0.3s;
}
#header-flotante.scrolled {
  top: 12px;
  box-shadow: 0 4px 30px rgba(220,16,24,0.40);
}

#header-flotante .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 24px;
  transition: padding 0.3s;
}
#header-flotante.scrolled .header-container { padding: 6px 24px; }

/* ── LOGO + SLOGAN ── */
#header-flotante .logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
#header-flotante .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.25s;
}
#header-flotante .logo-link:hover { transform: scale(1.04); }
#header-flotante .logo-img {
  height: 58px;
  width: auto;
  display: block;
  transition: height 0.25s, filter 0.25s;
}
#header-flotante .logo-link:hover .logo-img {
  filter: drop-shadow(0 0 10px rgba(220,16,24,0.4));
}
#header-flotante.scrolled .logo-img { height: 46px; }

#header-flotante .logo-tagline {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
  transition: font-size 0.25s, opacity 0.25s;
}
#header-flotante .logo-tagline-accent {
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
#header-flotante.scrolled .logo-tagline {
  font-size: 14px;
}

/* ── MENÚ ── */
#header-flotante .menu-principal ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 28px;
  margin: 0;
  padding: 0;
  align-items: center;
}
#header-flotante .menu-principal ul li { position: relative; }
#header-flotante .menu-principal ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  cursor: pointer;
}
#header-flotante .menu-principal ul li a:hover,
#header-flotante .menu-principal ul li a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* ── DERECHA ── */
#header-flotante .header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* ── CTA: degradado rojo→naranja ── */
#header-flotante .btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(220,16,24,0.35);
  transition: transform 0.2s, box-shadow 0.25s;
  overflow: hidden;
}
#header-flotante .btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
#header-flotante .btn-cta-text,
#header-flotante .btn-arrow {
  position: relative;
  z-index: 1;
}
#header-flotante .btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(220,16,24,0.55);
}
#header-flotante .btn-cta:hover::before { opacity: 1; }
#header-flotante .btn-arrow {
  font-size: 14px;
  transition: transform 0.25s;
}
#header-flotante .btn-cta:hover .btn-arrow {
  transform: translateX(4px);
}

/* ── HAMBURGUESA MOBILE ── */
#header-flotante .menu-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
#header-flotante .menu-mobile-toggle span {
  width: 22px;
  height: 2.5px;
  background: var(--orange);
  display: block;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
  transform-origin: center;
}
#header-flotante .menu-mobile-toggle.open span { background: var(--red); }
#header-flotante .menu-mobile-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
#header-flotante .menu-mobile-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
#header-flotante .menu-mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@keyframes thecase-dropdownAnim {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════
   TABLET ≤ 1200px — ocultamos slogan para
   evitar que el header se rompa
════════════════════════════════════════════ */
@media (max-width: 1200px) {
  #header-flotante .logo-tagline { display: none; }
}

/* ════════════════════════════════════════════
   MOBILE ≤ 992px
════════════════════════════════════════════ */
@media (max-width: 992px) {

  #header-flotante { left: 16px; right: 16px; top: 16px; }
  #header-flotante .menu-mobile-toggle { display: flex; }

  /* CTA reducido en móvil */
  #header-flotante .btn-cta {
    height: 38px;
    padding: 0 16px;
    font-size: 12px;
  }
  #header-flotante .btn-cta-text { display: none; }
  #header-flotante .btn-cta::after {
    content: "Download";
    position: relative;
    z-index: 1;
    font-weight: 600;
  }

  #header-flotante nav.menu-principal {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(15,17,23,0.99);
    border-radius: 20px;
    border: 1px solid rgba(213,120,20,0.20);
    box-shadow: 0 8px 28px rgba(213,120,20,0.22);
    padding: 10px 0;
    display: none;
    z-index: 9997;
    overflow: hidden;
  }
  #header-flotante nav.menu-principal.open {
    display: block;
    animation: thecase-dropdownAnim 0.25s ease forwards;
  }

  #header-flotante nav.menu-principal > ul {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
    width: 100%;
  }
  #header-flotante nav.menu-principal > ul > li { width: 100%; }
  #header-flotante nav.menu-principal > ul > li > a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    width: 100% !important;
    padding: 14px 22px !important;
    font-size: 15px !important;
    font-weight: 500;
    color: #fff !important;
    text-decoration: none;
    border-bottom: none !important;
    border-radius: 0;
    white-space: normal !important;
    transition: background 0.15s, color 0.15s;
  }
  #header-flotante nav.menu-principal > ul > li > a:hover,
  #header-flotante nav.menu-principal > ul > li > a.active {
    background: rgba(213,120,20,0.10) !important;
    color: var(--orange) !important;
    border-bottom-color: transparent !important;
  }
  #header-flotante nav.menu-principal > ul > li + li > a {
    border-top: 1px solid rgba(213,120,20,0.08) !important;
  }
}

/* ════════════════════════════════════════════
   MOBILE pequeño ≤ 480px
════════════════════════════════════════════ */
@media (max-width: 480px) {
  #header-flotante .header-container { padding: 8px 14px; gap: 10px; }
  #header-flotante .logo-img { height: 48px; }
  #header-flotante.scrolled .logo-img { height: 40px; }
  #header-flotante .btn-cta { height: 36px; padding: 0 14px; font-size: 11px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5253f89 *//* =========================================================
   GLOBAL RESET — eliminar bordes blancos del body/page
========================================================= */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  background: #0a0a0a !important;
}

/* Para WordPress / Elementor: sacar paddings de contenedores típicos */
.page,
.site,
.site-content,
.site-main,
.entry-content,
.elementor,
.elementor-section-wrap,
.elementor-section,
.elementor-container {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
}

/* =========================================================
   CERTIFICATE PAGE — FULL SCREEN
========================================================= */
.tcp-cert {
  --bg: #0a0a0a;
  --bg-soft: #141414;
  --ink: #f5f5f5;
  --ink-dim: rgba(245,245,245,0.7);
  --orange: #d57814;
  --orange-soft: #e88a26;
  --red: #dc1018;
  --red-soft: #f02530;
  --accent-gradient: linear-gradient(135deg, #dc1018 0%, #d57814 100%);
  --display: "Outfit", system-ui, sans-serif;

  position: relative;
  width: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(220,16,24,0.10) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(213,120,20,0.10) 0%, transparent 45%),
    var(--bg);
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: 80px;
  font-family: var(--display);
}

.tcp-cert,
.tcp-cert *,
.tcp-cert *::before,
.tcp-cert *::after {
  box-sizing: border-box;
}

/* =========================================================
   PELOTAS DECORATIVAS
========================================================= */
.deco-ball {
  position: absolute;
  width: 380px;
  height: auto;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
  animation: spinBall 22s linear infinite;
}

.deco-ball--basket { top: -120px; left: -120px; }
.deco-ball--soccer { bottom: -120px; right: -120px; animation-direction: reverse; }

@keyframes spinBall {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* =========================================================
   CONTENIDO
========================================================= */
.tcp-cert__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 32px;
}

/* =========================================================
   HEADER
========================================================= */
.page-header { text-align: center; margin-bottom: 60px; }

.page-header h1 {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 24px;
}

.page-header h1 span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-header .lede {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 620px;
  margin: 0 auto;
}

/* =========================================================
   STEPS
========================================================= */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }

.step {
  position: relative;
  padding: 28px 0 28px 72px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 28px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  background: var(--accent-gradient);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(220,16,24,0.35);
}

.step:last-child { border-bottom: none; }

.step h3 {
  font-family: var(--display);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.step p { font-size: 15px; line-height: 1.6; color: var(--ink-dim); margin: 0; }

.step code {
  background: rgba(213,120,20,0.15);
  color: var(--orange-soft);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.92em;
  font-family: 'Outfit', monospace;
}

.step strong { color: var(--ink); }

/* =========================================================
   INFO TRIGGER
========================================================= */
.info-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  background: transparent;
  border: 1.5px solid var(--orange);
  border-radius: 33px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.25s, transform 0.2s, box-shadow 0.25s, border-color 0.25s;
}

.info-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}

.info-trigger .plus { position: relative; z-index: 1; font-size: 16px; line-height: 1; }

.info-trigger:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(220,16,24,0.45);
}

.info-trigger:hover::before { opacity: 1; }

/* =========================================================
   APP BUTTONS
========================================================= */
.app-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 50px;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  min-width: 180px;
}

.app-btn:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(213,120,20,0.35);
}

.app-btn__icon { width: 28px; height: 28px; flex-shrink: 0; }

.app-btn__text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }

.app-btn__small {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.app-btn__big { font-size: 17px; font-weight: 700; letter-spacing: 0.01em; color: #fff; }

/* =========================================================
   PAGE TAGLINE (antes era footer interno)
========================================================= */
.page-tagline {
  margin-top: 40px;
  text-align: center;
  font-family: var(--display);
}

.page-tagline__text {
  display: block;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page-tagline__mark {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================================
   FOOTER GLOBAL — full width, sin margins
========================================================= */
#tc-footer {
  --orange: #d57814;
  --orange-soft: #e88a26;
  --red: #dc1018;
  --red-soft: #f02530;
  --bg-footer: #141414;

  position: relative;
  margin: 0;
  padding: 32px 50px 24px;
  background: var(--bg-footer);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

#tc-footer,
#tc-footer *,
#tc-footer *::before,
#tc-footer *::after {
  box-sizing: border-box;
}

#tc-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--red) 30%,
    var(--orange) 70%,
    transparent 100%);
  opacity: 0.6;
}

#tc-footer .tc-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

#tc-footer .tc-footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

#tc-footer .tc-footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

#tc-footer .tc-footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.25s, filter 0.25s;
}

#tc-footer .tc-footer-logo img {
  height: 56px;
  width: auto;
  display: block;
  transition: filter 0.25s;
}

#tc-footer .tc-footer-logo:hover { transform: scale(1.04); }
#tc-footer .tc-footer-logo:hover img {
  filter: drop-shadow(0 0 10px rgba(220,16,24,0.4));
}

#tc-footer .tc-tagline-text {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
}

#tc-footer .tc-tagline-accent {
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

#tc-footer .tc-footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 22px;
  align-items: center;
}

#tc-footer .tc-footer-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

#tc-footer .tc-footer-menu a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

#tc-footer .tc-footer-divider {
  height: 1px;
  margin: 22px 0 18px 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(213,120,20,0.25) 50%,
    transparent 100%);
}

#tc-footer .tc-footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

#tc-footer .tc-footer-legal {
  justify-self: start;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

#tc-footer .tc-footer-legal a {
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

#tc-footer .tc-footer-legal a:hover { color: var(--orange); }

#tc-footer .tc-sep {
  color: rgba(213,120,20,0.4);
  font-size: 12px;
  user-select: none;
}

#tc-footer .tc-footer-copy {
  justify-self: center;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  text-align: center;
}

#tc-footer .tc-footer-dev {
  justify-self: end;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

#tc-footer .tc-footer-dev a {
  text-decoration: none;
  color: var(--orange);
  font-weight: 600;
  transition: color 0.2s, text-shadow 0.2s;
}

#tc-footer .tc-footer-dev a:hover {
  color: var(--red);
  text-shadow: 0 0 8px rgba(220,16,24,0.4);
}

/* =========================================================
   MODAL
========================================================= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 99999;
  animation: fadeIn 0.25s ease;
}

.modal-backdrop.is-open { display: flex; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  position: relative;
  background: #ffffff;
  padding: 44px 40px 36px;
  max-width: 480px;
  width: 100%;
  border-radius: 20px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  color: #1a1a1a;
  font-family: var(--display);
  animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
  border: none;
  color: #555;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.modal-close:hover {
  background: var(--accent-gradient);
  color: #fff;
  transform: rotate(90deg);
}

.modal-body h2 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
  color: #1a1a1a;
}

.modal-body p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 14px;
}

.modal-body strong { color: #1a1a1a; font-weight: 700; }

/* =========================================================
   HANGTAG
========================================================= */
.hangtag-wrap {
  margin: 24px 0 18px;
  text-align: center;
}

.hangtag-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}

.hangtag {
  position: relative;
  display: inline-block;
  padding-top: 28px;
}

.hangtag__string {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 38px;
  background: linear-gradient(to bottom, transparent 0%, #1a1a1a 20%, #1a1a1a 100%);
  transform: translateX(-50%) rotate(-3deg);
  transform-origin: top center;
  z-index: 1;
}

.hangtag__string::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  background: transparent;
  transform: translateX(-50%);
}

.hangtag__card {
  position: relative;
  width: 240px;
  padding: 28px 22px 18px;
  background: #faf7f0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0,0,0,0.025) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.02) 0%, transparent 50%);
  border-radius: 6px;
  box-shadow:
    0 12px 30px rgba(0,0,0,0.25),
    0 4px 8px rgba(0,0,0,0.15),
    inset 0 0 0 1px rgba(0,0,0,0.06);
  transform: rotate(-2deg);
  transform-origin: top center;
  z-index: 2;
}

.hangtag__hole {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #f5f5f5;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.4),
    0 0 0 2px #c9c2b0;
}

.hangtag__top {
  text-align: center;
  margin-bottom: 14px;
}

.hangtag__brand {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.hangtag__divider {
  width: 36px;
  height: 2px;
  background: var(--accent-gradient);
  margin: 0 auto 6px;
}

.hangtag__sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #888;
  text-transform: uppercase;
}

.holo {
  position: relative;
  padding: 14px 12px 12px;
  border-radius: 8px;
  background:
    linear-gradient(115deg,
      #b8b8b8 0%,
      #f0f0f0 12%,
      #d57814 28%,
      #fff5e6 42%,
      #dc1018 58%,
      #ffe0e0 72%,
      #b8b8b8 88%,
      #f0f0f0 100%);
  background-size: 220% 220%;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.5),
    inset 0 -2px 4px rgba(0,0,0,0.08),
    0 2px 6px rgba(0,0,0,0.15);
  overflow: hidden;
  margin-bottom: 14px;
  animation: holoShift 4s ease-in-out infinite;
}

@keyframes holoShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.holo__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255,255,255,0.6) 50%,
    transparent 70%
  );
  animation: shineMove 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shineMove {
  0%, 100% { transform: translateX(-70%); }
  50%      { transform: translateX(70%); }
}

.holo__label {
  position: relative;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);
  text-align: center;
  margin-bottom: 4px;
}

.holo__code {
  position: relative;
  font-family: 'Outfit', monospace;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-align: center;
  color: #1a1a1a;
  text-shadow: 0 1px 0 rgba(255,255,255,0.6);
}

.hangtag__bottom { text-align: center; }

.hangtag__bars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}

.hangtag__bars span {
  display: block;
  width: 2px;
  height: 22px;
  background: #1a1a1a;
}

.hangtag__bars span:nth-child(2n) { width: 1px; height: 18px; }
.hangtag__bars span:nth-child(3n) { width: 3px; }
.hangtag__bars span:nth-child(5n) { width: 1px; }
.hangtag__bars span:nth-child(7n) { width: 2px; height: 20px; }

.hangtag__serial {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #555;
  text-transform: uppercase;
}

.modal-note {
  margin-top: 18px !important;
  padding: 12px 16px;
  background: rgba(213, 120, 20, 0.10);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  font-size: 13px !important;
  color: #4a4a4a !important;
}

.modal-note strong { color: #1a1a1a; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1200px) {
  .deco-ball { width: 320px; opacity: 0.45; }
  .deco-ball--basket { top: -90px; left: -90px; }
  .deco-ball--soccer { bottom: -90px; right: -90px; }
}

@media (max-width: 992px) {
  .tcp-cert { padding-top: 110px; padding-bottom: 60px; }
  .deco-ball { width: 260px; opacity: 0.4; }
  .deco-ball--basket { top: -70px; left: -70px; }
  .deco-ball--soccer { bottom: -70px; right: -70px; }
  .tcp-cert__inner { padding: 32px 24px; }
  .page-header { margin-bottom: 48px; }
  .app-buttons { margin-top: 40px; }

  /* Footer responsive */
  #tc-footer { padding: 28px 22px 20px; }
  #tc-footer .tc-footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }
  #tc-footer .tc-footer-brand { justify-content: center; }
  #tc-footer .tc-footer-menu {
    justify-content: center;
    gap: 6px 18px;
  }
  #tc-footer .tc-footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }
  #tc-footer .tc-footer-legal,
  #tc-footer .tc-footer-copy,
  #tc-footer .tc-footer-dev {
    justify-self: center;
  }
  #tc-footer .tc-footer-legal { justify-content: center; }
}

@media (max-width: 768px) {
  .deco-ball { width: 200px; opacity: 0.35; }
  .deco-ball--basket { top: -50px; left: -50px; }
  .deco-ball--soccer { bottom: -50px; right: -50px; }
  .step { padding: 24px 0 24px 60px; }
  .step::before { width: 40px; height: 40px; font-size: 14px; top: 24px; }
  .app-btn { min-width: 0; padding: 10px 18px; }
  .app-btn__big { font-size: 15px; }
}

@media (max-width: 480px) {
  .tcp-cert { padding-top: 100px; padding-bottom: 50px; }
  .deco-ball { width: 150px; opacity: 0.3; }
  .deco-ball--basket { top: -40px; left: -40px; }
  .deco-ball--soccer { bottom: -40px; right: -40px; }
  .tcp-cert__inner { padding: 20px 18px; }
  .page-header { margin-bottom: 36px; }
  .step { padding: 20px 0 20px 52px; }
  .step::before { width: 36px; height: 36px; font-size: 13px; top: 20px; }
  .app-buttons { gap: 12px; margin-top: 32px; }
  .app-btn { width: 100%; max-width: 260px; justify-content: center; }
  .modal { padding: 40px 24px 28px; }
  .modal-body h2 { font-size: 19px; }
  .hangtag__card { width: 210px; padding: 24px 18px 16px; }
  .holo__code { font-size: 22px; letter-spacing: 0.15em; }
  .page-tagline { margin-top: 32px; }

  /* Footer mobile */
  #tc-footer { padding: 24px 18px 18px; }
  #tc-footer .tc-footer-brand {
    flex-direction: column;
    gap: 10px;
  }
  #tc-footer .tc-footer-logo img { height: 48px; }
  #tc-footer .tc-tagline-text { font-size: 15px; white-space: normal; }
  #tc-footer .tc-footer-menu {
    flex-direction: column;
    gap: 10px;
  }
  #tc-footer .tc-footer-menu a {
    font-size: 14px;
    padding: 4px 0;
  }
  #tc-footer .tc-footer-legal {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 8px;
  }
  #tc-footer .tc-footer-legal a { font-size: 11px; }
  #tc-footer .tc-footer-copy,
  #tc-footer .tc-footer-dev { font-size: 11px; }
}/* End custom CSS */