/* Hamburger menu styles */
/* Modern hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(24,27,34,0.85);
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  cursor: pointer;
  z-index: 30;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}
.hamburger:hover {
  background: rgba(24,27,34,0.95);
}
.hamburger .bar {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: var(--accent);
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.nav {
  transition: right 0.3s, opacity 0.3s;
}
@media (max-width: 840px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 70vw;
    max-width: 320px;
    height: 100vh;
    background: rgba(24,27,34,0.92);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
    opacity: 0;
    z-index: 20;
  }
  .nav.active {
    right: 0;
    opacity: 1;
  }
  .nav a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    margin: 0 0 18px 0;
    text-align: center;
    letter-spacing: 0.5px;
    transition: color 0.2s, text-shadow 0.2s;
  }
  .nav a:hover {
    color: #fff;
    text-shadow: 0 0 12px var(--accent);
  }
  .hamburger {
    display: flex;
    position: static;
    margin-left: 16px;
    margin-right: 0;
  }
  .lang-switch {
    margin-left: 16px;
  }
  .nav-wrap {
    position: relative;
  }
}
@media (max-width: 600px) {
  .nav {
    width: 90vw;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Space+Grotesk:wght@400;500;600&display=swap');

:root {
  color-scheme: light;
  --bg: #121318;
  --bg-alt: #181b22;
  --card: rgba(255, 255, 255, 0.07);
  --text: #f3f4f6;
  --muted: #b9bec9;
  --accent: #e8b04a;
  --accent-2: #f3e2bf;
  --stroke: rgba(255, 255, 255, 0.18);
  --shadow: 0 26px 56px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.bg-orbit {
  position: fixed;
  inset: -30% -30% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(245, 185, 66, 0.2), transparent 60%);
  filter: blur(10px);
  z-index: -1;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: rgba(15, 17, 21, 0.82);
  border-bottom: 1px solid var(--stroke);
  z-index: 10;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.site-header .logo {
  text-shadow: 0 0 10px rgba(245, 185, 66, 0.25);
  animation: glowPulse 3.2s ease-in-out infinite;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 500;
}

.nav a {
  position: relative;
  display: inline-block;
  padding: 6px 2px 8px;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
  outline: none;
  text-shadow: none;
}

.lang-switch {
  position: relative;
}

.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 27, 34, 0.6);
  color: var(--text);
  border: 1px solid var(--stroke);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.lang-current:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.lang-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--accent);
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: rgba(18, 19, 24, 0.92);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  z-index: 20;
}

.lang-switch.open .lang-menu {
  display: flex;
}

.lang-btn.lang-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--muted);
  border: 1px solid transparent;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.lang-btn[aria-pressed="true"] {
  background: var(--accent);
  color: #1b1302;
  border-color: transparent;
}

.lang-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.flag {
  display: inline-block;
  width: 18px;
  height: 12px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.flag-it {
  background: linear-gradient(90deg, #008c45 0 33%, #f4f5f0 33% 66%, #cd212a 66% 100%);
}

.flag-pt {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 12'><rect width='18' height='12' fill='%23009b3a'/><polygon points='9,1 17,6 9,11 1,6' fill='%23ffdf00'/><circle cx='9' cy='6' r='2.7' fill='%23002776'/></svg>");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.flag-en {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 12'><rect width='18' height='12' fill='%23b22234'/><g fill='%23ffffff'><rect y='1' width='18' height='1'/><rect y='3' width='18' height='1'/><rect y='5' width='18' height='1'/><rect y='7' width='18' height='1'/><rect y='9' width='18' height='1'/><rect y='11' width='18' height='1'/></g><rect width='8' height='7' fill='%233c3b6e'/><g fill='%23ffffff'><circle cx='1' cy='1' r='0.4'/><circle cx='3' cy='1' r='0.4'/><circle cx='5' cy='1' r='0.4'/><circle cx='7' cy='1' r='0.4'/><circle cx='2' cy='2' r='0.4'/><circle cx='4' cy='2' r='0.4'/><circle cx='6' cy='2' r='0.4'/><circle cx='1' cy='3' r='0.4'/><circle cx='3' cy='3' r='0.4'/><circle cx='5' cy='3' r='0.4'/><circle cx='7' cy='3' r='0.4'/><circle cx='2' cy='4' r='0.4'/><circle cx='4' cy='4' r='0.4'/><circle cx='6' cy='4' r='0.4'/><circle cx='1' cy='5' r='0.4'/><circle cx='3' cy='5' r='0.4'/><circle cx='5' cy='5' r='0.4'/><circle cx='7' cy='5' r='0.4'/></g></svg>");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero {
  padding: 80px 0 60px;
}

.reveal-stack > * {
  opacity: 0;
  transform: translateY(-18px);
  animation: textReveal 1.2s ease forwards;
}

.reveal-stack > *:nth-child(1) {
  animation-delay: 0.1s;
}

.reveal-stack > *:nth-child(2) {
  animation-delay: 0.3s;
}

.reveal-stack > *:nth-child(3) {
  animation-delay: 0.5s;
}

.reveal-stack > *:nth-child(4) {
  animation-delay: 0.7s;
}

.reveal-stack > *:nth-child(5) {
  animation-delay: 0.9s;
}

.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.6rem, 3.4vw, 3.6rem);
  line-height: 1.1;
  margin: 12px 0 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: #f0bf5c;
  margin: 0 0 8px;
  text-shadow: 0 0 16px rgba(232, 176, 74, 0.52), 0 0 28px rgba(232, 176, 74, 0.3);
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 26px 0 32px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #1b1302;
  box-shadow: 0 10px 30px rgba(245, 185, 66, 0.35);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
}

.btn-outline {
  border-color: transparent;
  color: var(--text);
  background: transparent;
  padding: 0;
}

.btn-ghost {
  border-color: transparent;
  color: var(--accent-2);
}

.hero-metrics {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  color: var(--muted);
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  transform-origin: center;
  animation: accordionPulse 2.8s ease-in-out infinite;
}

.hero-metrics strong {
  display: block;
  font-size: 1.4rem;
  color: var(--text);
  text-shadow: 0 0 14px rgba(245, 185, 66, 0.55), 0 0 24px rgba(245, 185, 66, 0.25);
  animation: numberGlow 2.8s ease-in-out infinite;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  animation: floatUp 1.2s ease, floatLoop 6s ease-in-out infinite;
}

.card-header,
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.status-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(224, 242, 255, 0.15);
  color: var(--accent-2);
  font-weight: 600;
}

.card-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: end;
  margin: 24px 0;
  height: 160px;
}

.bar {
  height: var(--h);
  background: linear-gradient(180deg, #f5b942 0%, rgba(245, 185, 66, 0.2) 100%);
  border-radius: 12px 12px 0 0;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section-title {
  max-width: 700px;
  margin-bottom: 40px;
}

.section-title h2 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.grid-2 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-3 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pricing {
  background: radial-gradient(circle at 20% 20%, rgba(245, 185, 66, 0.12), transparent 55%);
}

.pricing-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-card {
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(245, 185, 66, 0.35);
  background: linear-gradient(160deg, rgba(245, 185, 66, 0.12), rgba(15, 17, 21, 0.9));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 28px rgba(245, 185, 66, 0.18);
  animation: cardFloat 5.4s ease-in-out infinite;
}

.pricing-card:nth-child(2) {
  animation-delay: 0.5s;
}

.pricing-card:nth-child(3) {
  animation-delay: 1s;
}

.pricing-card.featured {
  border-color: rgba(245, 185, 66, 0.6);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4), 0 0 36px rgba(245, 185, 66, 0.35);
}

.pricing-tier {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-2);
  font-size: 0.78rem;
  margin: 0 0 10px;
}

.pricing-price {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 2.2rem;
  margin: 0 0 18px;
  color: var(--accent);
  text-shadow: 0 0 16px rgba(245, 185, 66, 0.35);
}

.pricing-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.pricing-list li::before {
  content: '•';
  color: var(--accent);
  margin-right: 8px;
}
.timeline {
  display: grid;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: var(--card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  align-items: center;
  min-height: 140px;
}

.step > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step span {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 700;
  text-shadow: 0 0 12px rgba(245, 185, 66, 0.55);
}

.step h4 {
  font-size: 1.6rem;
  text-shadow: 0 0 14px rgba(245, 185, 66, 0.35);
}

.step p {
  font-size: 1.02rem;
}

.step:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 185, 66, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.case {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 24px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--stroke);
}

.case-metric {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.case-metric strong {
  font-size: 1.7rem;
  color: var(--accent);
}

.case h3 {
  font-size: 1.05rem;
}

.case p {
  font-size: 0.98rem;
}

.case-metric span {
  font-size: 0.9rem;
  line-height: 1.4;
}

.card {
  padding: 26px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--stroke);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  animation: cardFloat 5.2s ease-in-out infinite;
}

.card:nth-child(2) {
  animation-delay: 0.4s;
}

.card:nth-child(3) {
  animation-delay: 0.8s;
}

.card h3 {
  margin-top: 0;
}

.tag {
  display: inline-flex;
  margin-top: auto;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-width: 160px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(245, 185, 66, 0.12);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 0 16px rgba(245, 185, 66, 0.35);
}


.contact {
  background: linear-gradient(120deg, rgba(245, 185, 66, 0.12), rgba(224, 242, 255, 0.08));
}

.contact-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 22px;
  align-items: start;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.contact-links {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.social-link {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid transparent;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.social-link svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.social-link.instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 10%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social-link.whatsapp {
  background: #25d366;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.35), 0 18px 32px rgba(0, 0, 0, 0.32);
  color: #ffffff;
}

.mini-card {
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(15, 17, 21, 0.8);
  border: 1px solid var(--stroke);
  animation: cardFloat 5.4s ease-in-out infinite;
  will-change: transform;
  width: 100%;
  text-align: center;
}

.mini-card:nth-child(2) {
  animation-delay: 0.8s;
}

.form-card {
  padding: 28px;
  border-radius: 20px;
  background: rgba(15, 17, 21, 0.88);
  border: 1px solid var(--stroke);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.field input,
.field textarea {
  border-radius: 12px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-status {
  margin-top: 12px;
  font-size: 0.95rem;
  min-height: 20px;
  color: var(--accent-2);
}

.site-footer {
  padding: 40px 0 24px;
  border-top: 1px solid var(--stroke);
}

.footer-grid {
  display: grid;
  gap: 16px 22px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: start;
  text-align: center;
}

.footer-brand {
  text-align: left;
}

.site-footer h4 {
  margin-top: 0;
  color: var(--accent);
  text-shadow: 0 0 18px rgba(232, 176, 74, 0.6), 0 0 32px rgba(232, 176, 74, 0.4), 0 0 48px rgba(232, 176, 74, 0.25);
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(232, 176, 74, 0.55);
}

.site-footer p {
  margin: 6px 0;
}


.copyright {
  text-align: center;
  color: var(--muted);
  margin-top: 20px;
  font-size: 0.9rem;
}

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 0;
  background: linear-gradient(160deg, rgba(245, 185, 66, 0.12), rgba(15, 17, 21, 0.9));
}

.auth-card {
  width: min(420px, 92vw);
  padding: 32px;
  border-radius: 22px;
  background: rgba(15, 17, 21, 0.92);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.auth-switch {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.auth-card h2 {
  margin-top: 0;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.admin-page {
  min-height: 100vh;
  background: var(--bg);
}

.admin-header {
  padding: 32px 0;
}

.admin-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.admin-actions .btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text);
  box-shadow: none;
}

.admin-actions .btn,
.message-actions .btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.admin-actions .btn:hover,
.admin-actions .btn:focus-visible,
.message-actions .btn:hover,
.message-actions .btn:focus-visible {
  background: transparent;
  color: var(--accent);
  box-shadow: none;
  transform: none;
}

.btn-icon {
  padding: 10px 12px;
  border-radius: 12px;
  line-height: 0;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.messages-list {
  display: grid;
  gap: 16px;
  padding-bottom: 60px;
}

.message-card {
  padding: 20px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--stroke);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.message-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 185, 66, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.message-card h4 {
  margin: 0 0 6px;
}

.message-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  justify-content: flex-end;
}

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

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-stack > * {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .mini-card {
    animation: none;
  }
}

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

@keyframes glowPulse {
  0% {
    text-shadow: 0 0 18px rgba(245, 185, 66, 0.35), 0 0 28px rgba(245, 185, 66, 0.2);
  }
  50% {
    text-shadow: 0 0 34px rgba(245, 185, 66, 0.75), 0 0 60px rgba(245, 185, 66, 0.35);
  }
  100% {
    text-shadow: 0 0 18px rgba(245, 185, 66, 0.35), 0 0 28px rgba(245, 185, 66, 0.2);
  }
}

@keyframes cardFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes accordionPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(245, 185, 66, 0);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 28px rgba(245, 185, 66, 0.18);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(245, 185, 66, 0);
  }
}

@keyframes numberGlow {
  0% {
    text-shadow: 0 0 12px rgba(245, 185, 66, 0.35), 0 0 18px rgba(245, 185, 66, 0.2);
  }
  50% {
    text-shadow: 0 0 22px rgba(245, 185, 66, 0.7), 0 0 36px rgba(245, 185, 66, 0.35);
  }
  100% {
    text-shadow: 0 0 12px rgba(245, 185, 66, 0.35), 0 0 18px rgba(245, 185, 66, 0.2);
  }
}

@media (max-width: 840px) {
  .nav a {
    position: relative;
    display: inline-block;
    transition: color 0.2s ease, border-color 0.2s ease;
  }

  .nav a:hover,
  .nav a:focus-visible {
    color: var(--accent);
    border-bottom-color: var(--accent);
  }
  .footer-brand {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .footer-grid {
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }
}

.home-page {
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(112, 158, 255, 0.16), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(228, 165, 255, 0.1), transparent 60%),
    radial-gradient(760px 340px at 52% -6%, rgba(245, 185, 66, 0.08), transparent 68%),
    linear-gradient(180deg, #090b12 0%, #0d1018 42%, #0b0e16 100%);
  overflow-x: hidden;
}

.home-page .bg-orbit {
  inset: -24% auto auto -12%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(91, 170, 255, 0.22), rgba(126, 73, 255, 0.16), transparent 70%);
  filter: blur(14px);
  animation: auroraDrift 14s ease-in-out infinite alternate;
}

.home-page .bg-aurora,
.home-page .bg-grid,
.home-page .bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.home-page .bg-aurora {
  z-index: -3;
  background:
    radial-gradient(70rem 35rem at -10% 35%, rgba(108, 172, 255, 0.13), transparent 58%),
    radial-gradient(60rem 30rem at 110% 70%, rgba(205, 128, 255, 0.1), transparent 60%),
    radial-gradient(48rem 24rem at 50% 12%, rgba(255, 198, 98, 0.12), transparent 62%);
  filter: blur(16px);
  animation: auroraSweep 16s ease-in-out infinite alternate;
}

.home-page .bg-grid {
  z-index: -2;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(circle at 50% 18%, black 35%, transparent 85%);
  mask-image: radial-gradient(circle at 50% 18%, black 35%, transparent 85%);
  animation: gridDrift 22s linear infinite;
}

.home-page .bg-noise {
  z-index: -1;
  opacity: 0.05;
  background-image: radial-gradient(circle at 20% 20%, #fff 0.6px, transparent 0.6px);
  background-size: 4px 4px;
}

.home-page .cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(147, 183, 255, 0.11) 0%, rgba(147, 183, 255, 0.035) 38%, transparent 72%);
  filter: blur(12px);
  opacity: 0;
  transform: translate3d(-999px, -999px, 0);
  transition: opacity 0.25s ease;
}

.home-page.cursor-active .cursor-glow {
  opacity: 0.72;
}

.home-page .site-header {
  background: rgba(10, 12, 18, 0.78);
  border-bottom: 1px solid rgba(166, 188, 233, 0.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.home-page .nav a {
  padding: 6px 2px;
  border-radius: 0;
  background: transparent;
}

.home-page .nav a:hover,
.home-page .nav a:focus-visible {
  background: transparent;
}

#primary-nav a:hover,
#primary-nav a:focus-visible {
  color: var(--accent) !important;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.policy-page {
  background:
    radial-gradient(820px 360px at 50% -10%, rgba(245, 185, 66, 0.08), transparent 65%),
    linear-gradient(180deg, #0d1018 0%, #111522 46%, #0f1320 100%);
}

.policy-page .site-header {
  background: rgba(10, 12, 18, 0.76);
  border-bottom: 1px solid rgba(166, 188, 233, 0.18);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.home-page .hero {
  padding: 96px 0 72px;
  position: relative;
}

.home-page .hero,
.home-page .section {
  transform: translate3d(0, calc(var(--section-shift, 0px) * 1px), 0);
  transition: transform 0.35s ease-out;
}

.home-page .hero-grid {
  gap: 48px;
}

.home-page .hero-copy h1 {
  font-size: clamp(2.8rem, 4.2vw, 4.4rem);
  letter-spacing: 0.2px;
  background: linear-gradient(115deg, #ffffff 0%, #e2ebff 34%, #f7e6d0 60%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 8px 28px rgba(118, 147, 210, 0.2), 0 0 16px rgba(245, 185, 66, 0.12);
}

.home-page .lead {
  color: #c3cad9;
}

.home-page .hero-actions .btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0);
}

.home-page .hero-actions .btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.3) 45%, transparent 75%);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
  z-index: -1;
}

.home-page .hero-actions .btn:hover::before,
.home-page .hero-actions .btn:focus-visible::before {
  transform: translateX(130%);
}

.home-page .hero-actions .btn:hover,
.home-page .hero-actions .btn:focus-visible {
  transform: translate3d(var(--mx, 0px), calc(var(--my, 0px) - 2px), 0);
}

.home-page .btn-primary {
  background: linear-gradient(135deg, #f7cd7c 0%, #efb458 44%, #dc9346 100%);
  box-shadow: 0 12px 30px rgba(245, 185, 66, 0.26), 0 2px 10px rgba(0, 0, 0, 0.2);
}

.home-page .btn-ghost {
  border-color: rgba(181, 199, 236, 0.32);
  background: rgba(20, 24, 36, 0.74);
  color: #dce5ff;
}

.home-page .hero-metrics {
  border-color: rgba(175, 194, 232, 0.26);
  background: linear-gradient(155deg, rgba(24, 31, 49, 0.8), rgba(12, 16, 28, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 16px 34px rgba(0, 0, 0, 0.3), 0 0 18px rgba(245, 185, 66, 0.08);
}

.home-page .hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(176, 196, 232, 0.24);
  background: linear-gradient(160deg, rgba(25, 33, 51, 0.8), rgba(14, 19, 32, 0.9));
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4), 0 0 24px rgba(245, 185, 66, 0.1);
}

.home-page .hero-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(165, 196, 246, 0.32), transparent 45%, rgba(245, 185, 66, 0.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.home-page .bar {
  position: relative;
  overflow: hidden;
}

.home-page .bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 40%);
  mix-blend-mode: screen;
}

.home-page .section {
  position: relative;
}

.home-page .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(980px, 88vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(158, 190, 255, 0.2), transparent);
}

.home-page .card,
.home-page .step,
.home-page .pricing-card,
.home-page .form-card {
  background: linear-gradient(155deg, rgba(21, 28, 43, 0.75), rgba(12, 17, 29, 0.9));
  border-color: rgba(171, 188, 222, 0.22);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
}

.home-page .card,
.home-page .step,
.home-page .pricing-card,
.home-page .social-link,
.home-page .mini-card,
.home-page .form-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.home-page .reveal-item {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}

.home-page .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.home-page .card.reveal-item:nth-of-type(2),
.home-page .pricing-card.reveal-item:nth-of-type(2),
.home-page .step.reveal-item:nth-of-type(2) {
  transition-delay: 0.08s;
}

.home-page .card.reveal-item:nth-of-type(3),
.home-page .pricing-card.reveal-item:nth-of-type(3),
.home-page .step.reveal-item:nth-of-type(3) {
  transition-delay: 0.14s;
}

.home-page .card:hover,
.home-page .step:hover,
.home-page .pricing-card:hover,
.home-page .mini-card:hover {
  transform: translateY(-7px) scale(1.01);
  border-color: rgba(196, 209, 236, 0.38);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4), 0 0 18px rgba(245, 185, 66, 0.1);
}

.home-page .pricing-card.featured {
  border-color: rgba(245, 185, 66, 0.5);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.42), 0 0 24px rgba(245, 185, 66, 0.16);
}

.home-page .section-title h2 {
  position: relative;
  display: inline-block;
}

.home-page .section-title h2::after {
  content: '';
  display: block;
  width: 74%;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(151, 186, 246, 0.82), rgba(245, 185, 66, 0.86));
}

.home-page .form-card {
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.4), 0 0 16px rgba(245, 185, 66, 0.08);
}

.home-page .field input,
.home-page .field textarea {
  border-color: rgba(163, 189, 255, 0.18);
  background: rgba(8, 12, 21, 0.56);
}

.home-page .field input:focus,
.home-page .field textarea:focus {
  border-color: rgba(153, 189, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(126, 169, 246, 0.14), 0 0 0 1px rgba(245, 185, 66, 0.18);
}

.home-page .magnetic {
  will-change: transform;
}

@keyframes auroraSweep {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  50% {
    transform: translate3d(1%, 1%, 0) scale(1.03);
  }
  100% {
    transform: translate3d(3%, -1%, 0) scale(1.02);
  }
}

@keyframes auroraDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(60px, -34px, 0) scale(1.08);
  }
}

@keyframes gridDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -42px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .cursor-glow,
  .home-page .bg-aurora,
  .home-page .bg-grid,
  .home-page .bg-orbit,
  .home-page .card,
  .home-page .step,
  .home-page .pricing-card,
  .home-page .hero-card,
  .home-page .hero-metrics {
    animation: none !important;
    transform: none !important;
  }

  .home-page .hero-actions .btn::before {
    display: none;
  }

  .home-page .hero,
  .home-page .section,
  .home-page .magnetic,
  .home-page .hero-actions .btn,
  .home-page .hero-actions .btn:hover,
  .home-page .hero-actions .btn:focus-visible {
    transform: none !important;
  }

  .home-page .reveal-item,
  .home-page .reveal-item.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.home-page.luxury-minimal {
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(245, 185, 66, 0.1), transparent 64%),
    linear-gradient(180deg, #0c0e14 0%, #10141d 45%, #0d1118 100%);
}

.home-page.luxury-minimal .bg-aurora,
.home-page.luxury-minimal .bg-grid,
.home-page.luxury-minimal .bg-noise,
.home-page.luxury-minimal .cursor-glow {
  display: none;
}

.home-page.luxury-minimal .bg-orbit {
  inset: -28% auto auto 68%;
  width: 460px;
  height: 460px;
  opacity: 0.45;
  background: radial-gradient(circle, rgba(245, 185, 66, 0.2), transparent 66%);
  animation: none;
}

.home-page.luxury-minimal .site-header {
  background: rgba(12, 14, 20, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.home-page.luxury-minimal .hero-copy h1 {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: #f5f1e8;
  text-shadow: 0 0 16px rgba(245, 185, 66, 0.16);
  font-size: clamp(2.5rem, 3.8vw, 4rem);
}

.home-page.luxury-minimal .lead {
  color: #c5c8d1;
}

.home-page.luxury-minimal .hero,
.home-page.luxury-minimal .section {
  transform: none !important;
}

.home-page.luxury-minimal .hero-actions .btn {
  transform: none !important;
}

.home-page.luxury-minimal .hero-actions .btn::before {
  display: none;
}

.home-page.luxury-minimal .btn-primary {
  background: linear-gradient(135deg, #efc679 0%, #e8b04a 100%);
  box-shadow: 0 8px 24px rgba(232, 176, 74, 0.24);
}

.home-page.luxury-minimal .btn-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: #e8e1d4;
}

.home-page.luxury-minimal .hero-metrics,
.home-page.luxury-minimal .hero-card,
.home-page.luxury-minimal .card,
.home-page.luxury-minimal .step,
.home-page.luxury-minimal .pricing-card,
.home-page.luxury-minimal .form-card {
  background: linear-gradient(160deg, rgba(26, 30, 40, 0.82), rgba(14, 17, 24, 0.9));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.home-page.luxury-minimal .card,
.home-page.luxury-minimal .step,
.home-page.luxury-minimal .pricing-card,
.home-page.luxury-minimal .mini-card,
.home-page.luxury-minimal .hero-card,
.home-page.luxury-minimal .hero-metrics {
  animation: none !important;
}

.home-page.luxury-minimal .reveal-item {
  transition-duration: 0.5s;
}

.home-page.luxury-minimal .section-title h2::after {
  background: linear-gradient(90deg, rgba(232, 176, 74, 0.7), rgba(245, 221, 174, 0.65));
}
