@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
  --primary: #ff9b3d;
  --secondary: #58a5fe;
  --bg-color: #ffffff;
  --text-color: #171717;
  --text-light: #525252;
  --accent-light: #fff5eb;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  --border-radius: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Accessibility & Typography */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h1 { font-size: 2.8rem; color: var(--text-color); }
h2 { font-size: 2.2rem; color: var(--text-color); border-bottom: 3px solid var(--primary); display: inline-block; margin-bottom: 2rem; }
h3 { font-size: 1.5rem; color: var(--secondary); }

p {
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  color: var(--text-light);
}

/* Layout Containers */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

section {
  padding: 60px 0;
}

/* Bento Grid System */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.bento-item {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  padding: 30px;
  transition: var(--transition);
}

.bento-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.12);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #fff 0%, #fffbf2 100%);
  text-align: center;
  padding: 100px 20px;
  border-radius: 0 0 50px 50px;
}

.badge {
  background-color: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 10px 20px rgba(255, 155, 61, 0.3);
}

.btn-primary:hover {
  background-color: #e88a2e;
  transform: scale(1.03);
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
  box-shadow: 0 10px 20px rgba(88, 165, 254, 0.3);
}

.btn-secondary:hover {
  background-color: #4792e8;
  transform: scale(1.03);
}

/* Tables */
.product-specs {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 20px 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-specs td {
  padding: 20px;
  background: white;
  border-bottom: 1px solid #f0f0f0;
}

.product-specs td:first-child {
  font-weight: 600;
  color: var(--secondary);
  width: 40%;
}

/* Lists and Benefits */
.check-list {
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Testimonials */
.testimonial-card {
  border-left: 5px solid var(--secondary);
  background: #f8fbff;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Pricing Section */
.pricing-box {
  background: white;
  border: 2px solid var(--primary);
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
}

.price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 1.5rem;
}

.price-new {
  color: var(--primary);
  font-size: 3.5rem;
  font-weight: 800;
  display: block;
  margin: 10px 0;
}

/* FAQ */
.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.faq-question {
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Footer */
footer {
  background: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #eee;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  
  .bento-grid {
    display: flex;
    flex-direction: column;
  }
  
  .container {
    padding: 20px;
  }
  
  .price-new {
    font-size: 2.5rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero, .bento-item {
  animation: fadeIn 0.8s ease-out forwards;
}