/* IBECO Landing Page - Clean Design */

:root {
  --primary-color: #E74C3C;
  --primary-hover: #C0392B;
  --primary-light: rgba(231, 76, 60, 0.1);
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --text-light: #999999;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-light: #e5e5e5;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Typography */
.ibeco-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Header Styles */
.ibeco-header {
  background: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.ibeco-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  height: 70px;
}

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

.ibeco-logo-text {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.ibeco-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ibeco-nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.ibeco-nav-link:hover {
  color: var(--primary-color);
}

.ibeco-nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.ibeco-nav-link:hover::after {
  width: 100%;
}

.ibeco-nav-cta {
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ibeco-nav-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.ibeco-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* Section Spacing */
.ibeco-section {
  padding: 100px 0;
}

.ibeco-section-lg {
  padding: 120px 0;
}

/* Hero Section */
.ibeco-hero {
  background: linear-gradient(135deg, #fef5f5 0%, #fff 100%);
  padding: 170px 0 100px; /* Added top padding for fixed header */
  overflow: hidden;
  position: relative;
}

.ibeco-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.ibeco-hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  font-weight: 400;
}

.ibeco-hero-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.ibeco-btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.ibeco-btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(234, 85, 57, 0.25);
}

.ibeco-btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 85, 57, 0.3);
}

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

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

.ibeco-hero-image {
  position: relative;
  text-align: center;
}

.ibeco-hero-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Features Section */
.ibeco-features {
  background: var(--white);
}

.ibeco-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.ibeco-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.ibeco-section-desc {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.ibeco-feature-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 16px;
  background: var(--white);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-light);
}

.ibeco-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

.ibeco-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--primary-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
}

.ibeco-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.ibeco-feature-desc {
  color: var(--text-gray);
  line-height: 1.7;
}

/* Event Types Section */
.ibeco-events {
  background: var(--bg-light);
}

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

.ibeco-event-item {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.ibeco-event-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ibeco-event-emoji {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.ibeco-event-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.ibeco-event-desc {
  font-size: 0.875rem;
  color: var(--text-gray);
}

/* How It Works */
.ibeco-how {
  background: var(--white);
}

.ibeco-step {
  text-align: center;
  padding: 0 20px;
}

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

.ibeco-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.ibeco-step-desc {
  color: var(--text-gray);
}

/* Problem/Solution Section */
.ibeco-problem {
  background: var(--bg-light);
}

.ibeco-problem-content {
  padding: 2rem 0;
}

.ibeco-problem-list {
  margin-top: 2rem;
}

.ibeco-problem-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.ibeco-problem-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.ibeco-problem-item p {
  margin: 0;
  color: var(--text-gray);
  font-size: 1.1rem;
}

.ibeco-solution-content {
  padding: 2rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--primary-light);
}

.ibeco-solution-badge {
  display: inline-block;
  background: var(--primary-light);
  padding: 8px 20px;
  border-radius: 25px;
  margin-bottom: 1.5rem;
}

.ibeco-solution-badge span {
  color: var(--primary-color);
  font-weight: 600;
}

.ibeco-solution-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.ibeco-solution-desc {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.ibeco-solution-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ibeco-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ibeco-point i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.ibeco-point span {
  color: var(--text-dark);
  font-weight: 500;
}

/* Categories Section */
.ibeco-categories {
  background: var(--white);
}

.ibeco-category-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .ibeco-category-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 576px) {
  .ibeco-category-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.ibeco-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.ibeco-category-circle {
  width: 80px;
  height: 80px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-bottom: 0.5rem;
}

.ibeco-category-item:hover .ibeco-category-circle {
  background: var(--primary-light);
  border-color: var(--primary-color);
  transform: translateY(-3px) scale(1.05);
}

.ibeco-category-emoji {
  font-size: 2rem;
  display: block;
}

.ibeco-category-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

/* Benefits Section */
.ibeco-benefits {
  background: var(--bg-light);
}

.ibeco-benefit-card {
  text-align: center;
  padding: 2.5rem;
  height: 100%;
}

.ibeco-benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary-color);
}

.ibeco-benefit-icon span {
  display: block;
  line-height: 1;
}

.ibeco-benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.ibeco-benefit-desc {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* CTA Section */
.ibeco-cta {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.ibeco-cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 24px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.ibeco-cta-badge span {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.ibeco-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.ibeco-cta-desc {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--white);
  opacity: 0.95;
}

/* Download Buttons - Clean Setup */
.ibeco-download-buttons {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.ibeco-download-buttons a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.ibeco-download-buttons a:hover {
  transform: scale(1.05);
}

.ibeco-download-buttons img {
  height: 50px;
  width: auto;
  display: block;
}

.ibeco-footer-app-badges {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}

.ibeco-footer-app-badges img {
  height: 40px;
}

/* Custom Footer */
.ibeco-custom-footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 80px 0 0;
}

.ibeco-footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 60px;
}

.ibeco-footer-brand {
  max-width: 300px;
}

.ibeco-footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.ibeco-footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.ibeco-footer-links h4,
.ibeco-footer-company h4,
.ibeco-footer-download h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.ibeco-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ibeco-footer-links li {
  margin-bottom: 0.75rem;
}

.ibeco-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.ibeco-footer-company p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.ibeco-footer-company a {
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.3s ease;
}

.ibeco-footer-company a:hover {
  text-decoration: underline;
}

/* Footer Social */
.ibeco-footer-social h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.ibeco-social-links {
  display: flex;
  gap: 1rem;
}

.ibeco-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.ibeco-social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.ibeco-social-link:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  color: var(--white);
}

.ibeco-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  text-align: center;
}

.ibeco-footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-size: 0.875rem;
}

/* Utilities */
.ibeco-text-primary {
  color: var(--primary-color);
}

.ibeco-bg-light {
  background: var(--bg-light);
}

/* Responsive */
@media (max-width: 768px) {
  /* Header Mobile */
  .ibeco-nav-links {
    display: none;
  }
  
  .ibeco-mobile-toggle {
    display: block;
  }
  
  /* Hero Mobile */
  .ibeco-hero {
    padding: 120px 0 60px;
  }
  
  .ibeco-hero-title {
    font-size: 2.5rem;
  }
  
  .ibeco-hero-subtitle {
    font-size: 1.25rem;
  }
  
  /* Sections Mobile */
  .ibeco-section {
    padding: 60px 0;
  }
  
  .ibeco-section-title {
    font-size: 2rem;
  }
  
  .ibeco-event-grid {
    grid-template-columns: 1fr;
  }
  
  /* Problem/Solution Mobile */
  .ibeco-problem-content,
  .ibeco-solution-content {
    margin-bottom: 2rem;
  }
  
  .ibeco-benefit-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* Footer Mobile */
  .ibeco-footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .ibeco-footer-brand {
    max-width: 100%;
  }
  
  .ibeco-footer-links ul {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .ibeco-footer-links li {
    margin-bottom: 0;
  }
  
  .ibeco-footer-logo {
    justify-content: center;
  }
}