body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: #111213;
  color: #fff;
  min-height: 100vh;
  letter-spacing: 0.01em;
  background-color: #000;
}
.container {
  max-width: 100vw;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}
.navbar {
  background: rgba(17, 18, 19, 0.85);
  padding: 1.2rem 0;
  box-shadow: 0 2px 16px 0 #0002, 0 4px 24px #0004;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  border-bottom: none;
}
.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-link:hover {
  color: #f7c948;
}

.login-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.login-link::before {
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s;
}

.login-link:hover::before {
  transform: scale(1.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f7c948'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z'/%3E%3C/svg%3E");
}
.cta-nav {
  background: linear-gradient(90deg, #f7c948 80%, #fff700cc 100%);
  color: #111213;
  border-radius: 2rem;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  margin-left: 0.5rem;
  text-decoration: none;
  font-size: 1.06rem;
  box-shadow: 0 2px 12px #f7c94833;
  border: none;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta-nav:hover {
  background: linear-gradient(90deg, #fff700 70%, #f7c948 100%);
  color: #111213;
  box-shadow: 0 4px 18px #f7c94877;
}
.logo {
  color: #fff;
  font-size: 1.7rem;
  text-decoration: none;
  font-weight: 900;
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
}
.logo-img {
  height: 5rem;
  width: 5rem;
  margin-right: 0.35rem;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain;
  transition: transform 0.18s cubic-bezier(.4,0,.2,1);
  display: block;
  margin-top: -1.1rem;
  margin-bottom: -1.1rem;
  z-index: 2;
}
.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.5rem;
}
.navbar {
  min-height: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  overflow: visible;
  border: none;
  background: rgba(17, 18, 19, 0.85);
  box-shadow: 0 2px 16px #000a;
}
.nav-menu {
  align-items: center;
  display: flex;
  height: 3.5rem;
}
.logo:hover .logo-img {
  transform: scale(1.09) rotate(-3deg);
  box-shadow: none;
}
.hero {
  padding: 6rem 0 4rem 0;
  text-align: center;
  position: relative;
  background: #000;
  overflow: hidden;
}
.hero > .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 4px 32px #000b, 0 1px 0 #f7c94899;
  letter-spacing: 0.01em;
}
.hero-topline {
  color: #fff;
  font-size: 1.09rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 12px #000a;
}
.hero-headline-yellow {
  color: #f7c948;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 1.3rem;
  text-shadow: 0 2px 24px #11121355;
  display: inline-block;
}
.hero-headline {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 1.3rem;
  text-shadow: 0 2px 24px #11121355;
}
.hero-subheadline {
  color: #fff;
  font-size: 1.11rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-shadow: 0 2px 12px #000a;
}
.subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.2rem;
  color: #f7c948;
  text-shadow: 0 2px 16px #0003;
  font-weight: 500;
}
.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(90deg, #f7c948 80%, #fff700cc 100%);
  color: #111213;
  border-radius: 2rem;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.15rem;
  box-shadow: 0 4px 24px 0 #f7c94855, 0 2px 12px #11121333;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  border: none;
  outline: none;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 0 #fff9;
}
.cta-button:hover {
  background: linear-gradient(90deg, #fff700 70%, #f7c948 100%);
  color: #111213;
  box-shadow: 0 8px 32px 0 #f7c94899, 0 2px 12px #11121333;
}
.video-section {
  background: #000;
  padding: 3.5rem 0 2.5rem 0;
  text-align: center;
}
.video-wrapper {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 1.2rem;
  box-shadow: 0 6px 32px #0007, 0 2px 8px #f7c94822;
  overflow: hidden;
}
.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.2rem;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
  min-width: 320px;
  max-width: 100%;
  border: none;
  background: #000;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px #000a;
}
@media (max-width: 900px) {
  .video-wrapper iframe {
    max-width: 100vw;
    min-height: 180px;
    height: auto;
  }
}
.cta-section {
  background: #000;
  padding: 2.5rem 0 2.5rem 0;
  text-align: center;
}
.cta-button.large {
  font-size: 1.18rem;
  padding: 1.1rem 2.8rem;
  margin: 0 auto;
  display: inline-block;
  font-weight: 800;
  box-shadow: 0 4px 24px 0 #f7c94855, 0 2px 12px #11121333;
  border: none;
  outline: none;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 0 #fff9;
}
.cta-button.large:hover {
  background: linear-gradient(90deg, #fff700 70%, #f7c948 100%);
  color: #111213;
  box-shadow: 0 8px 32px 0 #f7c94899, 0 2px 12px #11121333;
}
.trusted-by {
  background: #000;
  padding: 2.2rem 0 2.8rem 0;
  text-align: center;
}
.trusted-title {
  color: #f7c948;
  font-weight: 700;
  font-size: 1.11rem;
  margin-bottom: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
  align-items: center;
}
.trusted-logos img {
  max-width: 120px;
  max-height: 40px;
  filter: drop-shadow(0 2px 8px #11121399);
  background: transparent;
  border-radius: 0;
  padding: 0;
  object-fit: contain;
  transition: transform 0.18s cubic-bezier(.4,0,.2,1),
    filter 0.18s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
.trusted-logos img:hover {
  transform: scale(1.09) translateY(-2px);
  filter: drop-shadow(0 4px 18px #f7c948cc) brightness(1.1);
}
footer {
  background: #000;
  padding: 2rem 0;
  text-align: center;
  color: #bfc8d6;
  font-size: 1rem;
  margin-top: 4rem;
  border-top: 1px solid #222;
}
.footer-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  text-align: center;
}
.footer-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  color: #bfc8d6;
  font-size: 1rem;
}
.footer-logo {
  height: 3rem;
  width: 3rem;
  border-radius: 0;
  margin-right: 0.5rem;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain;
  display: block;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  color: #f7c948;
  margin-left: 0.7rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #fff700;
}
.footer-social svg {
  display: inline-block;
  vertical-align: middle;
}
.card {
  background: #18191b;
  border-radius: 1.5rem;
  box-shadow: 0 6px 36px #000c, 0 2px 8px #f7c94811;
  margin: 2.5rem 0;
  width: 100%;
  padding: 2.5rem 0;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card > .container {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 900px) {
  .card {
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 900px) {
  .card {
    border-radius: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
.card:hover {
  box-shadow: 0 12px 48px #000e, 0 4px 16px #f7c94822;
  transform: translateY(-2px) scale(1.01);
}

/* Animated nav links */
.nav-link, .cta-nav {
  position: relative;
  overflow: hidden;
}
.nav-link::after, .cta-nav::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #f7c948 60%, #fff700cc 100%);
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(.4,0,.2,1);
  border-radius: 1px;
}
.nav-link:hover::after, .cta-nav:hover::after {
  transform: scaleX(1);
}

@media (max-width: 900px) {
  .nav-flex {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    min-height: unset;
    width: 100%;
  }
  
  .login-link {
    margin: 0.5rem 0;
    font-size: 1.1rem;
  }
  
  .login-link::before {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.3rem;
  }
  .logo-img {
    height: 5.2rem !important;
    width: 5.2rem !important;
    margin-bottom: 0;
    margin-top: 0;
    max-width: none !important;
    max-height: none !important;
  }
  #hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.4rem;
    height: 2.4rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 20;
    margin-left: auto;
  }
  .hamburger-bar {
    width: 2rem;
    height: 0.25rem;
    margin: 0.22rem 0;
    background: #f7c948;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    display: block;
  }
  #hamburger.open .hamburger-bar:nth-child(1) {
    transform: translateY(0.47rem) rotate(45deg);
  }
  #hamburger.open .hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  #hamburger.open .hamburger-bar:nth-child(3) {
    transform: translateY(-0.47rem) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #111213ee;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    width: 100vw;
    min-width: 0;
    height: auto;
    padding: 1.2rem 1.5rem 1.5rem 1.5rem;
    box-shadow: 0 8px 32px #000b;
    border-bottom-left-radius: 1.2rem;
    border-bottom-right-radius: 1.2rem;
    z-index: 10;
    display: none;
    animation: fadeInMenu 0.25s;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-link, .cta-nav {
    width: 100%;
    text-align: left;
    font-size: 1rem;
    padding: 0.48rem 0;
    line-height: 1.2;
    background: none;
    color: #f7c948;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    display: block;
  }
  .cta-nav {
    font-weight: 600;
    color: #f7c948;
    background: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 0.48rem 0;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    display: block;
  }
  #hamburger {
    display: flex;
  }
  .card {
    padding: 1.2rem 0.7rem;
    max-width: 99vw;
  }
  .hero {
    padding: 2.2rem 0 1.2rem 0;
  }
  .trusted-logos {
    gap: 0.7rem;
  }
}

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


@media (max-width: 600px) {
  .hero h1, .hero-headline-yellow {
    font-size: 1.03rem;
    line-height: 1.18;
  }
  .hero-topline, .hero-subheadline {
    font-size: 0.98rem;
  }
  .logo-img {
    height: 2.2rem;
    width: 2.2rem;
    margin-bottom: 0.1rem;
    margin-top: 0.1rem;
  }
  .cta-button, .cta-button.large {
    padding: 0.7rem 1.1rem;
    font-size: 0.99rem;
  }
  .video-wrapper iframe {
    min-height: 160px;
  }
  .trusted-logos img {
    max-width: 70px;
    max-height: 22px;
    padding: 0.1rem 0.2rem;
  }
  .footer-logo {
    height: 4.2rem !important;
    width: 4.2rem !important;
    margin-right: 0.2rem;
  }
  .footer-flex {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-left {
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 2.5rem 0 1.2rem 0;
  }
  .hero h1, .hero-headline {
    font-size: 1.13rem;
  }
  .logo {
    font-size: 1.1rem;
  }
  .logo-img {
    height: 1.2rem;
    width: 1.2rem;
    margin-right: 0.4rem;
  }
  .cta-button, .cta-button.large {
    padding: 0.7rem 1.1rem;
    font-size: 0.99rem;
  }
  .video-wrapper iframe {
    min-height: 180px;
  }
  .trusted-logos img {
    max-width: 90px;
    max-height: 30px;
    padding: 0.2rem 0.4rem;
  }
  .footer-logo {
    height: 1.2rem;
    width: 1.2rem;
    margin-right: 0.2rem;
  }
  .footer-left {
    font-size: 0.85rem;
  }
}

