/* Global styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  /* Lemon brand palette from GEORGES_LEMON_LOGO[1].pdf */
  --lemon-primary: #e0ff00; /* Sun Glare */
  --lemon-green: #00a000; /* Green Spring */
  --lemon-secondary: #f0e400; /* Luxe Lemon */
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: #050505;
  color: #f9fafb;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.9),
    rgba(5, 5, 5, 0.85),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  height: 80px;
}

.brand-wordmark {
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.brand-wordmark .brand-o {
  color: var(--lemon-primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.95rem;
}

.nav a {
  color: #e5e7eb;
  opacity: 100%;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  opacity: 1;
  color: var(--lemon-primary);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(224, 255, 0, 0.5);
  color: var(--lemon-primary);
  font-weight: 500;
}

/* Hero */
.hero {
  padding: 4.5rem 0 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: clamp(2.3rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.highlight {
  color: var(--lemon-primary);
}

.hero-text {
  color: #d1d5db;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.hero-footnote {
  font-size: 0.85rem;
  color: #9ca3af;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: radial-gradient(
    circle at top left,
    var(--lemon-primary) 100%,
    var(--lemon-secondary) 0%,
    #020617 100%
  );
  color: #020617;
  padding: 1.75rem;
  border-radius: 1.25rem;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.9);
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 0.9rem;
  font-size: 1.25rem;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.hero-list li + li {
  margin-top: 0.35rem;
}

/* Sections */
.section {
  padding: 3.75rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #020617 0, #020617 35%, #000000 100%);
}

.section-emphasis {
  background: linear-gradient(
    135deg,
    var(--lemon-primary),
    var(--lemon-secondary)
  );
  color: #020617;
}

.section-header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
}

.section-intro {
  margin: 0 auto;
  max-width: 36rem;
  color: #d1d5db;
}

.section-emphasis .section-header,
.section-emphasis .section-intro {
  color: #020617;
}

.align-left {
  text-align: left;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease,
    background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn.primary {
  background: var(--lemon-primary);
  color: #020617;
  box-shadow: 0 18px 40px rgba(224, 255, 0, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(224, 255, 0, 0.45);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(156, 163, 175, 0.6);
  color: #e5e7eb;
}

.btn.ghost:hover {
  border-color: var(--lemon-green);
  color: var(--lemon-primary);
}

.btn.full-width {
  width: 100%;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 1.1rem;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.card p {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: #d1d5db;
  font-size: 0.95rem;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #9ca3af;
}

.card-list li + li {
  margin-top: 0.35rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.step {
  background: rgba(15, 23, 42, 0.9);
  padding: 1.4rem 1.25rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: var(--lemon-secondary);
  color: #020617;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: #cbd5f5;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 2.5rem;
  align-items: center;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.about-points li {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.9rem;
}

.about-points span {
  color: #e5e7eb;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) minmax(0, 3fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-grid h2 {
  margin-top: 0;
}

.contact-grid p {
  margin-top: 0.4rem;
  max-width: 26rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.1rem;
  padding: 1.7rem 1.4rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
}

.contact-form label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #020617;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.6rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--lemon-primary);
  box-shadow: 0 0 0 1px rgba(224, 255, 0, 0.7);
}

.field {
  margin-bottom: 0.9rem;
}

.form-footnote {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #4b5563;
}

.form-footnote a {
  color: #111827;
  font-weight: 500;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  background: #020617;
  padding: 1.5rem 0 1.75rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-tagline {
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    order: -1;
    justify-content: flex-start;
  }

  .hero-card {
    max-width: 360px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.9rem;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps {
    grid-template-columns: minmax(0, 1fr);
  }
}


