* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Rubik", sans-serif;
}

body {
  background: #f0f6ff;
  color: #1a1a1a;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* NAVBAR */
.navbar {
  position: relative;
  top: 0;
  z-index: 100;
}

.nav-content {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 27px;
  border-radius: 8px;
}

.logo {
  height: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
}

.nav-links .btn {
  background: #0052ff;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.phone {
  font-weight: 600;
}

/* HAMBURGER */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* MAIN CONTENT */
.main-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  padding: 4rem 0;
}

.content-left,
.content-right {
  flex: 1;
}

.eyebrow {
  color: #555;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  margin: 0.5rem 0 1rem;
}

.intro {
  margin-bottom: 1.5rem;
  color: #444;
}

.features {
  list-style: none;
  margin-bottom: 2rem;
}

.features li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 2.5rem;
}

.features li::before {
    content: "✔";
    color: #ff5a1f;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    border: 3px solid #ff5a1f;
    height: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration {
  width: 100%;
  max-width: 520px;
  border-radius: 10px;
}

/* FORM */
.lead-form {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-group {
  flex: 1;
  margin-bottom: 1rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

input, select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.captcha {
  margin: 1.5rem 0;
}

.recaptcha-placeholder {
  border: 1px solid #ccc;
  padding: 0.8rem;
  text-align: center;
  border-radius: 6px;
  background: #f9f9f9;
}

.btn {
  background: #0052ff;
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.full {
  width: 100%;
  display: block;
}

/* FOOTER */
.footer {
  background: #006aff;
  color: white;
  margin-top: 4rem;
  padding-top: 3rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}

.footer-logo {
  height: 55px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.footer-btn {
  background: white;
  color: #006aff;
  padding: 0.6rem 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  margin-top: 2rem;
  padding: 1rem 0;
  text-align: center;
}

.footer-bottom a {
  color: white;
  text-decoration: underline;
}

.social-icons a {
  color: white;
  margin: 0 0.4rem;
  text-decoration: none;
  font-size: 1.2rem;
}
.hide-desktop {
  display: block;
}
.hide-mobile {
  display: none;
}
.footer-bottom > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 20px auto;
}
.footer-copy {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 820px;
}
@media (max-width: 900px) {
  .social-icons {
    margin: 22px 0;
  }
  .footer-bottom > div {
    flex-direction: column-reverse;
  }
  .nav-content {
    width: 95%;
    margin-top: 15px;
  }
  .hide-desktop {
    display: none;
  }
  .hide-mobile {
    display: inline-block;
    width: max-content;
    margin: 0 auto;
  }
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 220px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 0 0 10px 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a, .phone {
    padding: 0.5rem 0;
  }

  .main-content {
    flex-direction: column;
    padding: 2rem 0;
  }

  .content-left,
  .content-right {
    width: 100%;
  }
  .footer-copy {
        display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .footer-content {
    flex-direction: column-reverse;
    text-align: center;
    align-items: center;
    gap: 40px;
  }
}
