/* Tiger Claw Website Styles */
:root {
  --primary: #FF6B00;
  --primary-dark: #E55D00;
  --dark: #1a1a2e;
  --darker: #0f0f1a;
  --light: #ffffff;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --success: #10b981;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--darker);
  color: var(--light);
  line-height: 1.6;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  border-color: white;
}

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

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 15px 0;
  background: rgba(15, 15, 26, 0.9);
  backdrop-filter: blur(10px);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  color: white;
}

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

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: white;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
}

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

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.hero-note {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.app-preview {
  background: linear-gradient(135deg, #00B900 0%, #008800 100%);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 25px 80px rgba(0, 185, 0, 0.3);
}

.app-header {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.app-notification {
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.notif-icon {
  font-size: 24px;
}

.notif-content strong {
  display: block;
  margin-bottom: 4px;
}

.notif-content p {
  font-size: 13px;
  opacity: 0.9;
}

/* Problem */
.problem {
  padding: 80px 0;
  text-align: center;
  background: var(--dark);
}

.problem h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.problem-quote {
  font-size: 28px;
  font-style: italic;
  color: var(--primary);
  max-width: 700px;
  margin: 0 auto 20px;
}

.problem p {
  color: rgba(255,255,255,0.7);
}

/* Features */
.features {
  padding: 100px 0;
}

.features h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
}

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

.feature-card {
  background: var(--dark);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.2s;
}

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

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

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.feature-card p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}

/* How It Works */
.how-it-works {
  padding: 100px 0;
  background: var(--dark);
}

.how-it-works h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* Keywords */
.keywords {
  padding: 80px 0;
  text-align: center;
}

.keywords h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tag {
  background: var(--dark);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
}

/* Privacy */
.privacy {
  padding: 80px 0;
  background: var(--dark);
  text-align: center;
}

.privacy h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-item {
  padding: 20px;
  border-radius: 12px;
  font-weight: 500;
}

.privacy-item.yes {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.privacy-item.no {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255,255,255,0.7);
}

/* Pricing */
.pricing {
  padding: 100px 0;
  text-align: center;
}

.pricing h2 {
  font-size: 40px;
  margin-bottom: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--dark);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(180deg, #222 0%, var(--dark) 100%);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.price-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.price {
  font-size: 56px;
  font-weight: 800;
  color: var(--primary);
}

.price span {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}

.price-features {
  list-style: none;
  text-align: left;
  margin: 30px 0;
}

.price-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.price-note {
  margin-top: 15px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* FAQ */
.faq {
  padding: 100px 0;
  background: var(--dark);
}

.faq h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 25px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.faq-item p {
  color: rgba(255,255,255,0.7);
}

/* Final CTA */
.final-cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.final-cta h2 {
  font-size: 44px;
  margin-bottom: 15px;
}

.final-cta p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

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

/* Footer */
.footer {
  padding: 60px 0 30px;
  background: var(--darker);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  margin-top: 15px;
}

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

.footer-links h4 {
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 30px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-visual {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  
  .privacy-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .steps {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
