/* Enhanced Meeting Coach Extension Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #6366f1;
  --primary-dark: #4338ca;
  --primary-light: #a5b4fc;
  --accent-color: #10b981;
  --text-color: #1e293b;
  --text-light: #64748b;
  --text-dark: #0f172a;
  --background-light: #f8fafc;
  --background-dark: #0f172a;
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-800: #1e293b;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--background-light);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(120deg, var(--primary-dark), var(--primary-color));
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.logo-and-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.logo-container {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-shadow: var(--shadow-lg);
  margin-right: 30px;
  transform: rotate(-5deg);
}

.logo-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.tagline {
  font-size: 1.4rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 50px;
  opacity: 0.9;
}

.download-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 16px 50px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.download-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.download-button i {
  margin-right: 10px;
}

/* Pulse animation */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

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

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.underline {
  height: 4px;
  width: 70px;
  background: var(--primary-color);
  margin: 0 auto;
  border-radius: 2px;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 100px;
}

.feature {
  background-color: var(--white);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--gray-200);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
  color: var(--white);
  font-size: 36px;
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.feature h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Installation Guide */
.installation-guide {
  margin-bottom: 100px;
}

.installation-step {
  display: flex;
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  border-left: 5px solid var(--primary-color);
}

.installation-step:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.step-icon {
  flex: 0 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background-color: var(--gray-100);
  position: relative;
}

.step-number {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
}

.step-icon i {
  font-size: 40px;
  color: var(--primary-color);
}

.step-content {
  flex: 1;
  padding: 25px 30px;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.step-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

/* Ready to Start Section */
.ready-to-start {
  text-align: center;
  background-color: var(--white);
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  background-image: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(79, 70, 229, 0.05) 100%);
  border: 1px solid var(--gray-200);
}

.ready-to-start h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.secondary-download-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.secondary-download-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(79, 70, 229, 0.2);
}

.secondary-download-button i {
  margin-right: 8px;
}

/* Footer */
footer {
  background-color: var(--background-dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  margin-right: 15px;
  background-color: var(--white);
  padding: 5px;
}

.footer-logo p {
  font-size: 1.4rem;
  font-weight: 600;
}

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

.footer-links a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-links i {
  margin-right: 8px;
}

.copyright {
  color: var(--gray-300);
  font-size: 0.9rem;
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .hero-section {
    height: auto;
    padding: 80px 0;
  }
  
  .logo-and-title {
    flex-direction: column;
    text-align: center;
  }
  
  .logo-container {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .tagline {
    font-size: 1.2rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .installation-step {
    flex-direction: column;
  }
  
  .step-icon {
    flex: none;
    height: 100px;
    flex-direction: row;
    justify-content: flex-start;
    padding-left: 60px;
  }
  
  .ready-to-start h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .tagline {
    font-size: 1.1rem;
  }
  
  .download-button {
    padding: 14px 30px;
    font-size: 1.1rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}