:root {
  --teal: #2A9083;
  --coral: #F15B4E;
  --gray: #666666;
  --white: #ffffff;
  --font: 'Nunito', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray);
  scroll-behavior: smooth;
}

header {
  position: sticky;
  top: 0;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  z-index: 999;
}

.logo-icon {
  height: 18px;
  width: auto;
  display: block;
}

.hero-logo {
  max-width: 220px;
  margin: 0 auto 1rem;
  display: block;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--gray);
  font-weight: 600;
}

nav a:hover,
.login-link {
  color: var(--coral);
}

.hero {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
}

.section {
  padding: 4rem 2rem;
  text-align: center;
}

.section.alt {
  background: #f9f9f9;
}

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

.feature {
  background: var(--white);
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 8px;
}

.pricing-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card {
  border: 1px solid #ddd;
  padding: 2rem;
  border-radius: 10px;
  background: var(--white);
  max-width: 300px;
}

.card ul {
  list-style: none;
  padding: 0;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 2rem auto;
}

form input,
form textarea {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.btn {
  background: var(--coral);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}

.btn.secondary {
  background: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
}

.shopify-product {
  margin: 2rem auto;
  max-width: 400px;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #eee;
  font-size: 0.9rem;
}