/* ===========================
   SmartSave Renewables Styles
   =========================== */

:root {
  --solar-yellow: #f9c80e;
  --sky-blue: #2d9cdb;
  --eco-green: #27ae60;
  --deep-navy: #1b263b;
  --soft-gray: #f2f2f2;
  --text-dark: #222222;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--deep-navy);
}

.logo span {
  color: var(--eco-green);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
}

nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-navy);
}

nav a:hover {
  color: var(--solar-yellow);
}

.hero {
  background: linear-gradient(
      135deg,
      rgba(45, 156, 219, 0.08),
      rgba(39, 174, 96, 0.08)
    );
  padding: 4rem 1rem 3rem;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
  color: var(--deep-navy);
}

.hero h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--eco-green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.hero p {
  margin: 0.75rem 0 1.5rem;
  max-width: 32rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary {
  background: var(--eco-green);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary:hover {
  background: #1f8b4e;
}

.btn-secondary {
  border-radius: 999px;
  border: 1px solid var(--eco-green);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--eco-green);
}

.btn-secondary:hover {
  background: rgba(39, 174, 96, 0.06);
}

.hero-highlight {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.hero-highlight h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.hero-highlight ul {
  list-style: none;
}

.hero-highlight li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.section-title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--deep-navy);
}

.section-subtitle {
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 1.75rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
}

.card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #e6e6e6;
}

.card h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
}

.benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem 1.5rem;
  margin-top: 0.75rem;
}

.benefits-list li::before {
  content: "• ";
  color: var(--eco-green);
  font-weight: 900;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.faq-item p {
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.5fr);
  gap: 2rem;
}

.contact-info p {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

form {
  display: grid;
  gap: 0.75rem;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.4rem;
  border: 1px solid #cccccc;
  font-family: inherit;
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

footer {
  background: var(--deep-navy);
  color: #ffffff;
  padding: 2rem 1rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: #ffffff;
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.85;
}

@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  nav ul {
    gap: 0.75rem;
    font-size: 0.9rem;
  }
}
