/* Plan4Any Website Styles - Matching App Theme */

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

:root {
  --primary-blue: #3B82F6;
  --primary-orange: #F97316;
  --primary-red: #EF4444;
  --accent-purple: #8B5CF6;
  --background-light: #FFFFFF;
  --surface-gray: #F3F4F6;
  --surface-light: #F9FAFB;
  --text-main: #111827;
  --text-sub: #6B7280;
  --divider: #E5E7EB;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-main);
  background-color: var(--background-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
header {
  background-color: var(--background-light);
  border-bottom: 1px solid var(--divider);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

nav a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

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

/* Hero Section */
.hero {
  padding: 80px 0 100px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
}

.hero p {
  font-size: 20px;
  color: var(--text-sub);
  margin-bottom: 40px;
  line-height: 1.6;
  text-align: left;
}

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

.hero-image img {
  max-width: 60%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  width: auto;
}

.app-store-badge {
  display: inline-block;
  height: 60px;
  width: auto;
  transition: opacity 0.2s;
}

.app-store-badge:hover {
  opacity: 0.8;
}

.app-store-badge img {
  height: 100%;
  width: auto;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background-color: #2563EB;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
  background-color: var(--surface-gray);
  color: var(--text-main);
}

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

/* Screenshots Section */
.screenshots-section {
  padding: 80px 0;
  background-color: var(--surface-light);
}

.screenshots-section h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-main);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.screenshot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.screenshot-item img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.screenshot-item img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.screenshot-caption {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
}

/* Content Sections */
.content-section {
  padding: 60px 0;
}

.content-section h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-main);
}

.content-section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--text-main);
}

.content-section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text-main);
}

.content-section p {
  margin-bottom: 16px;
  color: var(--text-sub);
  line-height: 1.7;
}

.content-section ul, .content-section ol {
  margin: 16px 0 16px 32px;
  color: var(--text-sub);
  line-height: 1.7;
}

.content-section li {
  margin-bottom: 8px;
}

.content-section a {
  color: var(--primary-blue);
  text-decoration: none;
}

.content-section a:hover {
  text-decoration: underline;
}

/* Pricing Section */
.pricing-container {
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

.pricing-card {
  background: white;
  border: 2px solid var(--divider);
  border-radius: 16px;
  padding: 48px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card.featured {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
  padding-top: 16px;
}

.pricing-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-main);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
}

.price-period {
  font-size: 20px;
  color: var(--text-sub);
  font-weight: 500;
}

.pricing-trial {
  font-size: 18px;
  color: var(--primary-blue);
  font-weight: 600;
  margin: 0;
}

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

.pricing-features h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-main);
}

.pricing-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-features li {
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-sub);
  border-bottom: 1px solid var(--divider);
  line-height: 1.6;
}

.pricing-features li:last-child {
  border-bottom: none;
}

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

.pricing-cta .btn {
  width: 100%;
  margin-bottom: 12px;
}

.pricing-cta .app-store-badge {
  display: inline-block;
  margin-bottom: 12px;
}

.pricing-note {
  font-size: 14px;
  color: var(--text-sub);
  margin: 0;
}

.pricing-faq {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--divider);
}

.faq-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--divider);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-main);
}

.faq-item p {
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0;
}

/* Footer */
footer {
  background-color: var(--surface-gray);
  padding: 48px 0;
  margin-top: 80px;
  border-top: 1px solid var(--divider);
}

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

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-main);
}

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

.footer-section a {
  color: var(--text-sub);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--divider);
  color: var(--text-sub);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero h1,
  .hero p {
    text-align: center;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .screenshots-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  nav ul {
    gap: 20px;
  }
  
  .content-section h1 {
    font-size: 36px;
  }
  
  .content-section h2 {
    font-size: 28px;
  }
  
  .screenshots-section h2 {
    font-size: 32px;
  }
  
  .pricing-card {
    padding: 32px 24px;
  }
  
  .price-amount {
    font-size: 40px;
  }
}
