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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Header Section */
.header {
  text-align: center;
  margin-bottom: 60px;
  color: white;
  padding: 40px 0;
}

.header h1 {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 15px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease-out;
}

.header .subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 10px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.header .description {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.tool-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

.tool-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.tool-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tool-card:hover::before {
  transform: scaleX(1);
}

.tool-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
}

.tool-card:hover .tool-icon {
  transform: scale(1.1) rotate(5deg);
}

.tool-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 15px;
}

.tool-description {
  color: #64748b;
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.tool-features {
  list-style: none;
  margin-bottom: 30px;
}

.tool-features li {
  color: #475569;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
  font-size: 0.95rem;
}

.tool-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.tool-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.tool-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.tool-button:active {
  transform: translateY(0);
}

/* Status badges */
.status-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.status-beta {
  background: #fef3c7;
  color: #92400e;
}

.status-coming {
  background: #e0e7ff;
  color: #3730a3;
}

/* Features Section */
.features-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 60px;
  color: white;
  text-align: center;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-desc {
  opacity: 0.9;
  font-size: 1rem;
}

/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.stat-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label {
  color: #64748b;
  font-size: 1.1rem;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  background: white;
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}

.cta-button.secondary:hover {
  background: #667eea;
  color: white;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .header h1 {
    font-size: 2.5rem;
  }

  .header .subtitle {
    font-size: 1.1rem;
  }

  .tools-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tool-card {
    padding: 30px;
  }

  .features-section {
    padding: 30px;
  }

  .features-title {
    font-size: 2rem;
  }

  .cta-section {
    padding: 40px 30px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }
}

/* Change this for testing on desktop */
@media (max-width: 1200px) { /* was 768px */
  .navbar-links,
  .navbar-buttons {
    display: none;
  }
  .navbar-toggle {
    display: flex;
  }
  .navbar.active .navbar-links,
  .navbar.active .navbar-buttons {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 100;
    animation: fadeInDown 0.3s ease-out;
  }
  
  .navbar.active .navbar-links {
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .navbar.active .navbar-buttons {
    gap: 10px;
  }
  
  .navbar.active .navbar-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .navbar.active .navbar-toggle span:nth-child(2) {
    opacity: 0;
  }
  
  .navbar.active .navbar-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.8rem;
  line-height: 1;
}

.logo-slogan {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 2px;
}

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

.navbar-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: white;
}

.navbar-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-buttons {
  display: flex;
  gap: 15px;
}

.navbar-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-btn.login {
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.navbar-btn.login:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar-btn.signup {
  background: white;
  color: #764ba2;
}

.navbar-btn.signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.navbar-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .navbar-links,
  .navbar-buttons {
    display: none;
  }
  
  .navbar-toggle {
    display: flex;
  }
  
  .navbar.active .navbar-links,
  .navbar.active .navbar-buttons {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 100;
    animation: fadeInDown 0.3s ease-out;
  }
  
  .navbar.active .navbar-links {
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .navbar.active .navbar-buttons {
    gap: 10px;
  }
  
  .navbar.active .navbar-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .navbar.active .navbar-toggle span:nth-child(2) {
    opacity: 0;
  }
  
  .navbar.active .navbar-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Footer Styles */
.footer {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* Footer Logo Styles */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.logo-text-footer {
    display: flex;
    flex-direction: column;
}

.logo-title-footer {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-slogan-footer {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-logo img {
        width: 40px;
        height: 40px;
    }
    
    .logo-title-footer {
        font-size: 1.3rem;
    }
    
    .logo-slogan-footer {
        font-size: 0.8rem;
    }
}

/* Animation for footer logo on hover */
.footer-logo a:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.footer-logo a:hover .logo-title-footer {
    opacity: 1;
}

.footer-logo a:hover .logo-slogan-footer {
    opacity: 1;
}

.footer-logo a:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

.footer-logo a:hover .logo-title {
  opacity: 1;
}

.footer-logo a:hover .logo-slogan {
  opacity: 1;
}

.footer-description {
  margin: 15px 0;
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, white, transparent);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-section.contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.footer-form {
  display: flex;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 8px;
}

.footer-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.9rem;
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.footer-form input:focus {
  outline: none;
}

.footer-form button {
  background: white;
  color: #764ba2;
  border: none;
  padding: 0 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-form button:hover {
  background: #f0f0f0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  opacity: 0.7;
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}
