:root {
  --primary-color: #2ECC71;
  /* Fresh Green */
  --primary-dark: #27AE60;
  --secondary-color: #2C3E50;
  /* Deep Blue/Black */
  --accent-color: #3498DB;
  /* AI Blue */
  --text-color: #333333;
  --bg-color: #FFFFFF;
  --light-bg: #F8F9FA;
  --white: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --radius-md: 12px;
  --radius-lg: 24px;
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--bg-color);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
}

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

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
  text-align: center;
}

.section-padding {
  padding: 80px 0;
}

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

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--secondary-color);
}

.section-header p {
  color: #666;
  font-size: 1.2rem;
}

/* Header */
.header {
  position: absolute;
  /* Changed from fixed to scroll with page */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  /* Removed padding to let logos touch edges */
  transition: background 0.3s;
}

.blur-bg {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Removed min-height to allow logo to dictate height */
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  height: 80px;
  width: auto;
}

.logo-text-styled {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  /* Extra bold */
  font-size: 2.5rem;
  /* ~40px */
  color: var(--secondary-color);
  margin-top: 0;
  line-height: 1;
  letter-spacing: -0.03em;
}

/* Removed old .logo-text image styles */

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

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--secondary-color);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 3px;
}

/* Hero */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: radial-gradient(circle at top right, rgba(46, 204, 113, 0.1), transparent 40%),
    radial-gradient(circle at bottom left, rgba(52, 152, 219, 0.1), transparent 40%);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(46, 204, 113, 0.1);
  color: var(--primary-dark);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--secondary-color);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 32px;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.trust-indicators {
  display: flex;
  gap: 24px;
  color: #666;
  font-size: 0.95rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.hero-mockup-img {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
  border-radius: 40px;
  /* Matching the image curvature if needed */
}

/* Phone Mockup removed in favor of image */


/* Features */
.features {
  background: var(--light-bg);
}

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

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 12px;
  color: var(--secondary-color);
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Pricing */
.pricing {
  background: #fff;
}

.pricing-card {
  max-width: 450px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}

.popular-tag {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary-color);
  color: #fff;
  padding: 6px 40px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.price span {
  font-size: 1rem;
  color: #999;
  font-weight: 400;
}

.pricing-features {
  margin-bottom: 30px;
}

.pricing-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-note {
  font-size: 0.8rem;
  color: #999;
  text-align: center;
  margin-top: 10px;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  color: #ccc;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
}

/* Contacts */
.contacts {
  background: var(--light-bg);
}

.contacts-wrapper {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-info {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.contact-info h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contact-info p {
  margin-bottom: 10px;
  color: #555;
}

.contact-info p strong {
  color: #333;
}

/* Footer */
.footer {
  background: var(--secondary-color);
  color: #fff;
  padding: 40px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-logo img {
  height: 30px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #ccc;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-copy {
  color: #888;
  font-size: 0.8rem;
  text-align: center;
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-text {
    margin-bottom: 40px;
    max-width: 100%;
  }

  .trust-indicators {
    justify-content: center;
  }

  .nav-links {
    display: none;
    /* Add JS toggle later */
  }

  .mobile-menu-btn {
    display: flex;
  }

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

  .logo-text {
    display: none !important;
  }
}