:root{
  --bg: #f8f9fa;
  --fg: #1a1f36;
  --fg-light: #4a5568;
  --muted: #718096;
  --brand: #e67e22;
  --brand-hover: #d35400;
  --brand-dark: #c0392b;
  --accent: #2c5282;
  --card: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --font-main: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html{scroll-behavior: smooth}

body{
  margin:0;
  padding:0;
  font-family: var(--font-main);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a{ color: var(--brand); text-decoration: none; transition: color 0.2s ease; }
a:hover{ color: var(--brand-hover); }

.container{
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Skip link for accessibility */
.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  position:fixed;
  left:50%;
  top:10px;
  transform:translateX(-50%);
  width:auto;
  height:auto;
  padding:12px 24px;
  background:var(--brand);
  color:#fff;
  border-radius:var(--radius);
  z-index:10000;
}

/* Header */
.lp-header{
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

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

.lp-logo{
  height: 48px;
  width: auto;
}

.lp-nav{
  display: flex;
  align-items: center;
  gap: 24px;
}

.lp-nav a{
  color: var(--fg-light);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.lp-nav a:hover{
  background: var(--bg);
  color: var(--brand);
}

/* Banner */
.lp-banner{
  background: linear-gradient(135deg, #1a1f36 0%, #2d3748 100%);
  color: #fff;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.lp-banner::before{
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230,126,34,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.banner-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.banner-content{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.banner-content strong{
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.banner-sub{
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary{
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 15px rgba(230,126,34,0.3);
}

.btn-primary:hover{
  background: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,126,34,0.4);
  color: #fff;
}

.btn-secondary{
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 15px rgba(44,82,130,0.3);
}

.btn-secondary:hover{
  background: #1a365d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44,82,130,0.4);
  color: #fff;
}

.btn-large{
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* Hero Section */
.lp-hero{
  background: var(--card);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.lp-hero::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(230,126,34,0.03) 100%);
  pointer-events: none;
}

.hero-content{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-badge{
  display: inline-block;
  background: rgba(230, 126, 34, 0.12);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero-copy h1{
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--fg);
}

.hero-copy p{
  font-size: 1.15rem;
  color: var(--fg-light);
  margin-bottom: 28px;
  max-width: 500px;
}

.cta-row{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-media{
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img{
  width: 100%;
  max-width: 580px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Sections */
.lp-section{
  padding: 64px 0;
}

.lp-section h2{
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--fg);
  text-align: center;
}

.lead{
  font-size: 1.1rem;
  color: var(--muted);
  text-align: center;
  margin: 0 0 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits Grid */
.benefits-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit{
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.benefit-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-hover) 100%);
  border-radius: 50%;
  color: #fff;
  margin-bottom: 20px;
}

.benefit h3{
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--fg);
}

.benefit p{
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

/* Sources Section */
.sources-section{
  background: var(--card);
}

.sources-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.sources-list li a{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--bg);
  border-radius: var(--radius);
  color: var(--fg);
  font-weight: 600;
  transition: all 0.2s ease;
}

.sources-list li a:hover{
  background: var(--brand);
  color: #fff;
  transform: translateX(4px);
}

.sources-list li a svg{
  flex-shrink: 0;
}

/* Entity Logos */
.entity-logos{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin: 32px 0 40px;
  padding: 24px;
  background: #f8f9fa;
  border-radius: var(--radius);
}

.entity-logo-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.entity-logo-item img{
  height: 50px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.entity-logo-item span{
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* Documents Grid */
.documents-grid{
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.documents-grid h3{
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 20px;
  color: var(--fg);
}

.doc-items{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.doc-item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  color: var(--fg);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid var(--border);
}

.doc-item:hover{
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

.doc-item svg{
  flex-shrink: 0;
}

/* How it works */
.how-section{
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
}

.steps-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.step{
  text-align: center;
  padding: 20px;
}

.step-number{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 20px;
}

.step h3{
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.step p{
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

/* Form Section */
.form-section{
  background: var(--card);
}

.info-form{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.field{
  display: flex;
  flex-direction: column;
}

.field.full{
  grid-column: 1 / -1;
}

.field label{
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg-light);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea{
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-main);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(230,126,34,0.1);
}

.field textarea{
  resize: vertical;
  min-height: 120px;
}

.form-status{
  grid-column: 1 / -1;
  min-height: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  margin-top: 8px;
}

.form-status.success{
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
}

.form-status.error{
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

/* Footer */
.lp-footer{
  background: var(--fg);
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
  text-align: center;
}

.lp-footer p{
  margin: 0 0 12px;
  font-size: 0.9rem;
}

.lp-footer a{
  color: rgba(255,255,255,0.9);
}

.lp-footer a:hover{
  color: var(--brand);
}

/* Cookie Banner */
.cookie-banner{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  padding: 20px;
  border-top: 3px solid var(--brand);
}

.cookie-content{
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text{
  flex: 1;
  min-width: 280px;
}

.cookie-text h3{
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--fg);
}

.cookie-text p{
  font-size: 0.9rem;
  color: var(--fg-light);
  margin: 0;
  line-height: 1.5;
}

.cookie-text a{
  color: var(--brand);
  text-decoration: underline;
}

.cookie-buttons{
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-small{
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Checkbox fields */
.checkbox-field{
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-field input[type="checkbox"]{
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--brand);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-field label{
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--fg-light);
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-field label a{
  color: var(--brand);
  text-decoration: underline;
}

.checkbox-field label a:hover{
  color: var(--brand-hover);
}

/* Responsive */
@media (max-width: 960px){
  .hero-content{
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-copy h1{
    font-size: 2.25rem;
  }

  .hero-copy p{
    margin-left: auto;
    margin-right: auto;
  }

  .cta-row{
    justify-content: center;
  }

  .benefits-grid,
  .steps-grid{
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .sources-list{
    grid-template-columns: 1fr;
  }

  .banner-inner{
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

@media (max-width: 600px){
  .header-inner{
    flex-wrap: wrap;
    justify-content: center;
  }

  .lp-nav{
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .lp-nav a{
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .hero-copy h1{
    font-size: 1.85rem;
  }

  .cta-row{
    flex-direction: column;
    width: 100%;
  }

  .cta-row .btn{
    width: 100%;
  }

  .info-form{
    grid-template-columns: 1fr;
  }

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

  .lp-section h2{
    font-size: 1.65rem;
  }
}

/* Animation classes */
.banner-animate{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.banner-animate.in-view{
  opacity: 1;
  transform: translateY(0);
}

.benefit, .step{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.benefit.animate-in, .step.animate-in{
  opacity: 1;
  transform: translateY(0);
}

/* Focus states for accessibility */
.btn:focus,
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline: 3px solid rgba(230,126,34,0.3);
  outline-offset: 2px;
}

/* Print styles */
@media print{
  .lp-header, .lp-banner, .lp-footer, .btn{
    display: none;
  }
  
  .lp-section{
    padding: 20px 0;
  }
  
  .info-form{
    display: block;
  }
  
  .field{
    margin-bottom: 15px;
  }
}

/* Convocatorias Section */
.conv-section{
  background: #f8f9fa;
}

.conv-tabs{
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 32px;
}

.conv-tab{
  padding: 12px 24px;
  border: 2px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg-light);
  cursor: pointer;
  transition: all 0.2s ease;
}

.conv-tab:hover{
  border-color: var(--brand);
  color: var(--brand);
}

.conv-tab.active{
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.conv-results{
  min-height: 200px;
}

.conv-loading{
  text-align: center;
  color: var(--muted);
  padding: 40px;
}

.conv-list{
  display: grid;
  gap: 16px;
}

.conv-item{
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--brand);
  transition: all 0.2s ease;
}

.conv-item:hover{
  transform: translateX(4px);
  box-shadow: var(--shadow-hover);
}

.conv-item.urgent{
  border-left-color: #e74c3c;
}

.conv-item-header{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.conv-item h3{
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
  line-height: 1.3;
}

.conv-status{
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
}

.conv-status.open{
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
}

.conv-status.closing{
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

.conv-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--muted);
}

.conv-meta span{
  display: flex;
  align-items: center;
  gap: 6px;
}

.conv-meta svg{
  width: 14px;
  height: 14px;
}

.conv-empty{
  text-align: center;
  color: var(--muted);
  padding: 40px;
}

.conv-cta{
  text-align: center;
  margin-top: 32px;
}

/* Energy Rehabilitation Section */
.energy-section{
  background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.energy-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.energy-card{
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.energy-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.energy-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
  border-radius: 50%;
  color: #fff;
  margin-bottom: 20px;
}

.energy-card h3{
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--fg);
}

.energy-card p{
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.energy-highlight{
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 40px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--brand);
}

.energy-highlight h3{
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin: 0 0 20px;
  color: var(--fg);
}

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

.energy-list li{
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: var(--fg-light);
}

.energy-list li::before{
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}

/* Accessibility Section */
.accessibility-section{
  background: #2d3748;
  color: #fff;
}

.accessibility-section h2,
.accessibility-section .lead{
  color: #fff;
}

.accessibility-content{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
  align-items: center;
}

.accessibility-text h3{
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin: 0 0 16px;
  color: #fff;
}

.accessibility-text p{
  font-size: 1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.access-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.access-list li{
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.access-list li::before{
  content: '→';
  color: var(--brand);
  font-weight: bold;
}

.accessibility-stats{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-item{
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.stat-number{
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand);
}

.stat-label{
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Agent Section */
.agent-section{
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.agent-content{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}

.agent-intro h3{
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin: 0 0 16px;
  color: var(--fg);
}

.agent-intro > p{
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--fg-light);
}

.agent-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.agent-list li{
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--fg-light);
}

.agent-list li strong{
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}

.agent-benefits h3{
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin: 0 0 20px;
  color: var(--fg);
}

.benefit-item{
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.benefit-item:last-child{
  border-bottom: none;
}

.benefit-check{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  flex-shrink: 0;
}

.benefit-item strong{
  display: block;
  color: var(--fg);
  margin-bottom: 4px;
}

.benefit-item p{
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.agent-cta{
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-hover) 100%);
  border-radius: var(--radius);
  padding: 48px;
  margin-top: 48px;
  text-align: center;
  color: #fff;
}

.agent-cta h3{
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 0 0 12px;
  color: #fff;
}

.agent-cta p{
  font-size: 1.1rem;
  opacity: 0.95;
  margin: 0 0 24px;
}

.agent-cta .btn-primary{
  background: #fff;
  color: var(--brand);
}

.agent-cta .btn-primary:hover{
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* Responsive for new sections */
@media (max-width: 960px){
  .energy-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  
  .energy-list{
    grid-template-columns: 1fr;
  }
  
  .accessibility-content,
  .agent-content{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .accessibility-stats{
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .stat-item{
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 600px){
  .energy-grid{
    grid-template-columns: 1fr;
  }
  
  .energy-highlight{
    padding: 24px;
  }
  
  .agent-cta{
    padding: 32px 24px;
  }
}
