@import url('https://fonts.googleapis.com/css?family=Lato:400,700');

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f4f4f4;
  font-family: 'Lato', sans-serif;
  color: #333;
}

#page-wrapper {
  position: relative;
}

li { list-style: none; }
a { text-decoration: none; color: inherit; }

/* Utilities */
.container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  padding: 0 20px;
  height: 40px;
  font-size: 1em;
  font-weight: 900;
  text-transform: uppercase;
  border: 3px black solid;
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  min-height: 75px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eee;
  z-index: 1000;
}

.logo {
  width: 300px;
}

.logo img {
  width: 100%;
  display: block;
}

nav ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.nav-link:hover {
  color: #f1c40f;
}

/* Hero Section */
#hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 40px;
}

#hero h2 {
  margin-bottom: 20px;
}

#hero input[type='email'] {
  max-width: 275px;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

#hero #submit {
  max-width: 150px;
  width: 100%;
  margin-top: 15px;
  background-color: #f1c40f;
  border: none;
}

#hero #submit:hover {
  background-color: orange;
  transition: background-color 0.5s;
}

/* Features Section */
#features {
  padding-top: 40px;
}

.grid {
  display: flex;
  margin-bottom: 30px;
}

#features .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  color: darkorange;
}

#features .desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10px;
}

/* Video Section */
#how-it-works {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

#how-it-works iframe {
  max-width: 560px;
  width: 100%;
}

/* Pricing Section */
#pricing {
  margin-top: 60px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.product {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #000;
  border-radius: 4px;
  background: white;
}

.product .level {
  background-color: #ddd;
  width: 100%;
  padding: 15px 0;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.product h2 { margin-top: 15px; }
.product ol { margin: 15px 0; }
.product ol li { padding: 5px 0; }

.product .btn {
  margin: 15px 0;
  background-color: #f1c40f;
  border: none;
}

.product .btn:hover {
  background-color: orange;
}

/* Footer */
footer {
  margin-top: 50px;
  background-color: #ddd;
  padding: 25px;
  text-align: right;
}

footer ul {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

footer span {
  display: block;
  margin-top: 10px;
  font-size: 0.9em;
  color: #555;
}

/* Responsive Design */
@media (max-width: 800px) {
  #pricing {
    flex-direction: column;
    align-items: center;
  }
  .product {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 650px) {
  header {
    flex-direction: column;
    padding: 15px 0;
  }
  .logo { width: 100%; display: flex; justify-content: center; }
  nav ul { margin-top: 10px; }
  #hero { padding-top: 180px; }
}

@media (max-width: 550px) {
  #features .icon { display: none; }
  #features .desc { text-align: center; padding: 0; }
}
