/* Modern SaaS Energy Platform Styles - Bluehost Compatible */
:root {
  --deep-blue: #002b45;
  --neon-green: #00ff88;
  --charcoal-gray: #1e1e1e;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
}

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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--charcoal-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--charcoal-gray);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--medium-gray);
  font-size: 1.1rem;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-green), #00cc6a);
  color: var(--charcoal-gray);
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--deep-blue);
  border: 2px solid var(--deep-blue);
}

.btn-outline:hover {
  background-color: var(--deep-blue);
  color: var(--white);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--deep-blue);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 43, 69, 0.1);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--deep-blue);
}

.logo i {
  color: var(--neon-green);
  font-size: 1.8rem;
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

.nav-desktop a {
  color: var(--medium-gray);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--deep-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--medium-gray);
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 43, 69, 0.1);
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  color: var(--medium-gray);
  font-weight: 500;
  padding: 0.5rem 0;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--deep-blue);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--charcoal-gray) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.energy-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%2300FF88"><animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" fill="%2300FF88"><animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/></circle><circle cx="60" cy="70" r="2.5" fill="%2300FF88"><animate attributeName="opacity" values="0;1;0" dur="2.5s" repeatCount="indefinite"/></circle></svg>')
    repeat;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-100px);
  }
}

.hero-content {
  display: grid;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--white);
  line-height: 1.1;
}

.text-neon-green {
  color: var(--neon-green);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.4;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.platform-preview {
  position: relative;
}

.dashboard-mockup {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 400px;
  height: 300px;
}

.mockup-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.mockup-dots {
  display: flex;
  gap: 0.5rem;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon-green);
  opacity: 0.7;
}

.energy-chart {
  margin-bottom: 1.5rem;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  height: 120px;
}

.bar {
  background: linear-gradient(to top, var(--neon-green), rgba(0, 255, 136, 0.5));
  width: 20px;
  border-radius: 4px 4px 0 0;
  animation: grow 2s ease-out infinite alternate;
}

@keyframes grow {
  0% {
    transform: scaleY(0.8);
  }
  100% {
    transform: scaleY(1);
  }
}

.savings-indicator {
  text-align: center;
  padding: 1rem;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.savings-amount {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--neon-green);
}

.savings-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.floating-element {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  background: var(--neon-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal-gray);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .dashboard-mockup {
    width: 300px;
    height: 250px;
  }
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--charcoal-gray);
}

.section-header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--medium-gray);
}

/* MTP Section */
.mtp-section {
  padding: 6rem 0;
  background: var(--light-gray);
}

.mtp-content {
  display: grid;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.mtp-card,
.mission-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 43, 69, 0.1);
  text-align: center;
}

.mtp-card {
  background: linear-gradient(135deg, var(--deep-blue), rgba(0, 43, 69, 0.8));
  color: var(--white);
}

.mtp-card h3 {
  color: var(--neon-green);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.mission-card {
  background: linear-gradient(135deg, var(--neon-green), rgba(0, 255, 136, 0.8));
  color: var(--charcoal-gray);
}

.mission-card h3 {
  color: var(--charcoal-gray);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.mtp-card p,
.mission-card p {
  font-size: 1.3rem;
  line-height: 1.6;
  font-style: italic;
}

.mtp-card p {
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .mtp-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* Values Section */
.values-section {
  padding: 6rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  background: var(--white);
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 43, 69, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 43, 69, 0.15);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  color: var(--deep-blue);
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 1rem;
  color: var(--medium-gray);
}

/* Platform Section */
.platform-section {
  padding: 6rem 0;
  background: var(--light-gray);
}

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

.platform-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 43, 69, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 43, 69, 0.15);
}

.platform-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.platform-card h3 {
  color: var(--deep-blue);
  margin-bottom: 1rem;
}

.platform-cta {
  text-align: center;
}

/* Audience Section */
.audience-section {
  padding: 6rem 0;
}

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

.audience-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 43, 69, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 43, 69, 0.15);
}

.audience-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.audience-card h3 {
  color: var(--deep-blue);
  margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background: var(--light-gray);
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  background: var(--white);
  padding: 0.5rem;
  border-radius: 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 10px rgba(0, 43, 69, 0.1);
}

.toggle-btn {
  background: none;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--medium-gray);
}

.toggle-btn.active {
  background: var(--neon-green);
  color: var(--charcoal-gray);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 43, 69, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 43, 69, 0.15);
}

.pricing-card.featured {
  border: 2px solid var(--neon-green);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neon-green);
  color: var(--charcoal-gray);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-card h3 {
  color: var(--deep-blue);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--charcoal-gray);
  margin-bottom: 2rem;
}

.price span {
  font-size: 1rem;
  color: var(--medium-gray);
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-card li {
  padding: 0.5rem 0;
  color: var(--medium-gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-card li i {
  color: var(--neon-green);
  font-size: 0.875rem;
}

/* AI Section */
.ai-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--charcoal-gray) 100%);
  color: var(--white);
}

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

.ai-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.ai-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.ai-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.ai-card h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.ai-card p {
  color: rgba(255, 255, 255, 0.8);
}

/* Marketplace Section */
.marketplace-section {
  padding: 6rem 0;
  background: var(--light-gray);
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.marketplace-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 43, 69, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marketplace-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 43, 69, 0.15);
}

.marketplace-card i {
  font-size: 3rem;
  color: var(--neon-green);
  margin-bottom: 1rem;
}

.marketplace-card h3 {
  color: var(--deep-blue);
  font-size: 1.1rem;
}

.marketplace-cta {
  text-align: center;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--charcoal-gray) 100%);
  color: var(--white);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 43, 69, 0.2);
  display: none;
}

.testimonial-card.active {
  display: block;
}

.quote-icon {
  margin-bottom: 2rem;
}

.quote-icon i {
  font-size: 3rem;
  color: var(--neon-green);
}

.testimonial-card p {
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-author strong {
  color: var(--neon-green);
  font-size: 1.1rem;
}

.testimonial-author span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.carousel-btn {
  background: rgba(0, 43, 69, 0.1);
  border: 1px solid var(--deep-blue);
  color: var(--deep-blue);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: var(--deep-blue);
  color: var(--white);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 43, 69, 0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: var(--neon-green);
}

/* Final CTA Section */
.final-cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--charcoal-gray) 100%);
  color: var(--white);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.cta-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.cta-icon {
  width: 4rem;
  height: 4rem;
  background: var(--neon-green);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.cta-icon i {
  font-size: 2rem;
  color: var(--charcoal-gray);
}

.cta-card h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

/* Contact Page Styles */
.contact-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--charcoal-gray) 100%);
  color: var(--white);
  text-align: center;
}

.contact-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-options {
  padding: 4rem 0;
}

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

.contact-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 43, 69, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 43, 69, 0.15);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.contact-card h3 {
  color: var(--deep-blue);
  margin-bottom: 1rem;
}

.contact-forms {
  padding: 4rem 0;
  background: var(--light-gray);
}

.forms-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-section {
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 43, 69, 0.1);
}

.contact-info-section {
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 43, 69, 0.1);
}

.contact-form-section h2,
.contact-info-section h2 {
  color: var(--deep-blue);
  margin-bottom: 2rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--charcoal-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.contact-details {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon-small {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--neon-green), #00cc6a);
  color: var(--charcoal-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-text h4 {
  color: var(--deep-blue);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-text p {
  color: var(--medium-gray);
  margin: 0;
}

.contact-text a {
  color: var(--deep-blue);
  font-weight: 600;
}

.contact-text a:hover {
  color: var(--neon-green);
}

.office-hours {
  margin-bottom: 3rem;
}

.office-hours h3 {
  color: var(--deep-blue);
  margin-bottom: 1rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.hours-item span:first-child {
  font-weight: 600;
  color: var(--charcoal-gray);
}

.hours-item span:last-child {
  color: var(--medium-gray);
}

.ecosystem-info {
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 12px;
}

.ecosystem-info h3 {
  color: var(--deep-blue);
  margin-bottom: 1rem;
}

.ecosystem-info p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .forms-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Footer */
.footer {
  background: var(--charcoal-gray);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--neon-green);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-logo i {
  color: var(--neon-green);
  font-size: 1.8rem;
}

.rst-ventures {
  color: var(--neon-green);
  font-weight: 600;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-info {
  margin-bottom: 1rem;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
  color: var(--neon-green);
  width: 1.2rem;
  text-align: center;
}

.contact-info a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--neon-green);
}

.ecosystem-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ecosystem-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ecosystem-link:hover {
  color: var(--neon-green);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .container {
    padding: 0 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Animation and Transitions */
.platform-card,
.value-card,
.audience-card,
.ai-card,
.marketplace-card,
.pricing-card,
.cta-card,
.contact-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Loading States */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Success/Error Messages */
.message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.message.success {
  background: linear-gradient(135deg, var(--neon-green), #00cc6a);
  color: var(--charcoal-gray);
}

.message.error {
  background: #ff6b6b;
  color: var(--white);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}

.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
