/* SIDO Energy — Landing page */

:root {
  --forest: #1b3022;
  --forest-mid: #2a4530;
  --forest-light: #3d5c45;
  --lime: #a4c639;
  --lime-light: #c5db72;
  --lime-dark: #7a9a28;
  --lime-soft: rgba(164, 198, 57, 0.12);
  --gold: #ffd700;
  --gold-soft: rgba(255, 215, 0, 0.16);
  --orange: #f58220;
  --orange-dark: #d96a10;
  --text-light: #f8faf6;
  --text-dark: #1b3022;
  --muted: #5c6f62;
  --bg: #f4f7f1;
  --bg-alt: #eaf0e6;
  --card: #ffffff;
  --border: rgba(27, 48, 34, 0.1);
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --shadow: 0 4px 24px rgba(27, 48, 34, 0.07);
  --shadow-lg: 0 20px 50px rgba(27, 48, 34, 0.14);
  --max: 1160px;
}

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

html { scroll-behavior: smooth; }

body.landing {
  margin: 0;
  font-family: Montserrat, ui-sans-serif, system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

.lp-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ──────────────────────────────────────────────── */

.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.lp-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.lp-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.lp-brand img {
  height: 52px;
  background: #fff;
  border-radius: 10px;
  padding: 4px 10px;
  box-shadow: var(--shadow);
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.lp-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}

.lp-nav a:hover {
  color: var(--forest);
  background: var(--lime-soft);
}

.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  padding: 9px 14px;
  border-radius: 999px;
  transition: background 0.15s;
}

.lp-link:hover { background: var(--lime-soft); }

.lp-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--forest);
  cursor: pointer;
}

.lp-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.lp-mobile-nav[hidden] { display: none; }

.lp-mobile-nav a {
  font-size: 15px;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--forest);
}

.lp-mobile-nav a:hover { background: var(--lime-soft); }

.lp-mobile-nav hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 8px 0;
}

/* ── Buttons ─────────────────────────────────────────────── */

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 800;
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 4px 18px rgba(245, 130, 32, 0.35);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}

.lp-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 8px 26px rgba(245, 130, 32, 0.45);
}

.lp-btn-sm { padding: 9px 18px; font-size: 13px; }

.lp-btn-lg {
  padding: 15px 32px;
  font-size: 16px;
}

.lp-btn-block { width: 100%; }

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: rgba(248, 250, 246, 0.85);
  padding: 12px 18px;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.lp-btn-ghost:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

/* ── Hero ────────────────────────────────────────────────── */

.lp-hero {
  position: relative;
  overflow: hidden;
  color: var(--text-light);
  background: linear-gradient(155deg, var(--forest-mid) 0%, var(--forest) 55%, #0d1610 100%);
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lp-hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 5% 15%, rgba(164, 198, 57, 0.25), transparent),
    radial-gradient(ellipse 45% 55% at 95% 85%, rgba(245, 130, 32, 0.2), transparent),
    radial-gradient(ellipse 30% 40% at 70% 20%, rgba(255, 215, 0, 0.1), transparent);
}

.lp-hero-image {
  position: absolute;
  inset: 0;
  background: url('/assets/sido-flyer.png') center 25% / cover no-repeat;
  opacity: 0.14;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 85%);
}

.lp-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 72px;
}

.lp-eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.lp-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.lp-pill-gold {
  background: var(--gold-soft);
  border-color: rgba(255, 215, 0, 0.3);
  color: var(--gold);
}

.lp-hero-content h1 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.lp-gradient-text {
  display: block;
  background: linear-gradient(95deg, var(--gold), var(--lime-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-lead {
  margin: 0 0 28px;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(248, 250, 246, 0.76);
}

.lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.lp-accreditations {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-accreditations span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 250, 246, 0.5);
}

.lp-accreditations img {
  height: 36px;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Hero card */

.lp-hero-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-xl);
  padding: 32px;
  color: var(--text-dark);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.lp-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime-dark);
  margin-bottom: 10px;
}

.lp-price {
  font-size: clamp(2.4rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
}

.lp-price-note {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.lp-hero-stats {
  list-style: none;
  margin: 28px 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.lp-hero-stats li {
  text-align: center;
}

.lp-hero-stats strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--forest);
  line-height: 1.1;
}

.lp-hero-stats span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.3;
}

/* ── Trust strip ─────────────────────────────────────────── */

.lp-strip {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.lp-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 28px 24px;
}

.lp-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.lp-strip-item svg {
  flex-shrink: 0;
  color: var(--lime-dark);
  margin-top: 2px;
}

.lp-strip-item strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 2px;
}

.lp-strip-item span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ── Sections ────────────────────────────────────────────── */

.lp-section {
  padding: 72px 0;
}

.lp-section-alt {
  background: var(--bg-alt);
}

.lp-section-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 48px;
}

.lp-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime-dark);
  margin-bottom: 10px;
}

.lp-section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--forest);
}

.lp-section-head p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

/* Topics grid */

.lp-topics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.lp-topics li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.lp-topics li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(164, 198, 57, 0.35);
}

.lp-topic-num {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.04em;
}

.lp-topic-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.45;
}

/* Audience cards */

.lp-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-audience-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.lp-audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.lp-audience-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gold-soft);
  color: #92680a;
}

.lp-audience-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--forest);
  padding-top: 8px;
}

.lp-footnote {
  margin: 24px auto 0;
  max-width: 640px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--lime-soft);
  border: 1px solid rgba(164, 198, 57, 0.25);
  font-size: 13px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.55;
  color: var(--lime-dark);
  text-align: center;
}

/* Outcomes */

.lp-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.lp-outcome-card {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.lp-outcome-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.lp-outcome-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--forest-mid), var(--forest));
  color: var(--lime-light);
  margin-bottom: 14px;
}

.lp-outcome-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--forest);
}

/* Steps */

.lp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}

.lp-steps li {
  position: relative;
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.lp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 900;
}

.lp-steps h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--forest);
}

.lp-steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 500;
}

/* ── CTA ─────────────────────────────────────────────────── */

.lp-cta {
  position: relative;
  overflow: hidden;
  color: var(--text-light);
  background: linear-gradient(160deg, var(--forest) 0%, #0d1610 100%);
}

.lp-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 100%, rgba(164, 198, 57, 0.18), transparent),
    radial-gradient(ellipse 35% 40% at 85% 15%, rgba(255, 215, 0, 0.1), transparent);
  pointer-events: none;
}

.lp-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
}

.lp-cta-inner h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.lp-cta-inner > p {
  margin: 0 auto 32px;
  max-width: 500px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(248, 250, 246, 0.74);
}

.lp-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.lp-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(248, 250, 246, 0.88);
  padding: 11px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.15s, color 0.15s;
}

.lp-contact a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}

/* ── Footer ──────────────────────────────────────────────── */

.lp-footer {
  padding: 36px 0;
  background: var(--card);
  border-top: 1px solid var(--border);
}

.lp-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.lp-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-footer-brand img {
  height: 36px;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  border: 1px solid var(--border);
}

.lp-footer-brand strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--forest);
}

.lp-footer-brand span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.lp-footer-slogan {
  margin: 0;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  color: var(--muted);
}

.lp-footer-top {
  font-size: 12px;
  font-weight: 700;
  color: var(--lime-dark);
  padding: 6px 12px;
  border-radius: 999px;
  transition: background 0.15s;
}

.lp-footer-top:hover { background: var(--lime-soft); }

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 960px) {
  .lp-nav,
  .lp-header-actions { display: none; }

  .lp-menu-btn { display: inline-flex; }

  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .lp-hero-card { max-width: 440px; }

  .lp-strip-grid { grid-template-columns: 1fr; gap: 20px; }

  .lp-topics { grid-template-columns: 1fr; }

  .lp-audience-grid { grid-template-columns: repeat(2, 1fr); }

  .lp-steps { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .lp-hero-cta { flex-direction: column; align-items: stretch; }

  .lp-btn-lg,
  .lp-btn-ghost { width: 100%; justify-content: center; }

  .lp-hero-stats { grid-template-columns: 1fr; gap: 16px; }

  .lp-hero-stats li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
  }

  .lp-hero-stats li:last-child { border-bottom: none; }

  .lp-hero-stats strong { font-size: 1.25rem; }

  .lp-audience-grid { grid-template-columns: 1fr; }

  .lp-contact { flex-direction: column; align-items: center; }

  .lp-section { padding: 56px 0; }
}
