* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background: #fff;
  color: #18181b;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
}

.logo-img {
  height: 56px;
  width: auto;
}

.hero {
  padding: 6rem 3rem;
  /*max-width: 900px;*/
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 2rem;
}

.hero-grid img {
  width: 100%;
  max-width: 420px;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-grid img {
    margin: 0 auto;
  }
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 3rem;
}

.card {
  background: #f4f4f5;
  padding: 2rem;
  border-radius: 16px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.card:hover {
  transform: translateY(-6px);
}

.pricing {
  text-align: center;
  padding: 4rem 2rem;
}
.price {
  font-size: 3rem;
}

.contact {
  padding: 4rem 3rem;
}

.cta {
  text-decoration: none;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #18181b;
  background: transparent;
  border: 1px solid #18181b;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.cta:hover {
  background: #18181b;
  color: #ffffff;
  transform: translateY(-1px);
}

html {
  scroll-behavior: smooth;
}

.fade-in {
  animation: fade 0.8s ease forwards;
}
.slide-up {
  animation: slideUp 0.6s ease forwards;
}

.contact {
  padding: 5rem 1.5rem;
  background: #f4f4f5;
}

.contact h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

#contactForm {
  max-width: 520px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  border-radius: 12px;
  border: 1px solid #e4e4e7;
  background: #fafafa;
  color: #18181b;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

#contactForm textarea {
  min-height: 120px;
  resize: vertical;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
  color: #71717a;
}

#contactForm input:focus,
#contactForm textarea:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
  background: #ffffff;
}

#contactForm button {
  margin-top: 0.5rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  background: #18181b;
  color: #ffffff;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

#contactForm button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background: #000000;
}

#contactForm button:active {
  transform: translateY(0);
}

.contact-sub {
  text-align: center;
  color: #52525b;
  max-width: 480px;
  margin: 0 auto 2rem;
}

.status {
  text-align: center;
  color: #52525b;
  max-width: 480px;
  margin: 0 auto 2rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #333;
}

#contactStatus .error {
  color: #dc2626;
}

#contactStatus .success {
  color: #16a34a;
}

.footer {
  background: #ffffff;
  border-top: 1px solid #e4e4e7;
  padding: 3rem 1.5rem 2rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}

.footer-brand p {
  margin-top: 0.5rem;
  color: #52525b;
  max-width: 360px;
}

.footer-logo {
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: flex-end;
}

.footer-links a {
  text-decoration: none;
  color: #18181b;
  font-size: 0.95rem;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #18181b;
  transition: width 0.2s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f4f4f5;
  text-align: center;
  font-size: 0.85rem;
  color: #71717a;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@media (max-width: 480px) {
  .nav {
    padding: 1rem 1.25rem;
  }

  .logo-img {
    height: 42px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 1.5rem;
  }
}

/*Privacy Policy Page*/

.legal {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  line-height: 1.7;
}

.legal h1 {
  margin-bottom: 0.5rem;
}

.legal h2 {
  margin-top: 2.5rem;
  font-size: 1.25rem;
}

.legal ul {
  padding-left: 1.2rem;
}

.updated {
  color: #71717a;
  font-size: 0.9rem;
}
.updated strong {
  color: #18181b;
}
