:root {
  --bg: #07131b;
  --bg-soft: #102733;
  --panel: rgba(9, 23, 31, 0.8);
  --panel-soft: rgba(18, 40, 53, 0.86);
  --text: #eff8f2;
  --muted: #afc8bc;
  --line: rgba(255, 255, 255, 0.1);
  --solar: #f4b321;
  --solar-soft: #ffd56b;
  --mint: #7ed6b2;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 179, 33, 0.22), transparent 22%),
    radial-gradient(circle at 85% 12%, rgba(126, 214, 178, 0.16), transparent 20%),
    linear-gradient(180deg, #081018 0%, #0d1e28 45%, #102733 100%);
}

.offer-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 10px 16px;
  background: linear-gradient(90deg, rgba(244, 179, 33, 0.18), rgba(126, 214, 178, 0.12));
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 0.94rem;
}

.offer-bar p {
  margin: 0;
}

.offer-bar a {
  color: #07131b;
  text-decoration: none;
  font-weight: 800;
  background: var(--solar-soft);
  padding: 8px 14px;
  border-radius: 999px;
}

.site-header,
.site-footer,
.section,
.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
}

.brand-mark,
.brand-subtitle,
.eyebrow,
.project-tag,
.info-label {
  margin: 0;
}

.brand-mark,
.eyebrow,
.project-tag,
.info-label {
  font-family: "Sora", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  font-size: 1rem;
  font-weight: 700;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.86;
}

.site-nav a.active {
  opacity: 1;
  color: var(--solar-soft);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 32px 0 48px;
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 24px;
}

.eyebrow {
  color: var(--solar-soft);
  font-size: 0.8rem;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
}

h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.97;
  max-width: 12ch;
}

.page-intro {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.74;
}

.hero-text,
.contact-text,
.quote-card,
.service-card p,
.feature-card p,
.project-card p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: 0.84rem;
}

.primary-btn,
.secondary-btn,
.whatsapp-btn,
.map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-btn {
  border: 0;
  color: #1a1402;
  background: linear-gradient(135deg, var(--solar) 0%, #ffd873 100%);
  box-shadow: 0 14px 34px rgba(244, 179, 33, 0.25);
  cursor: pointer;
}

.secondary-btn {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.whatsapp-btn {
  color: #07131b;
  background: linear-gradient(135deg, #46d36f 0%, #8cf0a8 100%);
  box-shadow: 0 14px 34px rgba(70, 211, 111, 0.22);
  font-weight: 800;
}

.map-btn {
  margin-top: 10px;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.primary-btn:hover,
.secondary-btn:hover,
.whatsapp-btn:hover,
.map-btn:hover {
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.hero-stats article,
.service-card,
.feature-card,
.project-card,
.info-card,
.contact-card,
.quote-card,
.mini-card,
.feature-panel,
.process-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-stats article {
  padding: 18px;
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
  color: var(--solar-soft);
}

.hero-stats span {
  color: var(--muted);
}

.hero-panel {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sun-orbit {
  position: absolute;
  width: min(84vw, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 213, 107, 0.92) 0%, rgba(255, 196, 57, 0.88) 28%, rgba(255, 196, 57, 0.12) 55%, transparent 68%);
  filter: blur(2px);
}

.info-card {
  position: relative;
  z-index: 1;
  width: min(100%, 380px);
  padding: 28px;
  background: linear-gradient(180deg, rgba(10, 22, 29, 0.84), rgba(15, 37, 49, 0.92));
}

.info-label {
  color: var(--mint);
  font-size: 0.78rem;
}

.info-card h2 {
  margin: 12px 0;
  font-size: 2rem;
  line-height: 1.08;
}

.section {
  padding: 40px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.06;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.service-card,
.feature-card,
.project-card,
.detail-card,
.benefit-card,
.mini-card,
.feature-panel,
.process-card,
.testimonial-card {
  padding: 24px;
}

.service-breakdown {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.detail-card,
.benefit-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.solar-benefits-section {
  position: relative;
}

.solar-benefits-section::before {
  content: "";
  position: absolute;
  inset: 16% 0 auto;
  height: 140px;
  background: linear-gradient(90deg, rgba(255, 213, 107, 0.08), rgba(126, 214, 178, 0.08));
  filter: blur(34px);
  pointer-events: none;
}

.highlight-section {
  position: relative;
}

.highlight-section::before {
  content: "";
  position: absolute;
  inset: 10% 0 auto;
  height: 180px;
  background: linear-gradient(90deg, rgba(244, 179, 33, 0.06), rgba(126, 214, 178, 0.07));
  filter: blur(36px);
  pointer-events: none;
}

.project-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.project-card.large {
  background:
    linear-gradient(180deg, rgba(255, 213, 107, 0.12), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.project-tag {
  color: var(--solar-soft);
  font-size: 0.78rem;
}

.quote-card {
  padding: 28px;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.revenue-strip {
  padding-top: 8px;
}

.revenue-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 213, 107, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: var(--shadow);
}

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.revenue-grid p {
  color: var(--muted);
  line-height: 1.68;
}

.testimonial-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.conversion-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 213, 107, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: var(--shadow);
}

.subsidy-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 213, 107, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: var(--shadow);
}

.subsidy-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.subsidy-card-main {
  background:
    linear-gradient(180deg, rgba(255, 213, 107, 0.16), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.subsidy-points {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.price-line {
  margin: 10px 0 12px;
  color: var(--solar-soft);
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.split-layout,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.proof-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}

.proof-card {
  position: sticky;
  top: 20px;
}

.proof-points {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.proof-points p {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.plant-gallery {
  display: grid;
  gap: 18px;
}

.plant-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 213, 107, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: var(--shadow);
}

.plant-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.plant-copy {
  padding: 22px;
}

.plant-copy h3 {
  margin-bottom: 10px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 213, 107, 0.14);
  color: var(--solar-soft);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(244, 179, 33, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  padding: 28px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.contact-card {
  padding: 24px;
  background: var(--panel-soft);
}

.contact-details {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-details p {
  margin-bottom: 12px;
  color: var(--muted);
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.contact-details a,
.site-footer a {
  color: var(--solar-soft);
  text-decoration: none;
}

.contact-card label {
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.full-width {
  width: 100%;
}

.form-message {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--mint);
}

.form-help {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-card .secondary-btn.full-width {
  margin-top: 12px;
}

.map-section {
  padding-top: 12px;
}

.map-frame-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.map-frame {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 36px;
  color: var(--muted);
  font-size: 0.94rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 50;
}

.floating-call,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.floating-call {
  color: #07131b;
  background: linear-gradient(135deg, var(--solar) 0%, #ffd873 100%);
}

.floating-whatsapp {
  color: #07131b;
  background: linear-gradient(135deg, #46d36f 0%, #8cf0a8 100%);
}

@media (max-width: 960px) {
  .hero,
  .contact-section,
  .three-up,
  .two-up,
  .project-showcase,
  .service-breakdown,
  .testimonial-grid,
  .faq-grid,
  .pricing-grid,
  .subsidy-grid,
  .revenue-grid,
  .proof-layout,
  .split-layout,
  .contact-layout,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .offer-bar {
    flex-direction: column;
    text-align: center;
  }

  .site-header,
  .site-footer,
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }
}
