/* 
 * aigeneratedimagesporn.love CSS
 * Unique green/blue gradient design
 */

:root {
  /* Color scheme - completely different from previous sites */
  --primary: #2ECC71;
  --secondary: #3498DB;
  --accent: #27AE60;
  --dark: #1D3557;
  --light: #F0FFF4;
  --gray: #95A5A6;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: #F8FDFF;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  line-height: 1.3;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  text-align: center;
}

h2 span {
  color: var(--primary);
  position: relative;
}

h2 span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 8px;
  background: var(--gradient);
  bottom: 5px;
  left: 0;
  z-index: -1;
  opacity: 0.3;
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

img {
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.primary-btn {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.secondary-btn {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--primary);
}

.secondary-btn:hover {
  background: var(--primary);
  color: white;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo svg {
  width: 42px;
  height: 42px;
}

.logo h1 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--primary);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-md);
}

.main-nav a {
  color: var(--dark);
  font-weight: 600;
  padding: var(--space-xs) 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--gradient);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}

.mobile-toggle span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--primary);
  transition: all 0.3s ease;
  left: 0;
}

.mobile-toggle span:nth-child(1) {
  top: 0;
}

.mobile-toggle span:nth-child(2) {
  top: 10px;
}

.mobile-toggle span:nth-child(3) {
  top: 20px;
}

.mobile-toggle.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232ecc71' fill-opacity='0.05'%3E%3Cpath d='M0 0h10v10H0V0zm10 10h10v10H10V10z'/%3E%3C/g%3E%3C/svg%3E");
  top: 0;
  left: 0;
  z-index: 0;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h2 {
  font-size: 3.5rem;
  text-align: left;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  color: var(--dark);
}

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

.cta-buttons {
  display: flex;
  gap: var(--space-md);
}

/* Technology Section */
.technology {
  padding: var(--space-xl) 0;
  background: white;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.tech-card {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
  border-radius: 15px;
  padding: var(--space-md);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(46, 204, 113, 0.1);
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.15);
}

.tech-icon {
  margin: 0 auto var(--space-md);
  width: 80px;
  height: 80px;
}

.tech-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--primary);
}

.tech-card p {
  color: var(--dark);
  margin-bottom: 0;
}

/* Benefits Section */
.benefits {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
}

.benefits-list {
  max-width: 800px;
  margin: var(--space-lg) auto 0;
  list-style: none;
}

.benefits-list li {
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.check-icon {
  background: var(--gradient);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-md);
  flex-shrink: 0;
}

/* CTA Section */
.cta-section {
  padding: var(--space-xl) 0;
  background: var(--dark);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 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='%232ecc71' fill-opacity='0.05'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L2 40h-2l40-40zm0 4L12 0h2L54 40h-2L10 8zm0 4L16 0h2L58 40h-2L14 12zm0 4L20 0h2L62 40h-2L18 16zm0 4L24 0h2L66 40h-2L22 20zm0 4L28 0h2L70 40h-2L26 24zm0 4L32 0h2L74 40h-2L30 28zm0 4L36 0h2L78 40h-2L34 32zm0 4L40 0h2L80 38V40h-2L38 36zm0 4l4-4h2l4 4h-2l-4-4h-2l-2 2v2z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  color: white;
}

.cta-section h2 span {
  color: var(--light);
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

/* Footer */
.site-footer {
  padding: var(--space-xl) 0 var(--space-md);
  background: #F8FDFF;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.footer-logo {
  width: 60px;
  height: 60px;
}

.footer-brand h3 {
  font-size: 1.25rem;
  margin: 0 0 var(--space-xs);
  color: var(--primary);
}

.footer-brand p {
  margin: 0;
  color: var(--gray);
}

.footer-links h4 {
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

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

.footer-links li {
  margin-bottom: var(--space-xs);
}

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

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

.copyright {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray);
}

/* Responsive */
@media screen and (max-width: 900px) {
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: var(--space-lg);
  }
  
  .hero h2 {
    text-align: center;
  }
  
  .cta-buttons {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .main-nav ul {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: white;
    padding: var(--space-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 90;
    align-items: center;
    gap: var(--space-md);
  }
  
  .main-nav ul.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
  }
  
  .footer-brand {
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .benefits-list li {
    flex-direction: column;
    text-align: center;
  }
  
  .check-icon {
    margin: 0 0 var(--space-sm);
  }
}
