/* === GLOBAL SETTINGS === */
html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #f0c040;
  scroll-behavior: smooth;
}

/* === NAVIGATION === */
nav {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  background: #000;
  z-index: 10;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.nav-links a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  color: #f0c040;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #f0c040;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease-out;
  border-radius: 2px;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  animation: pulseLine 0.55s ease-out;
}

/* === LANGUAGE SELECTOR === */
.language-selector {
  position: relative;
  margin-left: auto;
}

.lang-btn {
  all: unset;
  cursor: pointer;
  display: block;
  line-height: 0;
}

.lang-current-flag {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #f0c040;
  object-fit: cover;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  background: #111;
  min-width: 160px;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
  padding: 8px 0;
  z-index: 9999;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.lang-dropdown a:hover {
  background: #222;
  color: #f0c040;
}

.lang-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.language-selector.open .lang-dropdown {
  display: block;
}

/* === HERO – DESKTOP === */
.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 20px 140px;
  color: #f0c040;
  overflow: hidden;
  min-height: 520px;
  isolation: isolate;
}

.hero-backgrounds {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -3%;
  opacity: 0;
  background-position: center 65%;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: opacity 1s ease;
  will-change: opacity, transform;
}

.hero-bg.active {
  opacity: 1;
  animation: heroKenBurns 7.5s ease-out forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.16) 0%,
    rgba(0,0,0,.30) 45%,
    rgba(0,0,0,.66) 100%
  );
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(to top, #000 0%, transparent 25%),
    linear-gradient(to bottom, #000 0%, transparent 25%),
    linear-gradient(to left, #000 0%, transparent 20%),
    linear-gradient(to right, #000 0%, transparent 20%);
}

.hero-section > *:not(.hero-backgrounds) {
  position: relative;
  z-index: 2;
}


.hero-logo-animation {
  position: relative;
  display: grid;
  place-items: center;
  width: min(360px, 72vw);
  aspect-ratio: 1;
  max-height: 270px;
  margin: -20px auto 8px;
  pointer-events: none;
  isolation: isolate;
  animation: pera-logo-enter 1.15s cubic-bezier(.2,.8,.2,1) both,
             pera-logo-float 5.5s ease-in-out 1.15s infinite;
}

.hero-logo-mark {
  position: relative;
  width: 78%;
  overflow: hidden;
  border-radius: 50%;
  z-index: 3;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.58));
  animation: pera-logo-breathe 4.8s ease-in-out 1.15s infinite;
}

.hero-logo-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-logo-glow {
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(circle,
    rgba(53,157,255,.34) 0%,
    rgba(17,92,190,.16) 38%,
    rgba(0,0,0,0) 72%);
  filter: blur(16px);
  animation: pera-glow-pulse 4.2s ease-in-out infinite;
}

.hero-logo-orbit {
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: 1;
  border: 1px solid rgba(113,192,255,.22);
  box-shadow: inset 0 0 18px rgba(42,139,255,.08),
              0 0 24px rgba(42,139,255,.08);
}

.hero-logo-orbit::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(174,222,255,.9);
  box-shadow: 0 0 13px rgba(75,166,255,.95);
}

.hero-logo-orbit-one {
  animation: pera-orbit-spin 11s linear infinite;
}

.hero-logo-orbit-two {
  width: 91%;
  opacity: .42;
  transform: rotate(38deg);
  animation: pera-orbit-spin-reverse 16s linear infinite;
}

.hero-logo-shine {
  position: absolute;
  inset: -25%;
  z-index: 4;
  background: linear-gradient(112deg,
    transparent 34%,
    rgba(255,255,255,0) 42%,
    rgba(255,255,255,.7) 50%,
    rgba(126,196,255,.28) 55%,
    transparent 64%);
  transform: translateX(-145%);
  mix-blend-mode: screen;
  animation: pera-logo-shine 5.8s ease-in-out 1.6s infinite;
}

@keyframes pera-logo-enter {
  0% { opacity: 0; transform: translateY(18px) scale(.82); filter: blur(10px); }
  65% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes pera-logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes pera-logo-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

@keyframes pera-glow-pulse {
  0%, 100% { opacity: .56; transform: scale(.94); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes pera-orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes pera-orbit-spin-reverse {
  from { transform: rotate(38deg); }
  to { transform: rotate(-322deg); }
}

@keyframes pera-logo-shine {
  0%, 58% { transform: translateX(-145%); opacity: 0; }
  66% { opacity: .9; }
  82%, 100% { transform: translateX(145%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-animation,
  .hero-logo-mark,
  .hero-logo-glow,
  .hero-logo-orbit,
  .hero-logo-shine {
    animation: none !important;
  }
}

.logo {
  width: 260px;
  height: auto;
  margin-bottom: 25px;
}

.hero-copy {
  transition: opacity .35s ease, transform .35s ease;
}

.hero-copy.changing {
  opacity: 0;
  transform: translateY(12px);
}

.hero-section h1 {
  font-size: 2.6rem;
  margin: 0 auto .7rem;
  text-shadow: 0 3px 10px rgba(0,0,0,.75);
  max-width: 900px;
  line-height: 1.15;
}

.hero-section p {
  font-size: 1.15rem;
  margin: 0 auto 1.2rem;
  opacity: .96;
  max-width: 760px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.8);
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(240,192,64,.9);
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.hero-dot:hover,
.hero-dot.active {
  background: #f0c040;
  transform: scale(1.18);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg.active { animation: none; }
  .hero-bg, .hero-copy { transition: none; }
}

/* === ABOUT SECTION === */
.about-section {
  background: rgba(0,0,0,0.6);
  border: 1px solid #f0c040;
  padding: 50px 30px;
  margin: 50px auto;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(240,192,64,.3);
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease forwards;
  text-align: center;
}

.about-section h2 {
  color: #f0c040;
  margin-bottom: 10px;
}

.about-section p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1.1em;
}

.about-section p strong {
  color: #f0c040;
  font-size: 1.2em;
}

/* === SERVICES SECTION === */
.services-grid-section {
  text-align: center;
  padding: 60px 20px;
  background: #111;
}

.services-grid-section h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.service-box {
  position: relative;
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  border: 1px solid rgba(240,192,64,0.65);
  border-radius: 14px;
  padding: 28px 25px 42px;
  width: 280px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s ease;
}

.service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(240,192,64,0.20), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-box:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #f0c040;
  box-shadow:
    0 18px 45px rgba(0,0,0,0.55),
    0 0 28px rgba(240,192,64,0.35);
}

.service-box:hover::before {
  opacity: 1;
}

.service-box img {
  width: 60px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
  transition: all 0.35s ease;
  position: relative;
  z-index: 2;
}

.service-box:hover img {
  transform: scale(1.16) rotate(-3deg);
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 12px rgba(240,192,64,0.75));
}

.service-box h3 {
  color: #f0c040;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.service-box p {
  color: #ddd;
  font-size: 0.95em;
  position: relative;
  z-index: 2;
}

.service-box::after {
  content: "Request quote";
  position: absolute;
  left: 50%;
  bottom: 17px;
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  color: #f0c040;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  transition: all 0.35s ease;
}

.service-box:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* === FACTS SECTION === */
.facts-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  background: #000;
  padding: 60px 20px;
  justify-items: center;
}

.fact-box {
  background: #111;
  border: 1px solid #f0c040;
  border-radius: 0;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(240,192,64,0.3);
}

.fact-box h3 {
  font-size: 2.2em;
  margin-bottom: 8px;
  color: #f0c040;
}

.fact-box p {
  font-size: 1em;
  color: #fff;
  margin: 0;
}

/* === CONTACT SECTION === */
.contact-section {
  padding: 50px 20px;
  text-align: center;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}

.contact-section input,
.contact-section textarea,
.contact-section button {
  padding: 10px;
  border: 1px solid #f0c040;
  background: #111;
  color: #f0c040;
}

.contact-section button {
  background: #f0c040;
  color: #111;
  cursor: pointer;
}

.contact-section button:hover {
  background: #fff;
}

/* === SLIDESHOW OLD CUSTOM === */
.slideshow-container {
  max-width: 960px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  background: #000;
}

.slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
  pointer-events: none;
}

.slideshow .slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

/* === WHATSAPP BUTTON === */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: #111;
  z-index: 1000;
}

.whatsapp-button img {
  width: 100%;
  height: auto;
}

/* === FOOTER === */
footer {
  background: #222;
  padding: 20px;
  text-align: center;
  color: #f0c040;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulseLine {
  0%   { opacity: 0.2; }
  40%  { opacity: 1; }
  70%  { opacity: 0.6; }
  100% { opacity: 1; }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-links a {
    font-size: 11px;
    padding: 3px 6px;
  }

  .lang-current-flag {
    width: 24px;
    height: 24px;
  }

  .lang-flag {
    width: 20px;
    height: 20px;
  }

  .facts-section {
    grid-template-columns: 1fr;
  }

  .slideshow {
    max-height: 260px;
  }
}

@media (max-width: 420px) {
  .nav-links a {
    font-size: 10.5px;
    padding: 3px 5px;
  }
}

/* === SLIDESHOW SWIPER === */
.slideshow-container {
  max-width: 960px;
  margin: 60px auto;
  padding: 0 20px;
}

.swiper {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  color: #f0c040;
}

.swiper-pagination-bullet {
  background: #f0c040;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

/* === STATS STRIP === */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(80px, 1fr));
  gap: 16px;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  color: #f0c040;
  text-align: center;
}

.stat {
  font-weight: 700;
}

.stat .counter {
  font-size: 2.2em;
  line-height: 1;
}

.stat .sign {
  font-size: 1.2em;
  margin-left: 2px;
  vertical-align: super;
}

.stat small {
  display: block;
  font-size: 0.9em;
  color: #fff;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .stats-strip {
    grid-template-columns: 1fr;
  }
}

/* === CONTACT FLY-IN BUTTON === */
#contact-flyin {
  margin-top: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

#contact-flyin.show {
  opacity: 1;
  transform: translateY(0);
}

#contact-flyin a {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  background: #f0c040;
  color: #111;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transition: transform 0.3s;
  animation: pulse 1.8s infinite;
}

#contact-flyin a:hover {
  background: #fff;
  color: #000;
}

#contact-flyin a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75px;
  width: 50px;
  height: 100%;
  background: rgba(255,255,255,0.5);
  transform: skewX(-20deg);
  animation: shine 2.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes shine {
  0% { left: -75px; }
  50% { left: 125%; }
  100% { left: 125%; }
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: min(95%,640px);
  background: rgba(0,0,0,.92);
  color: #fff;
  border: 1px solid rgba(240,192,64,.4);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(0,0,0,.55);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 2s ease;
}

.cookie-banner.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cb-inner {
  padding: 16px 20px;
}

.cb-inner p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
}

.cb-inner a {
  color: #f0c040;
  text-decoration: underline;
}

.cb-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cb-actions button {
  flex: 1 1 140px;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 700;
}

.cb-accept {
  background: #f0c040;
  color: #111;
}

.cb-decline {
  background: transparent;
  color: #fff;
  border: 1px solid #f0c040;
}

/* === OLD HERO / INTRO VIDEO === */
.hero {
  position: relative;
  background: url('img/background.webp') center/cover no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #f0c040;
}

.hero-logo {
  max-width: 280px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 12px rgba(0,0,0,0.6));
}

.hero h1,
.hero p {
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #f0c040;
  color: #111;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
}

/* === INTRO VIDEO HERO === */
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-video video,
.hero-video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#finalLogo {
  width: min(360px,70vw);
  height: auto;
  margin: auto;
  opacity: 0;
  transition: opacity 1.4s ease;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.6));
}

/* === FAQ SECTION === */
.faq-section {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 3rem 1.5rem 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-item + .faq-item {
  margin-top: 1.5rem;
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.faq-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === HAMBURGER BUTTON MOBILE === */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(240,192,64,0.6);
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  margin-right: 0.75rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: #f9fafb;
  border-radius: 999px;
}

/* === MOBILE NAV === */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
  }

  .language-selector {
    margin-left: auto;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.5rem;
  }

  .nav-links a {
    display: block;
    padding: 0.4rem 0;
  }

  body.nav-open .nav-links {
    display: flex;
  }
}

/* === IPHONE FIX === */
nav {
  padding-top: env(safe-area-inset-top);
  background-color: #000 !important;
}

body {
  padding-top: env(safe-area-inset-top);
  background-color: #000;
}

* {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* === HERO MOBILE === */
@media (max-width: 768px) {
  .hero-section {
    padding: 120px 20px 90px;
    min-height: 560px;
  }

  .hero-bg {
    background-position: center center;
  }

  .hero-section .logo {
    width: 200px;
    margin-bottom: 20px;
  }

  .hero-section h1 {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .hero-section p {
    font-size: 1rem;
    opacity: 0.95;
  }
}

/* === HERO TRUST + CTA UPDATE === */
.hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px auto 10px;
  max-width: 900px;
}

.hero-trust span {
  padding: 8px 14px;
  border: 1px solid rgba(240,192,64,0.55);
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
}

.hero-actions-new {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 165px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 10px 26px rgba(0,0,0,0.45);
}

.hero-action.primary {
  background: #f0c040;
  color: #111;
  border: 1px solid #f0c040;
}

.hero-action.secondary {
  background: rgba(0,0,0,0.45);
  color: #f0c040;
  border: 1px solid rgba(240,192,64,0.75);
}

.hero-action:hover {
  transform: translateY(-3px);
}

.hero-action.primary:hover {
  background: #fff;
  border-color: #fff;
}

.hero-action.secondary:hover {
  background: #f0c040;
  color: #111;
}

@media (max-width: 768px) {
  .hero-trust {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-trust span {
    font-size: 0.78rem;
    padding: 7px 11px;
  }

  .hero-actions-new {
    flex-direction: column;
    align-items: center;
  }

  .hero-action {
    width: min(260px, 90%);
  }
}
@media (max-width: 700px) {
  .hero-logo-animation {
    width: min(270px, 76vw);
    max-height: 205px;
    margin: -8px auto 6px;
  }
}
