html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  /* background: url('Background.png') center center / cover no-repeat fixed; */
  background: url('glow04.jpg') center center / cover no-repeat fixed;
  color: #f4f4f4;
  min-height: 100vh;
  position: relative;
  max-width: 100vw;
  overflow-x: hidden;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, #232946cc 0%, #121629ee 100%);
  z-index: 0;
}

main, header, section, footer {
  position: relative;
  z-index: 1;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4vw 1rem 4vw;
  background: rgba(18, 22, 41, 0.98);
  position: sticky;
  top: 0;
  z-index: 100;
  position: relative;
}

.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #b8c1ec;
}
.logo span {
  color: #eebbc3;
  font-weight: 700;
}

.navbar .site-logo {
  height: 4rem !important;
  max-height: 4rem !important;
  width: auto !important;
  vertical-align: middle;
  margin-right: 0.4em;
  margin-bottom: 0;
}

nav a {
  color: #f4f4f4;
  margin-left: 2rem;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
nav a.cta-nav {
  color: #232946;
  background: linear-gradient(90deg, #b8c1ec, #eebbc3);
  padding: 0.5rem 1.3rem;
  border-radius: 2rem;
  margin-left: 2rem;
  font-weight: 900;
}
nav a:hover {
  color: #eebbc3;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  position: relative;
  text-align: center;
  padding: 6rem 2vw 4rem 2vw;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, #b8c1ec33 0%, #23294600 80%);
  z-index: 0;
  pointer-events: none;
}
.hero-content {
  z-index: 1;
  position: relative;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.gradient-text {
  background: linear-gradient(90deg, #b8c1ec, #eebbc3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

#animated-hero-word {
  display: inline-block;
  width: 12ch; /* fits "independence." */
  text-align: left;
  transition: opacity 0.4s;
  white-space: nowrap;
}

.hero-logo {
  display: block;
  margin: 0 auto 5rem auto;
  max-width: 500px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 16px #23294688);
}

@media (max-width: 900px) {
  .hero-content {
    padding-top: 2.2rem;
    padding-bottom: 2rem;
    max-width: 95vw;
  }
  .product-cards {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
  .product-card {
    max-width: 98vw;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(18,22,41,0.98);
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 8px #0002;
    padding: 0.5rem 0 1rem 0;
    z-index: 10;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    transition: all 0.3s;
  }
  .nav-links.active {
    display: flex;
  }
  #hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 20;
    margin-left: auto;
    margin-right: 0.5rem;
  }
  #hamburger-menu span {
    display: block;
    height: 4px;
    width: 28px;
    margin: 4px 0;
    background: #b8c1ec;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .navbar nav a {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
    padding: 0.7rem 0.5rem;
    text-align: left;
    font-size: 1.1rem;
  }
  #hamburger-menu[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  #hamburger-menu[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  #hamburger-menu[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  #hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 20;
    margin-left: auto;
    margin-right: 0.5rem;
  }
  #hamburger-menu span {
    display: block;
    height: 4px;
    width: 28px;
    margin: 4px 0;
    background: #b8c1ec;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(18,22,41,0.98);
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 8px #0002;
    padding: 0.5rem 0 1rem 0;
    z-index: 10;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    transition: all 0.3s;
  }
  .nav-links.active {
    display: flex;
  }
  .navbar nav a {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
    padding: 0.7rem 0.5rem;
    text-align: left;
    font-size: 1.1rem;
  }
  #hamburger-menu[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  #hamburger-menu[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  #hamburger-menu[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2vw 1rem 2vw;
  }
  .logo {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .navbar nav {
    width: 100%;
    margin-top: 0.5rem;
  }
  .navbar nav a {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
    padding: 0.7rem 0.5rem;
    text-align: left;
    font-size: 1.1rem;
  }
  .navbar .site-logo {
    height: 2.2rem !important;
    max-height: 2.2rem !important;
    margin-right: 0.7em;
  }

  .hero-content h1 {
    font-size: 1.4rem;
    line-height: 1.13;
    word-break: break-word;
  }
  #animated-hero-word {
    width: 13ch;
    font-size: 1em;
    min-width: 9ch;
    max-width: 100%;
  }
  .hero-logo {
    max-width: 96px;
    margin-bottom: 1rem;
  }
  .product-cards {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    width: 100vw;
    margin-left: -4vw;
    padding: 0 2vw;
  }
  .product-card {
    width: 100%;
    min-width: 0;
    max-width: 98vw;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
    box-sizing: border-box;
    font-size: 1em;
  }
  .contact-form {
    padding: 0;
  }
  footer {
    text-align: center;
    font-size: 0.95em;
    padding: 1.2rem 0 0.4rem 0;
  }
}

.subtitle {
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  color: #b8c1ec;
}
.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.cta-primary {
  background: linear-gradient(90deg, #b8c1ec, #eebbc3);
  color: #232946;
  font-weight: 900;
  padding: 1rem 2.2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 2px 12px #23294644;
  transition: transform 0.1s, box-shadow 0.1s;
  display: inline-block;
}
.cta-primary:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px #eebbc366;
}
.cta-secondary {
  color: #b8c1ec;
  border: 2px solid #b8c1ec;
  padding: 1rem 2.2rem;
  border-radius: 2rem;
  font-weight: 700;
  background: none;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
}
.cta-secondary:hover {
  background: #b8c1ec22;
  color: #eebbc3;
}
.cta-primary.large {
  font-size: 1.5rem;
  padding: 1.3rem 3rem;
  margin-top: 2rem;
}

.trust {
  padding: 2.5rem 0 1.5rem 0;
  background: rgba(35, 41, 70, 0.55);
  text-align: center;
}
.trust-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.testimonials {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.testimonial {
  opacity: 0;
  position: absolute;
  left: 0; right: 0;
  transition: opacity 0.5s;
  font-style: italic;
  font-size: 1.1rem;
  color: #eebbc3;
  background: rgba(35, 41, 70, 0.55);
  border-radius: 0.7rem;
  padding: 1.1rem 1.5rem;
  margin: 0 auto;
  max-width: 600px;
}
.testimonial.active {
  opacity: 1;
  position: relative;
}

.problem-solution {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  background: #121629;
  padding: 3rem 2vw 3rem 2vw;
}
.problem, .solution {
  flex: 1 1 320px;
  max-width: 440px;
}
.problem h2, .solution h2 {
  color: #eebbc3;
  margin-bottom: 1rem;
}
.problem ul, .solution ul {
  list-style: disc inside;
  color: #b8c1ec;
  line-height: 1.7;
}

.products {
  padding: 3rem 2vw 3rem 2vw;
  background: rgba(35, 41, 70, 0.55);
  text-align: center;
}
.products h2 {
  color: #eebbc3;
  margin-bottom: 2.2rem;
}
.product-cards {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}
.product-card {
  background: rgba(35, 41, 70, 0.55);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  max-width: 340px;
  box-shadow: 0 2px 16px #23294633;
  text-align: left;
  transition: transform 0.12s, box-shadow 0.12s;
}
.product-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px #eebbc355;
}
.icon-slick {
  font-size: 2rem;
  color: #b8c1ec;
  filter: grayscale(1) brightness(1.2);
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 8px #23294666;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.4rem;
  width: 2.4rem;
  border-radius: 0.7rem;
  background: rgba(35,41,70,0.22);
}
.product-card h3 {
  color: #b8c1ec;
  margin-bottom: 0.7rem;
}

.how-it-works {
  background: #121629;
  padding: 3rem 2vw 3rem 2vw;
  text-align: center;
}
.how-it-works h2 {
  color: #eebbc3;
  margin-bottom: 2rem;
}
.steps {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  background: rgba(35, 41, 70, 0.55);
  border-radius: 1rem;
  padding: 2rem 1.2rem 1.8rem 1.2rem;
  max-width: 280px;
  box-shadow: 0 2px 12px #23294633;
}
.step-icon {
  background: linear-gradient(90deg, #b8c1ec, #eebbc3);
  color: #232946;
  font-weight: 900;
  font-size: 1.7rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}
.step h4 {
  color: #b8c1ec;
  margin-bottom: 0.5rem;
}

.cta-section {
  background: linear-gradient(90deg, #b8c1ec33, #eebbc322);
  padding: 3.5rem 2vw;
  text-align: center;
}
.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #eebbc3;
  margin-bottom: 1.5rem;
}

.about-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  background: rgba(35, 41, 70, 0.55);
  padding: 3rem 2vw 3rem 2vw;
}
.about, .contact {
  flex: 1 1 320px;
  max-width: 480px;
}
.about h2, .contact h2 {
  color: #eebbc3;
  margin-bottom: 1rem;
}
.about p {
  color: #b8c1ec;
  line-height: 1.7;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input, .contact-form textarea {
  border: none;
  border-radius: 0.7rem;
  padding: 1rem;
  font-size: 1rem;
  background: rgba(35, 41, 70, 0.55);
  color: #f4f4f4;
  resize: none;
}
.contact-form textarea {
  min-height: 90px;
}
.contact-form button {
  margin-top: 0.5rem;
}
.direct-contact {
  margin-top: 1.5rem;
  color: #b8c1ec;
}
.direct-contact a {
  color: #eebbc3;
  text-decoration: underline;
}

footer {
  background: #121629;
  padding: 2rem 2vw 1rem 2vw;
  text-align: center;
  color: #b8c1ec;
}
.footer-links {
  margin-bottom: 0.7rem;
}
.footer-links a {
  color: #b8c1ec;
  text-decoration: none;
  margin: 0 0.5rem;
}
.social-icons {
  margin-bottom: 0.7rem;
}
.social-icons a {
  margin: 0 0.3rem;
  display: inline-block;
}
.social-icons img {
  height: 22px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.social-icons img:hover {
  opacity: 1;
}

@media (max-width: 900px) {
  .problem-solution, .about-contact, .product-cards, .steps {
    flex-direction: column;
    align-items: center;
  }
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem 2vw;
  }
}
