/* THEME: COLORFUL (Vibrant Emerald, Warm Amber, Slate Navy, Soft Light Canvas) */
:root {
  --eletmod-bg-canvas: #f4f8f6;
  --eletmod-surface-box: #ffffff;
  --eletmod-emerald-prime: #059669;
  --eletmod-emerald-hover: #047857;
  --eletmod-amber-accent: #d97706;
  --eletmod-navy-dark: #0f172a;
  --eletmod-text-dark: #1e293b;
  --eletmod-text-muted: #64748b;
  --eletmod-border-line: #e2e8f0;
  --eletmod-gradient-vivid: linear-gradient(135deg, #059669 0%, #0d9488 50%, #d97706 100%);
  --eletmod-gradient-soft: linear-gradient(180deg, #f0fdf4 0%, #f4f8f6 100%);
  --eletmod-shadow-deep: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --eletmod-radius-soft: 16px;
  
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Mulish', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--eletmod-bg-canvas);
  color: var(--eletmod-text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background SVG pattern decoration */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%20059669' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Header Scroll Indicator */
.vitality-scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--eletmod-gradient-vivid);
  z-index: 100;
  width: 100%;
  transform-origin: 0 50%;
  animation: eletmod-progress linear;
  animation-timeline: scroll();
}

@keyframes eletmod-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Header Navigation (Variant 2: Nav Left, Logo Right) */
.eletmod-top-navigation {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
}

.eletmod-nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.eletmod-brand-slot img {
  height: 42px;
  width: auto;
  display: block;
}

.eletmod-menu-links ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
}

.eletmod-menu-links a {
  color: #f8fafc;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.eletmod-menu-links a:hover {
  color: #34d399;
}

.eletmod-nav-cta-link {
  background: var(--eletmod-amber-accent);
  padding: 0.5rem 1.25rem;
  border-radius: var(--eletmod-radius-soft);
  color: #ffffff !important;
  transition: background 0.2s ease;
}

.eletmod-nav-cta-link:hover {
  background: #b45309 !important;
}

/* Mobile Hamburger Hack */
.eletmod-hamburger-check, .eletmod-hamburger-btn {
  display: none;
}

@media (max-width: 768px) {
  .eletmod-hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 60;
  }

  .eletmod-hamburger-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .eletmod-menu-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f172a;
    padding: 1.5rem;
    display: none;
    border-bottom: 2px solid var(--eletmod-emerald-prime);
    box-shadow: 0 10px 15px rgba(0,0,0,0.3);
  }

  .eletmod-menu-links ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .eletmod-hamburger-check:checked ~ .eletmod-menu-links {
    display: block;
  }
}

/* Hero Section (Stats Hero - Preset E) */
.eletmod-hero-stage {
  min-height: 75vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  background: var(--eletmod-navy-dark);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.eletmod-hero-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(5, 150, 105, 0.25) 0%, rgba(15, 23, 42, 0.95) 70%);
  z-index: 1;
}

.eletmod-hero-inner {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.eletmod-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #ffffff 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eletmod-hero-subtext {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #94a3b8;
  max-width: 750px;
  margin: 0 auto 2.5rem;
}

.eletmod-stats-trio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.eletmod-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--eletmod-radius-soft);
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.eletmod-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--eletmod-emerald-prime);
}

.eletmod-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: #34d399;
}

.eletmod-stat-label {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.eletmod-action-button {
  display: inline-block;
  background: var(--eletmod-gradient-vivid);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  border-radius: var(--eletmod-radius-soft);
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(5, 150, 105, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eletmod-action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(5, 150, 105, 0.4);
}

/* Section Standard Padding */
.eletmod-pillars-section,
.eletmod-insight-section,
.eletmod-reviews-section,
.eletmod-faq-area,
.eletmod-contact-block {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  position: relative;
  z-index: 10;
  animation: eletmod-fade-in linear forwards;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

@keyframes eletmod-fade-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Features Section (Top-Border Cards) */
.eletmod-pillars-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.eletmod-pillar-card {
  background: var(--eletmod-surface-box);
  border-radius: var(--eletmod-radius-soft);
  border-top: 4px solid var(--eletmod-emerald-prime);
  padding: 2rem;
  box-shadow: var(--eletmod-shadow-deep);
  transition: transform 0.3s ease;
}

.eletmod-pillar-card:hover {
  transform: translateY(-6px);
}

.eletmod-card-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--eletmod-navy-dark);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.eletmod-bullet-group {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.eletmod-bullet-group li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--eletmod-text-dark);
}

.eletmod-check-icon {
  width: 20px;
  height: 20px;
  color: var(--eletmod-emerald-prime);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Content Sections */
.eletmod-insight-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .eletmod-insight-layout {
    grid-template-columns: 1fr;
  }
}

.eletmod-layout-reversed .eletmod-text-holder {
  order: 1;
}

.eletmod-layout-reversed .eletmod-media-holder {
  order: 2;
}

@media (max-width: 900px) {
  .eletmod-layout-reversed .eletmod-text-holder {
    order: 2;
  }
  .eletmod-layout-reversed .eletmod-media-holder {
    order: 1;
  }
}

.eletmod-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--eletmod-navy-dark);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.eletmod-paragraph {
  font-size: 1.05rem;
  color: var(--eletmod-text-muted);
  margin-bottom: 1rem;
}

.eletmod-framed-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--eletmod-radius-soft);
  box-shadow: var(--eletmod-shadow-deep);
}

.eletmod-feature-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.eletmod-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--eletmod-text-dark);
}

.eletmod-star-bullet {
  width: 12px;
  height: 12px;
  color: var(--eletmod-amber-accent);
}

/* Floating Badge */
.eletmod-relative-stage {
  position: relative;
}

.eletmod-floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--eletmod-surface-box);
  padding: 1.25rem;
  border-radius: var(--eletmod-radius-soft);
  box-shadow: var(--eletmod-shadow-deep);
  border-left: 5px solid var(--eletmod-amber-accent);
  display: flex;
  flex-direction: column;
  max-width: 220px;
}

.eletmod-badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--eletmod-amber-accent);
}

.eletmod-badge-txt {
  font-size: 0.85rem;
  color: var(--eletmod-text-muted);
  line-height: 1.2;
}

/* CTA Strip */
.eletmod-banner-strip {
  background: var(--eletmod-navy-dark);
  padding: 4rem 1.5rem;
  margin: 2rem 0;
}

.eletmod-banner-container {
  max-width: 1100px;
  margin: 0 auto;
  border-left: 6px solid var(--eletmod-amber-accent);
  padding-left: 2rem;
}

.eletmod-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.eletmod-banner-button {
  display: inline-block;
  background: var(--eletmod-amber-accent);
  color: #ffffff;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: var(--eletmod-radius-soft);
  text-decoration: none;
  transition: background 0.2s ease;
}

.eletmod-banner-button:hover {
  background: #b45309;
}

/* Divider */
.eletmod-divider-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--eletmod-border-line), transparent);
  max-width: 1000px;
  margin: 0 auto;
}

/* Testimonials (Preset E) */
.eletmod-reviews-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eletmod-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.eletmod-quote-card {
  background: var(--eletmod-surface-box);
  padding: 2rem;
  border-radius: var(--eletmod-radius-soft);
  box-shadow: var(--eletmod-shadow-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eletmod-avatar-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--eletmod-gradient-vivid);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.eletmod-rating-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.eletmod-quote-text {
  font-style: italic;
  color: var(--eletmod-text-dark);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.eletmod-author-meta strong {
  display: block;
  color: var(--eletmod-navy-dark);
  font-size: 1rem;
}

.eletmod-author-meta span {
  font-size: 0.85rem;
  color: var(--eletmod-text-muted);
}

/* FAQ Area */
.eletmod-faq-area {
  background: #ffffff;
}

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

.eletmod-faq-list {
  display: flex;
  flex-direction: column;
}

.eletmod-faq-item {
  border-bottom: 1px solid var(--eletmod-border-line);
  padding: 1.5rem 0;
}

.eletmod-faq-question {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--eletmod-navy-dark);
  margin-bottom: 0.5rem;
}

.eletmod-faq-answer {
  color: var(--eletmod-text-muted);
  font-size: 1rem;
}

/* Contact / Form Section (Preset E) */
.eletmod-contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eletmod-contact-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 850px) {
  .eletmod-contact-columns {
    grid-template-columns: 1fr;
  }
}

.eletmod-trust-features {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.eletmod-trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--eletmod-navy-dark);
}

.eletmod-trust-icon {
  width: 28px;
  height: 28px;
  color: var(--eletmod-emerald-prime);
  flex-shrink: 0;
}

.eletmod-address-box {
  font-style: normal;
  background: var(--eletmod-surface-box);
  padding: 1.25rem;
  border-radius: var(--eletmod-radius-soft);
  border-left: 4px solid var(--eletmod-emerald-prime);
  font-size: 0.95rem;
  color: var(--eletmod-text-muted);
}

.eletmod-main-form {
  background: var(--eletmod-surface-box);
  padding: 2.5rem;
  border-radius: var(--eletmod-radius-soft);
  box-shadow: var(--eletmod-shadow-deep);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.eletmod-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.eletmod-field-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--eletmod-navy-dark);
}

.eletmod-field-group input,
.eletmod-field-group textarea {
  padding: 0.85rem;
  border: 1px solid var(--eletmod-border-line);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.eletmod-field-group input:focus,
.eletmod-field-group textarea:focus {
  outline: none;
  border-color: var(--eletmod-emerald-prime);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.eletmod-submit-button {
  background: var(--eletmod-gradient-vivid);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.eletmod-submit-button:hover {
  opacity: 0.92;
}

/* Footer (Desktop: Logo Left, Links Right) */
.eletmod-bottom-footer {
  background: var(--eletmod-navy-dark);
  color: #94a3b8;
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.eletmod-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .eletmod-footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

.eletmod-footer-logo img {
  height: 38px;
  width: auto;
}

.eletmod-footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
}

@media (max-width: 768px) {
  .eletmod-footer-nav ul {
    justify-content: center;
  }
}

.eletmod-footer-nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.eletmod-footer-nav a:hover {
  color: #ffffff;
}