@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;700&display=swap');

@font-face {
  font-family: 'Sofia Pro';
  src: url('fonts/Sofia Pro Medium Az.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Sofia Pro';
  src: url('fonts/Sofia Pro Regular Az.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Sofia Pro';
  src: url('fonts/Sofia Pro Light Az.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Sofia Pro';
  src: url('fonts/Sofia Pro Bold Az.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

:root {
  --primary-green: #72E549;
  --text-main: #313131;
  --text-grey-dark: #666666;
  --text-grey-light: #f5f5f5;
  --bg-light: #e7e8e9;
  --bg-dark: #252525;
  --bg-green-light: #f0faf2;

  --font-main: 'Sofia Pro', 'Outfit', sans-serif;

  --spacing-container: 1200px;
  --spacing-section: 120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: #ffffff;
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 200;
}

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

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



.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #cccccc;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-green);
}




/* Hero */
.hero {
  text-align: center;
  padding: 160px 0 180px;
  /* Significantly increased padding as per design feedback */
  background-color: var(--bg-green-light);
  /* Added Green Background */
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-logo img {
  width: 180px;
  height: auto;
}

.hero h1 {
  font-size: 100px;
  font-weight: 200;
  /* Thin weight */
  color: var(--text-main);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--primary-green);
  font-weight: 400;
  /* Slightly bolder for unification */
  display: block;
}

.hero p {
  color: var(--text-grey-dark);
  max-width: 900px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 300;
}

.hero .cta {
  background-color: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 24px;
}

.hero .cta:hover {
  background-color: var(--primary-green);
  color: #fff;
  box-shadow: 0 5px 15px rgba(114, 229, 73, 0.3);
}

.stat-card canvas {
  width: 100% !important;
  max-width: 100%;
  min-height: 250px;
  /* Enforce height */
  max-height: 400px;
}

/* Features */
.btn-signout {
  background-color: transparent;
  color: #666;
  border: 1px solid #444;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  margin-left: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-signout:hover {
  border-color: #ef4444;
  color: #ef4444;
  background-color: rgba(239, 68, 68, 0.1);
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.icon-btn:hover {
  color: var(--primary-green);
}

.feature-section {
  padding: 100px 0;
  /* Increased padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  /* Increased gap */
}

.feature-section.reverse {
  flex-direction: row-reverse;
  background-color: var(--bg-green-light);
  /* Added Green Background */
}

.feature-content {
  flex: 1;
  max-width: 550px;
  /* Increased max-width */
}

.feature-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 44px;
  background-color: #f7f9f7;
  /* Fills transparent background */
  border: 12px solid #ffffff !important;
  /* Sleek white device frame */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  /* Deep, soft shadow */
}

.feature-title {
  font-size: 54px;
  /* Increased from 40px */
  font-weight: 200;
  margin-bottom: 30px;
  line-height: 1.1;
}

.feature-title .highlight {
  color: var(--primary-green);
  font-weight: 400;
}

.feature-text {
  color: var(--text-grey-dark);
  font-weight: 300;
  margin-bottom: 24px;
  font-size: 20px;
  /* Explicitly set to 20px */
  line-height: 1.6;
}

/* Floating Icon Animation */
@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.mockup-wrapper {
  position: relative;
  display: inline-block;
  line-height: 0;
  /* Remove potential bottom gap */
}

.floating-icon {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 60px;
  height: 60px;
  background-color: #00C853;
  /* Vibrant green matching reference */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: bounce 2s infinite ease-in-out;
  z-index: 10;
}

.icon-svg {
  width: 24px;
  height: 24px;
  color: #000000;
}

/* Floating element badge */
.badge {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 10px 20px rgba(114, 229, 73, 0.4);
  z-index: 2;
}




/* ===========================
   App Page Styles
   =========================== */

body.app-page {
  background-color: #ffffff;
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
}

/* Navbar on App Page */
body.app-page .navbar {
  background-color: #313131;

}

/* App Hero */
.app-hero {
  background-color: #f0f2f5;
  padding: 100px 0 60px;
  /* Reduced padding */
  text-align: center;
}

.app-title {
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
  font-size: 100px;
  /* Consistent 100px */
  color: var(--primary-green);
  font-weight: 200;
  /* Thin weight */
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.app-title .thin-text {
  color: #1a1a1a;
  font-weight: 100;
  /* Keep thin for contrast as per design intent */
}

.app-description {
  max-width: 700px;
  /* Match Smart Home width */
  margin: 0 auto;
  font-size: 20px;
  /* Match Smart Home */
  font-weight: 300;
  color: #666;
  line-height: 1.6;
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
}

/* Slider Section */
.app-slider-section {
  position: relative;
  background: #f2fbf6;
  /* Matching light mint green background */
  padding: 80px 0 100px;
  /* Adjusted padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slider-container {
  max-width: 1400px;
  /* Increased from 1100px */
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.slider-content-wrapper {
  display: flex;
  align-items: flex-start;
  /* Set to flex-start so text column height changes don't cause vertical jumping */
  justify-content: center;
  gap: 120px;
  /* Increased gap between phone and text to match mockup */
  padding: 0 40px;
  max-width: 1200px;
  /* Reduced from 1400px to better group content together */
  margin: 0 auto;
}

/* Left Column: Image */
.slider-image-col {
  flex: 0 0 35%;
  /* Fix width instead of flexible 50% */
  display: flex;
  justify-content: flex-end;
  /* Align phone mockup towards the text block */
  align-items: center;
}

.app-mockup-wrapper {
  position: relative;
  width: 288px;
  /* Reduced by 10% from 320px */
  /* Matching mockup proportion */
  aspect-ratio: 393 / 852;
  /* Prevent layout collapse during image swops */
  margin: 0 auto;
  /* Ensure centering */
}

.app-screen-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 44px;
  background-color: #f7f9f7;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border: 12px solid #ffffff !important;
  /* Sleek white device frame */
  display: block;
  box-sizing: border-box;
}

/* Floating Green Icon Badge */
.app-floating-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  background-color: #00bf63;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 10;
  color: #fff;
  animation: bounce 2s infinite ease-in-out !important;
}

/* Right Column: Text */
.slider-text-col {
  flex: 0 0 55%;
  /* Fix width to constrain line breaks and match mockup width */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 60px;
  /* Ensures title aligns nicely against the top edge of the phone mockup */
  /* Ensure text aligns left strictly */
}


.slider-title {
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
  font-size: 56px;
  /* Slightly larger header */
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.1;
  max-width: 100%;
  /* Limit to enforce desired visual width */
  text-align: left;
}

.slider-desc {
  font-size: 20px;
  font-weight: 300;
  color: #666;
  line-height: 1.5;
  margin-bottom: 50px;
  /* Space before list */
  max-width: 100%;
  /* Constrain the paragraph to match mockup's line breaks */
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: #1a1a1a;
  /* Darker text matching mockup */
  font-size: 18px;
  /* Text scaling relative to the phone */
  font-weight: 500;
  /* Make text slightly bolder to match mockup legibility */
  line-height: 1.4;
  max-width: 100%;
}

.list-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #00bf63;
  /* Same green as floating icon */
}

/* Bottom Text */
.app-bottom-text {
  margin-top: 60px;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.app-bottom-text p {
  font-size: 15px;
  /* Refined size */
  font-weight: 300;
  color: #666;
  line-height: 1.8;
  /* Better readability */
}

/* Slider Controls (Arrows) */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  /* Smaller buttons */
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  color: #3b82f6;
  /* Match mockup blue */
}

/* Specific SVG color for arrows */
.slider-btn svg {
  color: #3b82f6;
  width: 24px;
  height: 24px;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.prev-btn {
  left: 80px;
  /* Inset the arrows instead of strictly pinned to edge */
}

.next-btn {
  right: 80px;
  /* Inset the arrows instead of strictly pinned to edge */
}

@media (max-width: 1024px) {
  .slider-content-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .slider-text-col {
    padding-top: 0;
  }

  .feature-list li {
    text-align: left;
    justify-content: flex-start;
  }

  .app-floating-icon {
    right: 0;
    animation: bounce 2s infinite ease-in-out;
  }

  .slider-btn {
    top: 25%;
  }

  .prev-btn {
    left: 20px;
  }

  .next-btn {
    right: 20px;
  }
}

/* Positioning badges arbitrarily for now, refine later */
.badge.top-right {
  top: 20px;
  right: 20px;
}

.badge.bottom-right {
  bottom: 20px;
  right: 20px;
}

.footer-brand {
  font-size: 56px;
  /* Corrected to 56px */
  font-weight: 300;
  margin-bottom: 50px;
  color: var(--primary-green);
  letter-spacing: -1px;
}

.footer-brand span {
  font-weight: 100;
  color: #fff;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 40px;
}

.footer-menu h4 {
  color: var(--primary-green);
  margin-bottom: 12px;
  font-size: 24px;
  /* Corrected to 24px */
  font-weight: 300;
}

.footer-menu p {
  color: #ccc;
  font-size: 16px;
  /* Corrected to 16px */
  font-weight: 300;
  line-height: 1.6;
}

/* PowerHome Section */
.power-home {
  background-color: #313131;
  color: #fff;
  padding: 120px 0 80px;
  /* Increased vertical padding */
  position: relative;
}

.section-title-thin {
  font-family: 'Sofia Pro', sans-serif;
  font-size: 64px;
  font-weight: 200;
  /* Thin weight */
  color: var(--primary-green);
  margin-bottom: 50px;
  line-height: 1;
}

.section-title-thin span.font-normal {
  font-weight: 200;
  /* Match title weight */
  color: #fff;
}

.power-home-content {
  display: flex;
  justify-content: center;
  gap: 120px;
  /* Increased gap */
  align-items: center;
  margin-bottom: 80px;
}

.power-home-left {
  max-width: 400px;
}

.power-home-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hub-image {
  max-width: 440px;
  /* Increased by ~25% from 350px */
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Calculator Section */
.calculator-section {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 60px;
}

.calculator {
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.calc-title {
  font-size: 64px;
  /* Matched to PowerHome title */
  margin-bottom: 20px;
  font-weight: 200;
  color: var(--primary-green);
  line-height: 1.1;
}

.calc-title span {
  color: #fff;
  font-weight: 200;
}

.calc-desc {
  color: #ccc;
  font-size: 16px;
  /* Matched to body text */
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.6;
}

/* Slider Styling */
.slider-container {
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  position: relative;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: #444;
  outline: none;
  border-radius: 3px;
  cursor: pointer;
}

/* Chrome/Safari Range Thumb */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 4px solid var(--primary-green);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(114, 229, 73, 0.6);
  margin-top: -9px;
  /* Centers thumb on track */
}

/* Firefox Range Thumb */
.slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: #fff;
  border: 4px solid var(--primary-green);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(114, 229, 73, 0.6);
}

/* Firefox Range Track */
.slider::-moz-range-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: #444;
  border-radius: 3px;
}

.savings-container {
  margin: 50px 0;
}

.savings-display {
  font-size: 80px;
  /* Larger savings display */
  font-weight: 200;
  color: var(--primary-green);
  margin: 10px 0;
  line-height: 1;
}

.savings-label {
  color: #fff;
  font-size: 20px;
  /* Increased from 18px */
  font-weight: 300;
}

.small-disclaimer {
  color: #666;
  font-size: 14px;
  /* Slightly larger disclaimer */
  max-width: 700px;
  margin: 40px auto;
  line-height: 1.5;
}

.btn-learn-more {
  margin-top: 30px;
  background-color: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 12px 32px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: none;
}

.btn-learn-more:hover {
  background-color: var(--primary-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(114, 229, 73, 0.3);
}

/* Website Footer */
footer {
  background-color: #e7e8e9;
  color: #313131;
  padding: 24px 0;
  border-top: 1px solid #ccc;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  position: relative;
}

.copyright {
  color: #999;
  font-weight: 500;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.social-icons img {
  height: 20px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.social-icons img:hover {
  opacity: 1;
}

.footer-left,
.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-left a,
.footer-links a {
  color: #999;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-left a:hover,
.footer-links a:hover {
  text-decoration: underline;
  color: #fff;
}

/* Header */
/* Header */
header {
  padding: 0;
  background-color: #313131;
  /* Fixed Header for Scroll Logic */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  /* Ensure high z-index */
  transition: transform 0.3s ease-in-out;
}

.nav-hidden {
  transform: translateY(-100%);
}

/* Prevent content overlap */
body {
  padding-top: 80px;
}



.navbar {
  max-width: var(--spacing-container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 10;
  /* Ensure logo is clickable */
}

.nav-brand img {
  height: 64px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 40px;
  /* Wider gap like design */
  align-items: center;
}

/* Absolute centering for Desktop */
@media (min-width: 900px) {
  .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.nav-link {
  text-decoration: none;
  color: #cccccc;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: var(--primary-green);
  padding: 8px 22px;
  /* Reduced by ~30% from 12px 32px */
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  /* Reduced from 18px */
  border: 2px solid var(--primary-green);
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: var(--primary-green);
  color: #fff;
  box-shadow: 0 5px 15px rgba(114, 229, 73, 0.3);
}

.contact-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Sign In Button */
.btn-signin {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: transparent;
  color: var(--primary-green);
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  margin-top: 32px;
  border: 2px solid var(--primary-green);
  transition: all 0.3s ease;
}

.btn-signin:hover {
  background-color: var(--primary-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(114, 229, 73, 0.3);
  border-color: var(--primary-green);
}

.btn-signin svg {
  width: 20px;
  height: 20px;
}


/* Sign In Modal */
.signin-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-content {
  background: #fff;
  padding: 50px 40px;
  border-radius: 24px;
  width: 380px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ... existing styles ... */

/* Admin Panel Styles */
.admin-body {
  background-color: #f4f7fa;
  margin: 0;
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
}

.admin-container {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 100px;
  background-color: #fff;
  border-right: 1px solid #e1e4e8;
  display: flex;
  flex-direction: column;
  padding: 20px 15px;
  position: fixed;
  height: 100vh;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-x: hidden;
  z-index: 2000;
  white-space: nowrap;
}

.admin-sidebar:hover {
  width: 250px;
}

.admin-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  font-weight: 600;
  font-size: 20px;
  color: #313131;
}

.admin-logo img {
  flex-shrink: 0;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 18px;
  text-decoration: none;
  color: #64748b;
  border-radius: 8px;
  transition: all 0.2s;
  font-weight: 500;
  white-space: nowrap;
}

.admin-nav-link svg {
  flex-shrink: 0;
}

.admin-nav-link:hover,
.admin-nav-link.active {
  background-color: #f0fdf4;
  color: var(--primary-green);
}

.admin-main {
  flex: 1;
  margin-left: 100px;
  padding: 30px;
  transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.admin-header h2 {
  font-size: 24px;
  color: #1e293b;
}

.admin-user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 40px;
  height: 40px;
  background-color: var(--primary-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.stat-card h3 {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 10px;
  font-weight: 500;
}

.stat-value {
  font-size: 28px;
  font-weight: 600;
  color: #1e293b;
}

/* Tables */
.table-container {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.table-container h3 {
  margin-bottom: 20px;
  color: #1e293b;
  font-size: 18px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
}

.admin-table th {
  font-weight: 600;
  color: #64748b;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-table td {
  color: #334155;
  font-size: 14px;
}

.status-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.status-active,
.status-completed {
  background-color: #dcfce7;
  color: #166534;
}

.status-pending,
.status-pending-installation,
.status-processing {
  background-color: #fef9c3;
  color: #854d0e;
}

.tier-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.tier-supporter {
  background-color: #f1f5f9;
  color: #475569;
}

.tier-partner {
  background-color: #dbeafe;
  color: #1e40af;
}

.tier-ambassador {
  background-color: #fef3c7;
  color: #92400e;
}

.status-cancelled {
  background-color: #fee2e2;
  color: #991b1b;
}

.status-inactive {
  background-color: #f1f5f9;
  color: #64748b;
}

.btn-action {
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  font-size: 12px;
  cursor: pointer;
  font-weight: 500;
  transition: opacity 0.2s;
}

.btn-approve {
  background-color: var(--primary-green);
  color: #fff;
  margin-right: 5px;
}

.btn-reject {
  background-color: #ef4444;
  color: #fff;
}

.btn-action:hover {
  opacity: 0.9;
}

.modal-title {
  font-size: 22px;
  color: #ccc;
  font-weight: 200;
  margin-bottom: 25px;
}

.input-field {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 15px;
  border: 1px solid #eee;
  background: #f9f9f9;
  /* Lighter background */
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  color: #555;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.input-field:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-green);
}

.btn-enter {
  margin: 20px auto 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f5f5f5;
  /* Very light grey/white */
  border: 1px solid #eee;
  color: var(--primary-green);
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-enter:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(114, 229, 73, 0.15);
  background: #fff;
  border-color: var(--primary-green);
}

.modal-links {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.forgot-pass {
  color: #bbb;
  font-size: 11px;
  text-decoration: none;
  transition: color 0.3s;
}

.forgot-pass:hover {
  color: var(--primary-green);
}

.create-account-link {
  color: #888;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.create-account-link:hover {
  color: var(--primary-green);
}

.share-message-text {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  border: 1px dashed #ccc;
  color: #555;
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.6;
  text-align: left;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #ccc;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: var(--primary-green);
}

/* Dashboard Styles (Logged In) */
.referral-code-display {
  margin-top: 25px;
  color: var(--primary-green);
  font-size: 18px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Align items to start */
}

.code-container {
  margin-bottom: 20px;
}

.code-text {
  /* display: block; - removed as it varies in flex */
  letter-spacing: 1px;
}

.share-icons {
  display: flex;
  gap: 25px;
  /* Increased gap */
  margin-bottom: 20px;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.icon-circle svg {
  width: 20px;
  height: 20px;
}

.icon-circle:hover {
  background: var(--primary-green);
  color: #121212;
}

.dashboard-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.dashboard-card {
  background-color: #313131;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid #313131;
}

.dashboard-desc {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 40px;
  line-height: 1.6;
  text-align: center;
}

.progress-container {
  margin-bottom: 40px;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  color: #888;
  font-size: 12px;
  margin-bottom: 10px;
}

.progress-bar-bg {
  height: 12px;
  background: #444;
  border-radius: 6px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #5dbb3e, #72E549);
  border-radius: 6px;
}

.progress-bottom-labels {
  display: flex;
  justify-content: space-between;
  color: #888;
  font-size: 12px;
  margin-top: 10px;
}

.referral-stats {
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.referral-stats h3 {
  color: #888;
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 16px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  color: #666;
}

.stat-val {
  color: #ccc;
}

.stat-val.white {
  color: #fff;
  font-weight: 500;
}

.impact-graph-container {
  position: relative;
  padding: 20px;
  border-radius: 20px;
}

.graph-header {
  display: flex;
  justify-content: flex-end;
  color: #888;
  font-size: 12px;
  margin-bottom: 20px;
  gap: 20px;
}

.impact-graph {
  width: 100%;
  height: auto;
}

.input-field {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 12px;
  border: none;
  background: #f0f0f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: #313131;
}

.signup-row {
  display: flex;
  gap: 10px;
  width: 100%;
}

.input-field:focus {
  outline: 2px solid var(--primary-green);
  background: #fff;
}

/* Impact Card Redesign */
.impact-card {
  background: #313131;
  /* Darker background from design */
  border-radius: 30px;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid #313131;
}

.impact-graph-container {
  position: relative;
  padding-top: 20px;
}

.graph-header {
  display: flex;
  justify-content: flex-end;
  /* Align controls to right */
  gap: 15px;
  margin-bottom: 20px;
}

.graph-dropdown {
  background: transparent;
  color: #ccc;
  border: none;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  font-weight: 300;
  appearance: none;
  /* Remove default arrow */
  padding-right: 15px;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23cccccc%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 2px top 50%;
  background-size: 10px auto;
}

.graph-dropdown:focus {
  outline: none;
  color: #fff;
}

.impact-graph text {
  fill: #727272;
  font-size: 12px;
  font-weight: 300;
  stroke: none;
}

.grid-line {
  stroke: #444;
  stroke-width: 1;
}

/* Hide the old big number display as per design it seems less prominent or removed */
.total-saved-display {
  display: none;
}

/* Interactive Progress Slider */
.range-container {
  padding: 20px 0;
}

.progress-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  background: #444;
  border-radius: 6px;
  outline: none;
  opacity: 0.9;
  transition: opacity .2s;
  cursor: pointer;
}

.progress-slider:hover {
  opacity: 1;
}

.progress-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(114, 229, 73, 0.5);
  border: 4px solid var(--primary-green);
  margin-top: -6px;
  /* Center thumb on track */
}

.progress-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(114, 229, 73, 0.5);
  border: 4px solid var(--primary-green);
}

.range-marketing {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  color: #666;
  position: relative;
}

.range-marketing span {
  position: relative;
  transition: color 0.3s;
}

.range-marketing span.active-tier {
  color: var(--primary-green);
  font-weight: 500;
}

/* Progress Redesign Styles */
.progress-wrapper {
  position: relative;
  padding: 20px 0 10px;
  margin-bottom: 20px;
}

.labels-track {
  position: relative;
  height: 30px;
  margin-bottom: 5px;
  width: 100%;
}

/* Restored and Updated Slider Styles */
.floating-label {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  color: #ccc;
  font-size: 14px;
  font-weight: 300;
  white-space: nowrap;
  transition: left 0.1s linear;
  pointer-events: none;
  /* Let clicks pass through */
}

.target-label {
  position: absolute;
  top: 0;
  right: 0;
  color: #888;
  font-size: 14px;
  font-weight: 300;
}

/* Customizing the slider to look like the design's thick pill shape */
.styled-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 16px;
  /* Thick track */
  background: #444;
  /* Fallback background */
  border-radius: 999px;
  /* Full pill shape */
  outline: none;
  cursor: pointer;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Chrome/Safari Thumb */
.styled-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(114, 229, 73, 0.4);
  margin-top: -4px;
  /* Centers 24px thumb on 16px track: (16 - 24) / 2 */
}

/* Firefox Thumb */
.styled-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(114, 229, 73, 0.4);
  border: none;
  transform: translateY(0);
}

.tier-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: #666;
  font-size: 14px;
  font-weight: 300;
}

.tier-labels span.active-tier-text {
  color: #ccc;
}

/* Stats List Redesign */
.referral-stats-list {
  margin-top: 20px;
}

.referral-stats-list h3 {
  color: #888;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 20px;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
  display: inline-block;
}

.stats-list-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  margin-bottom: 8px;
  font-size: 15px;
  align-items: baseline;
}

.stats-label {
  color: #888;
  font-weight: 300;
}

.stats-value {
  color: #fff;
  font-weight: 400;
}

/* Contact Page Styles */
.contact-page {
  padding-top: 150px;
  /* Space from fixed nav */
  padding-bottom: 100px;
  min-height: 80vh;
}

.contact-hero {
  display: flex;
  align-items: baseline;
  gap: 60px;
  margin-bottom: 80px;
}

.contact-hero h1 {
  font-size: 100px;
  /* Consistently 100px */
  font-weight: 200;
  /* Thin weight */
  color: #313131;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.highlight-green {
  color: var(--primary-green);
  font-weight: 300;
}

.contact-subtext {
  font-size: 13px;
  color: #ccc;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.8;
  text-transform: uppercase;
  max-width: 400px;
}

.contact-form {
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 50px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 16px;
  color: #313131;
  margin-bottom: 15px;
  font-weight: 400;
}

.form-input {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
  font-size: 14px;
  color: #666;
  outline: none;
  transition: border-color 0.3s;
  background: transparent;
  font-weight: 300;
  font-family: 'Sofia Pro', sans-serif;
}

.form-input::placeholder {
  color: #ccc;
}

.form-input:focus {
  border-bottom-color: var(--primary-green);
}

.full-width {
  width: 100%;
  margin-top: 20px;
}

textarea.form-input {
  resize: none;
  min-height: 40px;
  overflow: hidden;
}

.form-submit-container {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.btn-submit {
  background-color: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--primary-green);
  color: #fff;
  box-shadow: 0 5px 15px rgba(114, 229, 73, 0.3);
}

.white-footer {
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

/* Contact Footer Internal Layout */
.footer-content-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.footer-left .copyright {
  color: #313131;
  font-size: 12px;
  font-weight: 500;
}

.footer-center-icons {
  display: flex;
  gap: 20px;
}

.footer-center-icons .social-icon img {
  height: 20px;
  width: auto;
  filter: brightness(0);
  /* Make icons black */
  transition: opacity 0.3s;
}

.footer-center-icons .social-icon:hover img {
  opacity: 0.7;
}

.footer-right-links {
  display: flex;
  gap: 30px;
}

.footer-right-links a {
  color: #313131;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-right-links a:hover {
  color: var(--primary-green);
}

/* About Page Styles */
.about-hero {
  text-align: center;
  padding: 240px 20px 180px;
  max-width: 1200px;
  /* Increased from 800px */
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 100px;
  /* Consistently 100px */
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 200;
  color: #313131;
}

.about-hero h1 span {
  color: var(--primary-green);
  font-weight: 400;
  /* Removed display: block to keep inline */
}

.about-hero p {
  color: #666;
  font-size: 20px;
  /* Increased from 18px */
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 300;
  max-width: 900px;
  /* Align width with heading */
  margin-left: auto;
  margin-right: auto;
}

.tagline {
  color: var(--primary-green);
  font-weight: 500;
  font-size: 16px;
}

.pillar-section {
  padding: 80px 0;
  width: 100%;
}

.pillar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.pillar-section.reverse {
  flex-direction: row-reverse;
}

/* Pillar Styles moved from about.html */
.pillar-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #ccfccb;
  color: #1a1a1a;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
  margin-right: 10px;
}

.pillar-title {
  font-size: 56px;
  /* Increased to 56px */
  font-weight: 200;
  /* Adjusted weight for larger size */
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  color: #111;
  line-height: 1.1;
}

.pillar-desc {
  color: #666;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 16px;
  /* Confirmed 16px */
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.contact-icon {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  fill: currentColor;
  /* Inherit text color */
  transition: fill 0.3s ease;
}

.feature-icon {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex-shrink: 0;
  color: var(--primary-green);
}

.pillar-content {
  flex: 1;
}

.pillar-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.glass-card-wrapper {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 40px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.blob-bg {
  position: absolute;
  background: #e0e0e0;
  opacity: 0.5;
  border-radius: 50%;
  z-index: 0;
  filter: blur(40px);
}

/* Responsive */
@media (max-width: 768px) {

  .pillar-section {
    padding: 40px 20px;
  }

  .pillar-container,
  .pillar-container.reverse {
    flex-direction: column;
    gap: 40px;
  }

  .about-hero h1 {
    font-size: 42px;
  }
}

.bg-white {
  background-color: #ffffff;
}

.bg-light {
  background-color: #fbfbfb;
  /* Very light grey */
}

/* Graphic adjustment */
.pillar-graphic {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Smart Home Page Styles */
.smart-home-body {
  background-color: #313131;
  color: #ffffff;
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
}

.sh-hero {
  text-align: center;
  padding: 60px 0 20px;
}

.sh-hero-title {
  font-size: 100px;
  /* Consistent 100px */
  font-weight: 200;
  /* Thin weight */
  margin-bottom: 24px;
  color: #fff;
  line-height: 1.1;
}

.sh-hero-title .highlight {
  color: var(--primary-green);
  font-weight: 200;
}

.sh-hero-desc {
  font-size: 20px;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
}

.sh-hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 40px auto 0;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  box-sizing: border-box;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.sh-hero-image {
  width: 105.7483%;
  max-width: none;
  height: auto;
  margin-left: -4.4468%;
  margin-top: -2.7114%;
  margin-bottom: -1.8438%;
  display: block;
}

/* Info Panel */
.sh-info-section {
  padding: 20px 0 60px;
}

.sh-info-panel {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  background-color: #313131;
  border-radius: 24px;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sh-info-left h2 {
  font-size: 54px;
  font-weight: 200;
  line-height: 1.1;
  color: #ccc;
  margin: 0;
}

.sh-info-left .highlight {
  color: var(--primary-green);
}

.sh-info-right p {
  color: #ccc;
  font-weight: 300;
  line-height: 1.6;
  font-size: 20px;
  max-width: 500px;
  margin: 0;
}

/* Stats Section */
.sh-stats-section {
  padding: 20px 0 60px;
}

.sh-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sh-stat-card {
  background-color: #313131;
  border-radius: 16px;
  /* padding: 24px; Removed to allow SVG to fill naturally if needed, or re-add if image is too tight */
  padding: 0;
  height: auto;
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid #3d3d3d;
}

.sh-stat-card img {
  width: 100%;
  height: auto;
  display: block;
}


/* Product Section */
.sh-product-section {
  padding: 100px 0 60px;
  background-color: #313131;
  position: relative;
}

.sh-product-container {
  display: flex;
  justify-content: center;
  align-items: center;
  /* align top */
  gap: 100px;
  margin-bottom: 60px;
}

.sh-product-content {
  flex: 1;
  max-width: 400px;
  text-align: left;
}

.sh-product-title {
  font-size: 56px;
  font-weight: 200;
  margin-bottom: 50px;
  color: var(--primary-green);
  line-height: 1;
}

.sh-product-content .sh-feature-item {
  text-align: left;
  align-items: flex-start;
  display: block;
  /* Override flex if needed, or stick to flex-start */
}

.sh-product-title .white {
  color: #fff;
  font-weight: 100;
}

.sh-feature-item {
  margin-bottom: 30px;
}

.sh-feature-item h3 {
  color: var(--primary-green);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 6px;
}

.sh-feature-item p {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

.sh-price {
  font-size: 22px;
  color: var(--primary-green);
  margin-top: 30px;
  font-weight: 400;
}

.sh-product-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  /* Push image down a bit to align with content center/bottom */
}

.sh-product-image img {
  width: 455px;
  /* Increased by 30% from 350px */
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* PowerApp Section */
.sh-powerapp-section {
  padding: 100px 0;
  position: relative;
  /* Maintain dark background */
}

.sh-powerapp-title {
  font-size: 56px;
  font-weight: 200;
  margin-bottom: 80px;
  color: var(--primary-green);
  line-height: 1;
}

.sh-powerapp-title .thin {
  color: #fff;
  font-weight: 100;
}

.sh-feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 120px;
  gap: 80px;
}

.sh-feature-row.reverse {
  flex-direction: row-reverse;
}

.sh-feature-text-col {
  flex: 0 0 45%;
  max-width: 45%;
}

.sh-feature-image-col {
  flex: 0 0 45%;
  max-width: 45%;
  display: flex;
  justify-content: center;
}

.feature-img {
  max-width: 60%;
  /* Reduced from 100% to ~60-70% as requested */
  height: auto;
  border-radius: 50px;
  /* More rounded for phone feel - matched to Index */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  /* Deep shadow */
  border: 14px solid #313131;
  transition: transform 0.3s ease;
}

/* Feature Number & Text */
.sh-feature-content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.sh-feature-number {
  flex-shrink: 0;
  margin-bottom: 20px;
  /* Added margin */
}

/* Corrected selector from .sh-feature-text-body to .sh-feature-text-col children */
.sh-feature-text-col h3 {
  font-size: 32px;
  /* Increased from 24px */
  color: var(--primary-green);
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.sh-icon-wrapper {
  position: relative;
  max-width: 60%;
  margin: 0 auto;
}

.sh-icon-wrapper .feature-img {
  max-width: 100%;
}

.sh-feature-text-col p {
  font-size: 20px;
  /* Increased from 16px */
  color: #ccc;
  font-weight: 300;
  line-height: 1.6;
}

/* PowerAir Section */
.sh-powerair-section {
  padding: 100px 0;
  position: relative;
}

.sh-powerair-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.sh-powerair-content .sh-powerair-text-col {
  flex: 0 0 50%;
  max-width: 50%;
}

.sh-powerair-content .sh-powerair-image-col {
  flex: 0 0 45%;
  max-width: 45%;
  display: flex;
  justify-content: center;
}

.sh-powerair-img {
  /* Increased by 30% via scale */
  transform: scale(1.3);
  max-width: 100%;
  height: auto;
}

.sh-powerair-title {
  font-size: 56px;
  font-weight: 200;
  margin-bottom: 50px;
  color: var(--primary-green);
  line-height: 1;
}

.sh-powerair-title .thin {
  color: #fff;
  font-weight: 100;
}

.sh-powerair-feature {
  margin-bottom: 30px;
}

.sh-powerair-feature h3 {
  font-size: 24px;
  color: var(--primary-green);
  font-weight: 400;
  margin-bottom: 8px;
}

.sh-powerair-feature p {
  font-size: 16px;
  color: #e0e0e0;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

/* Button Styling matches design: dark bg, green text/border? Or fully green? 
   Design shows: Dark button, Green Text "Full Data Sheet", maybe thin border? 
   Let's check Index for button styles if any. 
   Usually "Full Data Sheet" is a secondary CTA. 
*/
.sh-btn-datasheet {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 32px;
  background-color: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  /* Subtle border */
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.sh-btn-datasheet:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: #fff;
  box-shadow: 0 5px 15px rgba(114, 229, 73, 0.3);
}

/* Modal Styling */
.sh-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(217, 217, 217, 0.95);
  /* Light grey background #D9D9D9 */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(5px);
}

.sh-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sh-modal-content {
  background: transparent;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sh-modal-image {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.sh-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #313131;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.sh-modal-close:hover {
  color: var(--primary-green);
}

/* Powerful Savings Section */
.sh-savings-section {
  padding: 100px 0;
  background-color: #313131;
  text-align: center;
}

.sh-savings-content {
  max-width: 800px;
  margin: 0 auto;
}

.sh-savings-title {
  font-size: 56px;
  font-weight: 200;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.sh-savings-title .white {
  color: #fff;
  font-weight: 200;
  /* Increased from 100 to match Index */
}

.sh-savings-subtitle {
  font-size: 16px;
  color: #ccc;
  /* Changed from #fff to match Index */
  font-weight: 300;
  margin-bottom: 10px;
}

.sh-savings-instruction {
  font-size: 16px;
  /* Increased from 14px */
  color: #ccc;
  /* Changed from #999 */
  font-weight: 300;
  margin-bottom: 60px;
}

/* Slider Styling */
.sh-slider-container {
  position: relative;
  margin-bottom: 60px;
  padding: 0 40px;
}

.sh-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: #444;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.sh-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 4px solid var(--primary-green);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s;
  margin-top: -9px;
  /* center on track */
}

.sh-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.sh-slider-dynamic-label {
  text-align: center;
  margin-top: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}

.sh-savings-results {
  margin-bottom: 40px;
}

.sh-savings-label {
  font-size: 20px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 10px;
}

.sh-savings-amount {
  font-size: 80px;
  color: var(--primary-green);
  font-weight: 200;
  margin-bottom: 10px;
  line-height: 1;
}

.sh-savings-co2 {
  font-size: 20px;
  color: #fff;
  /* Changed from #ccc to match Index */
  font-weight: 300;
}

.sh-savings-disclaimer {
  font-size: 14px;
  /* Increased from 12px */
  color: #666;
  max-width: 700px;
  /* Increased from 600px */
  margin: 0 auto;
  line-height: 1.5;
  /* Adjusted line height */
  font-weight: 300;
}

/* Energy Insight Section */
.sh-energy-insight {
  padding: 100px 0;
  background-color: #313131;
  /* Matches surrounding dark theme */
  text-align: center;
}

.sh-energy-content {
  max-width: 800px;
  /* Or potentially wider for the diagram if needed */
  margin: 0 auto;
}

.sh-energy-title {
  font-size: 64px;
  font-weight: 200;
  color: var(--primary-green);
  margin-bottom: 30px;
}

.sh-energy-title .thin {
  color: #fff;
  font-weight: 100;
}

.sh-energy-text {
  font-size: 16px;
  color: #ccc;
  font-weight: 300;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 42px;
}

.sh-energy-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.sh-energy-diagram img {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  height: auto;
  padding: 0 20px;
}

/* All-In-One Solution Section */
.sh-solution-section {
  padding: 100px 0;
  background-color: #313131;
  text-align: center;
}

.sh-solution-content {
  max-width: 900px;
  margin: 0 auto;
}

.sh-solution-title {
  font-size: 64px;
  font-weight: 200;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.sh-solution-title .white {
  color: #fff;
  font-weight: 100;
}

.sh-solution-subtitle {
  font-size: 16px;
  color: #ccc;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.sh-bedroom-selector {
  text-align: center;
  margin-bottom: 40px;
}

.sh-bedroom-dropdown {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 300;
  color: #313131;
  background-color: #e8e8e8;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  transition: all 0.3s ease;
}

.sh-bedroom-dropdown:hover {
  background-color: #d0d0d0;
  border-color: #999;
}

.sh-bedroom-dropdown:focus {
  outline: none;
  border-color: var(--primary-green);
}

.sh-pricing-table {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.sh-pricing-table-grid {
  width: 100%;
  max-width: 638px;
  background-color: #e8e8e8;
  border-radius: 20px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid #666;
}

.sh-pricing-table-grid thead th {
  background-color: #c0c0c0;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  color: #313131;
  border-bottom: 2px solid #666;
}

.sh-pricing-table-grid thead th:last-child {
  background-color: #e8e8e8;
}

.sh-pricing-table-grid thead th:first-child {
  background-color: #e8e8e8;
  text-align: left;
  padding: 15px 20px;
  border-bottom: 2px solid #666;
}

.sh-bedroom-dropdown-inline {
  padding: 10px 35px 10px 15px;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23666" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.sh-bedroom-dropdown-inline:hover {
  background-color: #f9f9f9;
  border-color: #999;
}

.sh-bedroom-dropdown-inline:focus {
  outline: none;
  border-color: #666;
}

.sh-pricing-table-grid tbody tr {
  transition: all 0.2s ease;
}

.sh-pricing-table-grid tbody td {
  padding: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #313131;
  border-bottom: 2px solid #666;
}

.sh-pricing-table-grid tbody tr:last-child td {
  border-bottom: none;
}

.sh-pricing-table-grid tbody td.feature-label {
  text-align: left;
  font-weight: 400;
  background-color: #e8e8e8;
}

.sh-pricing-table-grid tbody td.seed-column {
  background-color: #c0c0c0;
}

.sh-pricing-table-grid tbody td.light-column {
  background-color: #e8e8e8;
}

.sh-pricing-table-grid tbody td.checkmark {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-green);
}

.sh-btn-preorder {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sh-btn-preorder:hover {
  background-color: var(--primary-green);
  color: #252525;
}

/* Energy Efficiency Rewards Section */
.sh-rewards-section {
  padding: 100px 0;
  background-color: #313131;
  text-align: center;
}

.sh-rewards-content {
  max-width: 900px;
  margin: 0 auto;
}

.sh-rewards-title {
  font-size: 64px;
  font-weight: 200;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.sh-rewards-title .white {
  color: #fff;
  font-weight: 100;
}

.sh-rewards-subtitle {
  font-size: 16px;
  color: #ccc;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.sh-rewards-table {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.sh-rewards-table-grid {
  width: 100%;
  max-width: 638px;
  background-color: #e8e8e8;
  border-radius: 20px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid #666;
}

.sh-rewards-table-grid thead th {
  background-color: #c0c0c0;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  color: #313131;
  border-bottom: 2px solid #666;
}

.sh-rewards-table-grid thead th:last-child {
  background-color: #e8e8e8;
}

.sh-rewards-table-grid thead th:first-child {
  background-color: #e8e8e8;
  text-align: left;
  padding: 15px 20px;
  border-bottom: 2px solid #666;
}

.sh-rewards-table-grid tbody td {
  padding: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #313131;
  border-bottom: 2px solid #666;
}

.sh-rewards-table-grid tbody tr:last-child td {
  border-bottom: none;
}

.sh-rewards-table-grid tbody td.feature-label {
  text-align: left;
  font-weight: 400;
  background-color: #e8e8e8;
}

.sh-rewards-table-grid tbody td.seed-column {
  background-color: #c0c0c0;
}

.sh-rewards-table-grid tbody td.light-column {
  background-color: #e8e8e8;
}

.sh-rewards-table-grid tbody td.checkmark {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-green);
}

.sh-rewards-table-grid tbody td.coming-soon {
  font-size: 12px;
  color: #888;
  font-style: italic;
}

.sh-clover-branding {
  text-align: center;
  margin-top: 50px;
}

.sh-clover-text {
  font-size: 24px;
  color: #ccc;
  font-weight: 300;
  margin-bottom: 20px;
}

.sh-clover-text .clover-link {
  color: #ccc;
}

.sh-clover-button {
  display: inline-block;
  transition: transform 0.3s ease;
}

.sh-clover-button:hover {
  transform: scale(1.1);
}

.sh-clover-button-logo {
  width: 158px;
  height: 158px;
  display: block;
  margin: 0 auto;
}

/* ===========================
   Section 9: Features Grid
   =========================== */

.sh-features-section {
  background-color: #313131;
  padding: 80px 20px;
  margin: 0;
}

.sh-features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sh-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}

.sh-feature-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.sh-feature-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.sh-feature-icon {
  width: 160px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sh-feature-icon svg {
  width: 100%;
  height: 100%;
}

.sh-feature-title {
  font-size: 31.5px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
}

.sh-feature-description {
  font-size: 24.5px;
  font-weight: 300;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
}

/* Responsive adjustments for Section 9 */
@media (max-width: 1024px) {
  .sh-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 640px) {
  .sh-features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sh-features-section {
    padding: 60px 20px;
  }
}

/* Cost Recovery Modal */
.sh-cost-modal-content {
  background-color: transparent;
  padding: 0;
  border-radius: 20px;
  max-width: 900px;
  width: 90%;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.sh-cost-table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
  color: #313131;
}

.cost-table th,
.cost-table td {
  padding: 24px 20px;
  text-align: center;
  font-size: 15px;
  border-bottom: 1px solid #d0d0d0;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  /* Subtle vertical separator */
}

.cost-table td:last-child,
.cost-table th:last-child {
  border-right: none;
}

/* Column Backgrounds */
.cost-table th:nth-child(1),
.cost-table td:nth-child(1) {
  background-color: #e6e6e6;
  /* Light */
  font-weight: 500;
  text-align: left;
  min-width: 140px;
  padding-left: 30px;
}

.cost-table th:nth-child(2),
.cost-table td:nth-child(2) {
  background-color: #bfbfbf;
  /* Medium Grey */
  font-weight: 400;
}

.cost-table th:nth-child(3),
.cost-table td:nth-child(3) {
  background-color: #e6e6e6;
  /* Light */
  font-weight: 400;
}

.cost-table th:nth-child(4),
.cost-table td:nth-child(4) {
  background-color: #bfbfbf;
  /* Medium Grey */
  font-weight: 400;
}

.cost-table thead th {
  font-weight: 600;
  font-size: 15px;
  vertical-align: bottom;
  padding: 30px 10px 20px;
  border-bottom: 2px solid #999;
}

.cost-table tbody tr:last-child td {
  border-bottom: none;
}

/* Close Button position - Outside the card */
.sh-modal-overlay .sh-modal-close {
  position: absolute;
  top: 40px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 1010;
}

/* Hide the one inside if it conflicts, but we moved styling to overlay context */

/* ===========================
   Pre-Order Page (Refined)
   =========================== */

body.pre-order-page {
  overflow-x: hidden;
  background-color: #313131;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.pre-order-page .navbar {
  background-color: #313131;

  /* Match Index Page Padding exactly */
  height: 80px;
  /* Force height match */
}

/* Ensure links are grey/white as per general navbar, 
   active link is already green via global styles */

.pre-order-container {
  display: flex;
  min-height: calc(100vh - 80px - 100px);
  width: 100%;
  flex: 1;
}

/* Left Panel */
/* Left Panel */
.po-left {
  width: 40%;
  background-color: #313131;
  color: white;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.po-content-wrapper {
  max-width: 600px;
  width: 100%;
}

.po-logo {
  font-size: 64px;
  font-weight: 200;
  margin-bottom: 5px;
  color: #fff;
  line-height: 1;
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
  /* Ensure font match */
}

.po-logo span {
  color: var(--primary-green);
  font-weight: 200;
  /* Match thin weight of rest of logo */
}

.po-subtitle {
  color: var(--primary-green);
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 400;
}

.po-desc {
  color: #cccccc;
  font-size: 16px;
  line-height: 1.5;
  max-width: 500px;
  margin-bottom: 50px;
}

/* Comparison Table Card */
.comparison-card {
  background: #f5f5f5;
  /* Light background for the card body from design? No, looks like white/grey mix */
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  color: #313131;
  width: 100%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
  border: none;
}

/* Header Row */
.comp-row.header-row {
  background-color: transparent;
  border-bottom: 1px solid #d0d0d0;
  height: 80px;
}

.comp-cell-first {
  flex: 1.2;
  /* Slightly wider */
  padding-left: 30px;
  background: #e0e0e0;
  /* Match Grey usually */
  background: #ffffff;
  /* Actually header first cell is white/transparent in some designs, let's look at image */
  /* Image shows: First column is white. 
     Seed column is grey. 
     Light column is slightly lighter or different grey? 
     Actually:
     First column: White
     Seed Column: Darker Grey
     Light Column: Lighter Grey */

  background: #ffffff;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  color: #313131;
}

.comp-cell-first.header-cell-first {
  /* Holds the dropdown */
  background: #ffffff;
  /* White background */
}

/* Dropdown in Card */
.select-wrapper-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  /* Pill shape */
  padding: 5px 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* Soft shadow */
  width: 140px;
  height: 40px;
  display: flex;
  align-items: center;
  border: 1px solid #eee;
}

.card-dropdown {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: #313131;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 12px;
  cursor: pointer;
  outline: none;
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
}

.comp-col-header {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
}

.col-seed {
  background-color: #bfbfbf;
  /* Darker Grey */
  color: #313131;
}

.col-light {
  background-color: #e6e6e6;
  /* Lighter Grey */
  color: #313131;
}

/* Rows */
.comp-row {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  height: 60px;
  /* Tighter rows */
}

.comp-cell {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Column Backgrounds for Data Rows */
.comp-row .comp-cell-first {
  background-color: #ffffff;
}

/* Seed Column (Middle) */
.comp-row .comp-cell:nth-child(2) {
  background-color: #bfbfbf;
  /* Match header */
}

/* Light Column (Right) */
.comp-row .comp-cell:nth-child(3) {
  background-color: #e6e6e6;
  /* Match header */
}

.check-icon {
  color: #72E549;
  /* Bright green check */
  font-size: 28px;
  font-weight: bold;
}

/* Pricing Row */
.pricing-row {
  height: 80px;
}

.price-cell {
  font-weight: 600;
  font-size: 18px;
  color: #313131;
}


/* ===========================
   Our Commitment Page
   =========================== */

body.commitment-page {
  background-color: #f0faf2;
  /* Very light green bg */
  color: #313131;
  overflow-x: hidden;
}

body.commitment-page .navbar {
  background-color: #313131;
  /* Match Index Page */

  /* Match Index Page Padding */
}

/* Ensure links are grey/black for visibility on light bg */
body.commitment-page .nav-link {
  color: #cccccc;
  /* Match Index Page Link Color */
}

body.commitment-page .nav-link:hover,
body.commitment-page .nav-link.active {
  color: var(--primary-green) !important;
}


/* Hero */
.commitment-hero {
  background-color: #f0faf2;
  /* Ensure consistent bg */
  padding: 80px 0 100px;
  position: relative;
  /* optional subtle gradient to fade to white at bottom or top if desired, but flat #f0faf2 matches design */
}

.hero-container {
  display: flex;
  align-items: center;
  /* Center vertically */
  justify-content: space-between;
  gap: 60px;
}

.hero-left {
  flex: 1;
  max-width: 600px;
}

.commitment-title {
  font-size: 64px;
  font-weight: 200;
  margin-bottom: 40px;
  line-height: 1.1;
  color: #1a1a1a;
}

.commitment-title .highlight-green {
  color: var(--primary-green);
  font-weight: 400;
}

.hero-text {
  font-size: 16px;
  font-weight: 300;
  color: #777;
  margin-bottom: 30px;
  line-height: 1.8;
}


.hero-right {
  flex: 0.8;
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup-wrapper {
  position: relative;
  /* Optional shadow/glow behind phone */
}

.phone-mockup {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  /* Soft float shadow */
}


/* Closing Statement Section */
.commitment-closing {
  background-color: #313131;
  /* Dark Grey */
  padding: 120px 0;
  color: #fff;
  border-top-left-radius: 0;
  /* Design shows straight cut, no curve needed unless specified */
}

.closing-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 100px;
  align-items: flex-start;
}

/* Quote Side */
.closing-label {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.closing-label .highlight-green {
  color: var(--primary-green);
  font-weight: 500;
}


.quote-box {
  position: relative;
  padding-left: 30px;
  border-left: 1px solid var(--primary-green);
  /* Thin green line context? Screenshot has green curve maybe */
  /* Screenshot actually shows a large green hook line */
  border-left: none;
  /* Let's build the hook line with pseudo element if strict pixel perfect */
  padding: 20px 0 20px 40px;
}

/* The Green Hook Line */
.quote-box::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 60px;
  height: 100%;
  border-left: 1px solid var(--primary-green);
  border-top: 1px solid var(--primary-green);
  border-bottom: 1px solid var(--primary-green);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  /* Adjust height/position to frame specific text */
  height: calc(100% + 40px);
  pointer-events: none;
}

/* Wait, the design shows top-right-radius hook? 
   Looking closer at provided low-res screenshot:
   It has a green line starting from top-right of text, going up, left, down, then right at bottom.
   It frames the quote deeply. 
   Let's approximate a left bracket for now as per "Closing Statement" standard designs */

/* Re-eval design: Green quote mark graphic? Or line?
   "Start Quote" is a large green graphic.
   "End Quote" is a large green graphic.
   Also a thin green line bracket. */

.quote-mark {
  color: var(--primary-green);
  font-size: 60px;
  line-height: 1;
  font-family: serif;
  /* or image asset */
  font-weight: bold;
}

.quote-mark.start {
  margin-bottom: 10px;
}

.quote-mark.end {
  text-align: right;
  margin-top: 10px;
}

.quote-text {
  font-size: 28px;
  font-weight: 300;
  /* Thin italic? */
  font-style: italic;
  line-height: 1.4;
  color: #fff;
}

.quote-author {
  margin-top: 30px;
  padding-left: 5px;
}

.author-name {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.author-title {
  font-weight: 300;
  font-size: 14px;
  color: #aaa;
}

/* Pledge Side */
.pledge-wrapper {
  margin-top: 150px;
  /* Push down to align with middle/bottom of quote */
}

.pledge-title {
  color: var(--primary-green);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.pledge-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: #ccc;
}

/* Ensure links are grey/black for visibility on light bg */
/* Ensure consistent header for light page */
body.commitment-page header {
  background-color: #313131;
}


/* Hero */
.commitment-hero {
  background-color: #f0faf2;
  /* Ensure consistent bg */
  padding: 80px 0 100px;
  position: relative;
  /* optional subtle gradient to fade to white at bottom or top if desired, but flat #f0faf2 matches design */
}

.hero-container {
  display: flex;
  align-items: center;
  /* Center vertically */
  justify-content: space-between;
  gap: 60px;
}

.hero-left {
  flex: 1;
  max-width: 600px;
}

.commitment-title {
  font-size: 64px;
  font-weight: 200;
  margin-bottom: 40px;
  line-height: 1.1;
  color: #1a1a1a;
}

.commitment-title .highlight-green {
  color: var(--primary-green);
  font-weight: 400;
}

.hero-text {
  font-size: 16px;
  font-weight: 300;
  color: #777;
  margin-bottom: 30px;
  line-height: 1.8;
}


.hero-right {
  flex: 0.8;
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup-wrapper {
  position: relative;
  /* Optional shadow/glow behind phone */
}

.phone-mockup {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  /* Soft float shadow */
}


/* Closing Statement Section */
.commitment-closing {
  background-color: #313131;
  /* Dark Grey */
  padding: 120px 0;
  color: #fff;
  border-top-left-radius: 0;
  /* Design shows straight cut, no curve needed unless specified */
}

.closing-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 100px;
  align-items: flex-start;
}

/* Quote Side */
.closing-label {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.closing-label .highlight-green {
  color: var(--primary-green);
  font-weight: 500;
}


.quote-box {
  position: relative;
  padding-left: 30px;
  /* Large green bracket logic */
  padding: 30px 40px;
  border: 1px solid var(--primary-green);
  /* Full box just for testing layout first? No, use pseudo */
  border: none;
}

/* The Green Hook Line - Custom Shape approximation based on design */
.quote-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-left: 1px solid var(--primary-green);
  border-bottom: 1px solid var(--primary-green);
  border-top: 1px solid var(--primary-green);
  border-radius: 20px 0 0 20px;
  /* Open on right? Design shows bracket style */

  /* Actually design has a top-right corner start, goes left, down, right. */
  border-right: none;
  width: 90%;
  /* Stops before right edge */

  /* Let's try a simple left bracket for MVP */
  border-left: 2px solid var(--primary-green);
  border-bottom: 2px solid var(--primary-green);
  border-top: 2px solid var(--primary-green);
  border-radius: 20px;
  left: -20px;
  width: 20px;
  /* Small width */
  height: calc(100% + 20px);
  top: -10px;
  display: none;
  /* Hide complex shape for refined Quote Marks only first */
}

/* Let's use the explicit Green Quote Marks */


.quote-wrapper {
  position: relative;
}

/* A large green bracket line graphic using SVG or borders */
.quote-wrapper::before {
  content: '';
  position: absolute;
  top: 60px;
  /* Below Closing Statement */
  left: -20px;
  right: 50px;
  bottom: -20px;
  border-top: 1px solid var(--primary-green);
  border-left: 1px solid var(--primary-green);
  border-bottom: 1px solid var(--primary-green);
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  pointer-events: none;
  width: 50%;
  /* Only covers left half */
  height: auto;
}

/* Actually, let's just make the text look good first */

.quote-mark {
  color: var(--primary-green);
  font-size: 80px;
  line-height: 0.5;
  font-family: serif;
  font-weight: bold;
}

.quote-mark.start {
  margin-bottom: 20px;
  display: block;
}

.quote-mark.end {
  text-align: right;
  margin-top: 20px;
  display: block;
  float: right;
}

.quote-text {
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: #fff;
  clear: both;
  padding: 0 10px;
}

.quote-author {
  margin-top: 40px;
  padding-left: 10px;
  clear: both;
}

.author-name {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.author-title {
  font-weight: 300;
  font-size: 14px;
  color: #aaa;
}

/* Pledge Side */
.pledge-wrapper {
  margin-top: 150px;
  /* Align with middle of quote */
}

.pledge-title {
  color: var(--primary-green);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.pledge-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: #ccc;
}


/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-right {
    margin-top: 40px;
  }

  .closing-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .pledge-wrapper {
    margin-top: 0;
  }

  .quote-mark.start,
  .quote-mark.end {
    font-size: 60px;
  }

  .quote-text {
    font-size: 22px;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-right {
    margin-top: 40px;
  }

  .closing-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .pledge-wrapper {
    margin-top: 0;
  }
}



/* Right Panel */
.po-right {
  width: 60%;
  background-color: #f6f6f6;
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.po-form-wrapper {
  max-width: 500px;
  width: 100%;
}

.buy-title {
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
  font-size: 54px;
  font-weight: 200;
  /* Thin */
  margin-bottom: 50px;
  color: #4a4a4a;
  letter-spacing: 0px;
}

.buy-form {
  width: 100%;
}

.po-form-wrapper .form-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 30px;
  width: 100%;
}

.po-form-wrapper .form-label {
  font-size: 16px;
  margin-bottom: 5px;
  text-align: left;
}

.form-label {
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
  font-weight: 300;
  color: #999;
  font-size: 18px;
  /* Slightly larger labels */
}

.form-select,
.form-input,
.form-display {
  background: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 15px 20px !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  box-sizing: border-box !important;
  text-align: left !important;
  text-align-last: left !important;
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
  font-size: 16px;
  color: #555;
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);

  flex: 1 1 100% !important;
  font-weight: 400;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;

  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

input.form-input,
select.form-select {
  display: block;
  line-height: normal;
  padding: 12px 24px !important;
  height: 48px !important;
}



/* Ensure display div matches exactly */
.form-display {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.form-input-container {
  position: relative;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  flex: 1 1 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.form-select {
  width: 100%;
  appearance: none;
  cursor: pointer;
}

/* Promo Layout */
.discount-text {
  text-align: right;
  font-size: 14px;
  color: #313131;
  margin-top: 8px;
  margin-right: 15px;
  font-weight: 500;
}

.total-row {
  margin-top: 50px;
  align-items: stretch;
  gap: 10px;
}

.total-row .form-label {
  font-size: 20px;
  font-weight: 400;
  color: #666;
}

.total-row .form-display {
  font-weight: 500;
}

.pay-btn-container {
  position: absolute;
  bottom: 30px;
  /* Moved down from 60px */
  right: 60px;
  z-index: 10;
}

.pay-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-green);
  border: none;
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  /* Soft floating shadow */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.pay-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  color: #4bb32b;
}

@media (max-width: 1300px) {

  /* Stack if screen is too small */
  .pre-order-container {
    flex-direction: column;
    height: auto;
  }

  .po-left,
  .po-right {
    width: 100%;
    padding: 60px 40px;
  }

  .po-left {
    height: auto;
    min-height: 500px;
  }

  .pay-btn-container {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
}

/* Payment Page Styles */
/* Payment Page Styles */
.payment-page {
  background-color: #fff;
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
  /* Removed overflow: hidden and height: 100vh to allow natural scrolling with header/footer */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.payment-container {
  display: flex;
  /* Use min-height to ensure it takes up available space but can grow */
  min-height: calc(100vh - 80px - 100px);
  /* Approx minus header and footer height */
  width: 100%;
  flex: 1;
  /* Push footer down */
}

.payment-left {
  width: 40%;
  background-color: #313131;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  color: #fff;
  position: relative;
}

.payment-logo {
  font-size: 48px;
  font-weight: 200;
  margin-bottom: 5px;
}

.payment-logo .green-text {
  color: var(--primary-green);
  font-weight: 300;
}

.payment-logo .white-text {
  color: #fff;
  font-weight: 200;
}

.payment-subtitle {
  color: var(--primary-green);
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 400;
}

.payment-desc {
  color: #ccc;
  font-size: 16px;
  line-height: 1.5;
  max-width: 400px;
  font-weight: 300;
  margin-bottom: 40px;
}

.payment-device-image {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 0;
}

.payment-device-image img {
  max-width: 80%;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.payment-right {
  width: 60%;
  background-color: #f5f5f5;
  /* Light grey background */
  padding: 80px 100px;
  /* Generous padding */
  display: flex;
  flex-direction: column;
  position: relative;
  /* Remove internal scroll, let page scroll */
}

/* Checkout Page Specifics */
.form-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-icons {
  display: flex;
  gap: 10px;
}

.card-icon {
  width: 72px;
  height: 48px;
  border-radius: 4px;
}

.card-icon-img {
  height: 100%;
  width: auto;
  max-width: 72px;
  object-fit: contain;
}

.payment-summary {
  margin-top: 40px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: #ccc;
  font-size: 14px;
  font-weight: 400;
}

.total-row {
  margin-top: 25px;
  font-weight: 500;
  font-size: 16px;
  color: #313131;
}

/* Payment Inputs */
.payment-input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 8px;
  border: none;
  background-color: #ffffff;
  color: #313131;
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
  font-size: 14px;
  outline: none;
  box-shadow:
    4px 4px 10px rgba(0, 0, 0, 0.03),
    -4px -4px 10px rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

.payment-input::placeholder {
  color: #aaa;
  font-weight: 300;
}

.payment-pay-btn2 {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-green);
  border: none;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  box-shadow:
    10px 10px 30px rgba(0, 0, 0, 0.08),
    -10px -10px 30px rgba(255, 255, 255, 1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.payment-pay-btn2:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Scrollbar styling removed as we rely on body scroll now */

.payment-form-content {
  max-width: 600px;
  width: 100%;
  margin-bottom: 100px;
  /* Space for button area */
}

.form-section {
  margin-bottom: 40px;
}

.form-section-title {
  font-size: 18px;
  color: #999;
  font-weight: 300;
  margin-bottom: 20px;
}

.form-row-payment {
  margin-bottom: 20px;
}

.payment-input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
  border: none;
  background: #ffffff;
  color: #313131;
  font-size: 14px;
  font-family: inherit;
  font-weight: 300;
  /* Soft neumorphic shadow as per pre-order design */
  box-shadow:
    4px 4px 10px rgba(0, 0, 0, 0.03),
    -4px -4px 10px rgba(255, 255, 255, 1);
  outline: none;
}

.payment-input::placeholder {
  color: #ccc;
}

.payment-input:focus {
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.05), inset -2px -2px 5px rgba(255, 255, 255, 1);
}

.split-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.split-row .payment-input {
  width: 150px;
  /* Short postcode input */
  flex-shrink: 0;
}

.billing-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #999;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
}

.custom-checkbox {
  width: 24px;
  height: 24px;
  background: #fff;
  /* or light grey */
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
}

.custom-checkbox.checked {
  color: var(--primary-green);
  font-weight: bold;
}

/* Pay Button - Fixed/Sticky Position or just nice placement */
.payment-pay-btn {
  position: absolute;
  /* Using absolute inside payment-right relative */
  bottom: 40px;
  right: 40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  /* White bg */
  color: var(--primary-green);
  border: none;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.payment-pay-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
  .payment-container {
    flex-direction: column;
    height: auto;
  }

  .payment-left,
  .payment-right {
    width: 100%;
    padding: 40px;
  }

  .payment-left {
    height: auto;
    min-height: 500px;
  }

  .payment-pay-btn {
    position: static;
    margin-top: 40px;
    margin-left: auto;
  }
}

/* FAQs Page Styles */
body.faq-page {
  background-color: #313131;
  /* Dark theme */
  color: #fff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 100px;
  /* Bottom padding for footer space */
  position: relative;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.faq-title {
  color: var(--primary-green);
  font-size: 100px;
  /* Standard Hero Size */
  font-weight: 200;
  /* Standard Hero Weight */
  margin-bottom: 24px;
  line-height: 1.1;
}

.faq-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.faq-search-input {
  background-color: #2a2a2a;
  border: 1px solid #444;
  border-radius: 20px;
  padding: 8px 15px 8px 35px;
  color: #ccc;
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
  font-size: 14px;
  width: 200px;
  outline: none;
}

.search-btn-mock {
  background-color: #2a2a2a;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 14px;
  color: #ccc;
  border: none;
  cursor: pointer;
  text-align: center;
  min-width: 100px;
}

.section-title {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

.faq-item {
  background-color: #3b3b3b;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid #444;
}

.faq-item.active {
  border: 1px solid var(--primary-green);
  background-color: #3b3b3b;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 300;
  color: #aaa;
}

.faq-item.active .faq-question {
  color: #ccc;
}

.faq-icon {
  width: 24px;
  height: 24px;
  fill: #aaa;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  fill: #fff;
}

.faq-answer {
  padding: 0 20px 20px;
  color: #ccc;
  font-weight: 200;
  line-height: 1.6;
  display: none;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
  display: block;
  border-top: 1px solid #444;
  padding-top: 20px;
}

.buy-now-floating {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background-color: #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  z-index: 100;
}


/* Contact Us Page Styles */
.contact-body {
  background-color: #ffffff;
  color: #313131;
}

.contact-page {
  padding-top: 120px;
  /* Increased from 60px to prevent nav overlap */
  padding-bottom: 100px;
  background-color: #ffffff;
  /* Ensure background is white */
}

/* The Card Container */
.contact-card {
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 80px 100px;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  /* Very subtle shadow */
  max-width: 1100px;
  /* Wider to accommodate side-by-side */
  margin: 0 auto;
}

.contact-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Align usually centers vertically */
  margin-bottom: 100px;
  /* Large gap before form */
  border-bottom: none;
}

.header-title h1 {
  font-size: 80px;
  /* Very Large */
  font-weight: 100;
  /* Thin - changed from 200 */
  margin: 0;
  line-height: 1;
  color: #313131;
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
}

.header-title .highlight-green {
  color: var(--primary-green);
  font-weight: 400;
  /* Slightly bolder */
}

.header-text {
  max-width: 600px;
  text-align: left;
  padding-left: 40px;
}

.contact-subtext {
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
  /* Use Outfit for the sharp look */
  font-size: 11px;
  color: #bbb;
  /* Very light grey */
  letter-spacing: 2px;
  line-height: 2;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 100px;
  /* Large horizontal gap */
  margin-bottom: 60px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
  font-size: 14px;
  /* Smaller */
  color: #1a1a1a;
  margin-bottom: 30px;
  /* More space between label and input */
  font-weight: 500;
  /* Slightly bolder */
}

.contact-input {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  /* Lighter grey */
  padding: 0 0 12px 0;
  /* Text sits on line, 12px padding bottom */
  font-size: 14px;
  /* Same as label */
  outline: none;
  transition: all 0.3s ease;
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
  color: #313131;
  background-color: transparent;
  border-radius: 0;
  width: 100%;
}

.contact-input::placeholder {
  color: #ccc;
  /* Light placeholder */
  font-weight: 300;
}

.contact-input:focus {
  border-bottom-color: var(--primary-green);
}

.form-group.full-width {
  width: 100%;
  margin-bottom: 80px;
  /* Big gap before button */
}

#message {
  resize: none;
  overflow: hidden;
  height: 60px;
  /* Increased by 100% from 30px */
}

.form-submit-container {
  text-align: center;
}

.btn-submit {
  background-color: var(--primary-green);
  /* Bright green */
  color: #fff;
  border: none;
  padding: 16px 50px;
  border-radius: 30px;
  /* Pill shape */
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #5ccb39;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(114, 229, 73, 0.3);
}

/* Ensure navbar is dark on this page */
.contact-body .navbar {
  background-color: #313131;
}

/* Ensure footer is consistent */
.contact-body footer {
  background-color: #ffffff;
  border-top: 1px solid #f0f0f0;
}

/* ===========================
   Installation Page Styles
   =========================== */

body.installation-page {
  background-color: #313131;
  color: #fff;
  font-family: 'Sofia Pro', 'Outfit', sans-serif;
  overflow-x: hidden;
}

/* Hero */
.install-hero {
  padding: 120px 0 60px;
  text-align: center;
}

.install-hero .hero-content {
  max-width: 1000px;
  margin: 0 auto;
}

.install-title {
  font-size: 64px;
  font-weight: 400;
  color: var(--primary-green);
  margin-bottom: 24px;
  line-height: 1.1;
  text-align: center;
}

.install-title .light-text {
  color: #fff;
  font-weight: 200;
}

.install-description {
  font-size: 20px;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
}

/* Diagram Section */
.install-diagram-section {
  padding: 60px 0 100px;
}

.diagram-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1600px;
  padding: 0 40px;
}

.diagram-board-wrapper {
  flex: unset;
  max-width: none;
  width: 80%;
  overflow: visible;
  display: flex;
  justify-content: center;
}

.diagram-board {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .diagram-container {
    padding: 0 20px;
    /* Reduced padding */
  }

  .diagram-board-wrapper {
    width: 100%;
    /* Increased from 80% to 100% (+25% base width, plus reduced padding effect ~33%) */
  }
}

.diagram-labels-col {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-left: 20px;
}

.diagram-label-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.label-line-connector {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 150px;
}

.label-text {
  color: #cccccc;
  font-size: 16px;
  font-weight: 300;
  white-space: nowrap;
}

.green-line {
  height: 2px;
  background-color: var(--primary-green);
  flex-grow: 1;
  min-width: 30px;
}

.green-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-green);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--primary-green);
}

.label-icon-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  min-width: 120px;
}

.icon-pair {
  display: flex;
  gap: 20px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 60px;
}

.diagram-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  /* Assuming icons are white/grey, filter to green if needed or use as is */
}

.icon-caption {
  font-size: 10px;
  color: #999;
  font-weight: 300;
  text-align: center;
}

/* Scenario */
.install-scenario {
  padding: 0 0 120px;
  text-align: center;
}

.scenario-content {
  max-width: 800px;
  margin: 0 auto;
}

.scenario-title {
  font-size: 32px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 24px;
}

.scenario-description {
  font-size: 18px;
  color: #999;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .diagram-container {
    flex-direction: column;
    gap: 40px;
  }

  .diagram-labels-col {
    padding-left: 0;
    max-width: 100%;
    align-items: center;
  }

  .diagram-label-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
  }

  .label-line-connector {
    justify-content: center;
    width: 100%;
    margin-bottom: 15px;
  }

  .green-line {
    display: none;
  }

  .green-dot {
    display: none;
  }
}

/* PowerHome Section (Dark Redesign) */
.power-home {
  background-color: #313131;
  padding: 100px 0;
  color: #ffffff;
}

.power-home-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.power-home-left {
  flex: 1;
  max-width: 600px;
}

.power-home-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}



.section-title-thin {
  font-size: 64px;
  font-weight: 400;
  /* Normal weight for 'Power' */
  color: var(--primary-green);
  margin-bottom: 50px;
  line-height: 1;
}

.section-title-thin span.font-normal {
  font-weight: 300;
  /* Light weight for 'Home' */
  color: #fff;
}

.feature-list-clean {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
}

.feature-list-clean li {
  margin-bottom: 30px;
}

.feature-list-clean h4 {
  color: var(--primary-green);
  font-size: 20px;
  font-weight: 400;
  /* Regular weight matching design */
  margin-bottom: 8px;
}

.feature-list-clean p {
  color: #cccccc;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 500px;
}

.power-price {
  font-size: 20px;
  /* Match h4 size */
  color: var(--primary-green);
  font-weight: 400;
  /* Match h4 weight */
  margin-top: 30px;
}

.hub-image {
  max-width: 100%;
  width: 400px;
  /* Adjust based on actual image size preference */
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));

}

/* ===========================
   Mobile Navigation & Global Responsive
   =========================== */

/* Hamburger Menu Icon */
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
  /* Above navbar */
  padding: 10px;
}

.mobile-nav-only {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--primary-green);
}

/* Mobile Media Query */
@media (max-width: 900px) {

  /* Navigation */
  .navbar {
    padding: 0 20px;
    background-color: #313131;
    /* Ensure dark bg */
    position: relative;
    /* Ensure stacking context */
    height: 80px;
    /* Ensure height if missing */
    display: flex;
    /* Ensure flex if missing */
    align-items: center;
    justify-content: space-between;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    left: -100%;
    top: 80px;
    gap: 0;
    flex-direction: column;
    background-color: #313131;
    width: 100%;
    height: calc(100vh - 80px);
    text-align: center;
    transition: 0.3s ease;
    padding: 40px 0;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-link {
    display: block;
    padding: 20px 0;
    font-size: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
  }

  .nav-link.mobile-nav-only {
    display: block;
    /* Show on mobile */
  }

  /* Ensure Contact Button is reachable or integrated */
  .contact-btn {
    display: none;
    /* Hide top contact button on mobile, user can add to menu if needed, or keeping it might crowd header */
    /* Alternatively, keep it but small? Let's hide for now to declutter header */
  }

  /* Global Typography Adjustments */
  .hero h1,
  .app-title,
  .section-title-thin,
  .calc-title,
  .install-title,
  .feature-title,
  .sh-solution-title,
  .sh-rewards-title,
  .sh-product-title,
  .sh-powerapp-title,
  .sh-powerair-title,
  .sh-savings-title,
  .sh-energy-title {
    font-size: 42px !important;
    /* Force override */
    line-height: 1.1;
  }

  .savings-display,
  .sh-savings-amount {
    font-size: 48px !important;
    white-space: nowrap;
  }

  /* Global Layout Adjustments */
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 150px 0;
    /* Increased from 80px 0 */
  }

  .hero h1 {
    margin-bottom: 30px;
    /* Added spacing below title */
  }

  .hero p {
    margin-bottom: 40px;
    /* Added spacing below paragraph */
  }

  /* Feature Sections Stacking */
  .feature-section,
  .feature-section.reverse {
    flex-direction: column !important;
    /* Force column */
    padding: 200px 0;
    gap: 40px;
    text-align: center;
    height: auto;
    /* Reset any fixed heights */
  }

  .feature-content {
    max-width: 100%;
    padding: 0;
  }

  /* Index Page Feature Images (Match Smart Home) */
  /* Index Page Feature Images (Match Smart Home) */
  .feature-image img,
  .feature-img {
    max-width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
  }

  /* Constrain wrapper to correct size so icon positions relative to image */
  .feature-image .mockup-wrapper {
    width: 75%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    position: relative;
  }

  .feature-image .phone-mockup {
    width: 100%;
    max-width: 100% !important;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 40px;
  }

  .floating-icon {
    right: -20px;
    top: -20px;
    width: 60px;
    height: 60px;
  }

  .icon-svg {
    width: 20px;
    height: 20px;
  }


  /* Power Home Content */
  .power-home-content {
    flex-direction: column-reverse;
    gap: 40px;
    text-align: center;
  }

  .power-home-left {
    max-width: 100%;
  }

  .feature-list-clean p {
    margin: 0 auto;
  }

  /* Calculator */
  .calculator {
    padding: 0 10px;
  }

  /* Footer */
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding-bottom: 40px;
  }

  .footer-left,
  .footer-links {
    display: contents;
  }

  .footer-links a[href*="faqs"] {
    order: 1;
  }

  .footer-links a[href*="refer-a-friend"] {
    order: 2;
  }

  .footer-left a[href*="privacy"] {
    order: 3;
  }

  .footer-links a[href*="commitment"] {
    order: 4;
  }

  .footer-left a[href*="terms"] {
    order: 5;
  }

  .footer-links a[href*="install"] {
    order: 6;
  }

  .social-icons {
    position: static;
    transform: none;
    margin: 15px auto 0;
    order: 7;
  }

  .copyright {
    order: 8;
    margin-top: 10px;
  }

  /* Smart Home Specifics */
  .sh-hero-title {
    font-size: 48px !important;
  }

  .sh-info-panel {
    flex-direction: column;
    gap: 30px;
  }

  .sh-info-left,
  .sh-info-right {
    width: 100%;
    text-align: center;
    padding-right: 0;
    border-right: none;
  }

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

  .sh-product-container {
    flex-direction: column-reverse;
  }

  .sh-product-content {
    text-align: center;
    max-width: 100%;
  }

  .sh-product-title {
    text-align: center;
    margin-bottom: 40px;
  }

  .sh-product-content .sh-feature-item {
    text-align: center;
  }

  .sh-powerapp-title {
    text-align: center;
    margin-bottom: 50px;
  }

  .sh-feature-row {
    flex-direction: column;
    text-align: center;
  }

  .sh-feature-row:nth-child(even) {
    flex-direction: column-reverse;
    /* Ensure text is above image on mobile for even rows */
  }

  .sh-powerair-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .sh-powerair-section {
    padding-top: 20px;
  }

  .sh-powerair-img {
    transform: scale(1.6);
    /* increased again */
    margin-bottom: 40px;
    /* add space below since it's reversed */
  }

  .sh-energy-diagram {
    padding: 0 10px;
  }

  .sh-energy-diagram img {
    width: 100%;
    max-width: 100%;
    transform: none;
    margin-top: 20px;
    margin-bottom: 30px;
    margin-left: 0;
  }

  .sh-pricing-table,
  .sh-rewards-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

  .sh-pricing-table-grid,
  .sh-rewards-table-grid {
    width: 100%;
    min-width: 350px;
    /* Give it a small min-width so it scrolls if screen is very tiny */
  }

  .sh-pricing-table-grid thead th,
  .sh-pricing-table-grid tbody td,
  .sh-rewards-table-grid thead th,
  .sh-rewards-table-grid tbody td {
    padding: 12px 10px;
    font-size: 14px;
  }

  .sh-pricing-table-grid tbody td.checkmark,
  .sh-rewards-table-grid tbody td.checkmark {
    font-size: 20px;
  }

  .sh-bedroom-dropdown-inline {
    padding: 8px 24px 8px 10px;
    font-size: 12px;
  }

  .sh-features-grid {
    grid-template-columns: 1fr;
  }

  /* Smart Home Images */
  .hub-image {
    width: 320px;
    max-width: 80%;
  }

  .sh-product-image img {
    width: 364px;
    max-width: 80%;
  }

  .feature-img,
  .sh-icon-wrapper {
    max-width: 64%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
  }

  .sh-powerair-img,
  .sh-energy-diagram img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
  }

  .sh-feature-image-col,
  .sh-powerair-image-col {
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  /* Contact & Installer Mobile Opts */
  .contact-page {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .contact-card {
    padding: 40px 15px;
    /* Reduced from 20px to make fields wider */
    border-radius: 12px;
  }

  .contact-header-row {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    margin-bottom: 40px;
  }

  .header-title h1 {
    font-size: 42px !important;
  }

  .header-text {
    padding-left: 0;
  }

  .contact-form {
    width: 100%;
  }

  .contact-form .form-row {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
    align-items: stretch;
    width: 100%;
  }

  .contact-form .form-group {
    width: 100%;
    align-items: stretch;
    text-align: left;
  }

  .contact-form .form-group.full-width {
    margin-bottom: 40px;
  }

  /* Pre-Order Mobile Alignment tweaks */
  /* Pre-Order Mobile Alignment tweaks */
  .po-form-wrapper .form-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 30px;
    width: 100%;
  }

  .po-form-wrapper .form-label {
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
  }

  .po-form-wrapper .form-input-container {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .po-form-wrapper .form-select,
  .po-form-wrapper .form-input,
  .po-form-wrapper .form-display {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    border-radius: 12px !important;
    text-align: left !important;
    text-align-last: left !important;
    padding: 15px 20px !important;
    height: auto !important;
    justify-content: flex-start;
    box-sizing: border-box !important;
  }

  .po-form-wrapper .total-row {
    align-items: stretch;
    gap: 10px;
  }

}