/* AI Mobile Business Card Page Styles */

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
  padding: 150px 20px 80px;
  text-align: center;
  margin-top: 70px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 100%);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid var(--primary);
  cursor: pointer;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.2);
  background: var(--bg-light);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
}

.btn-icon svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.btn-cta:hover .btn-icon svg {
  transform: translateX(3px);
}

/* Key Features Section */
.features-section {
  padding: 100px 20px;
  background: white;
}

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

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg) 100%);
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid var(--bg-dark);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(30, 58, 95, 0.15);
  border-color: var(--primary);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 35px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 15px;
}

.feature-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Content Sections */
.content-section {
  padding: 100px 20px;
  background: var(--bg-light);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.content-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.content-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.content-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
  padding: 100px 20px;
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 50px 40px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(30, 58, 95, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: attr(data-number);
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(30, 58, 95, 0.3);
}

.benefit-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.benefit-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.benefit-desc {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.95;
}

/* Sample Section */
.sample-section {
  padding: 100px 20px;
  background: white;
}

.sample-content {
  max-width: 1200px;
  margin: 0 auto;
}

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

.sample-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.sample-subtitle {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
}

.sample-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.phone-mockup {
  position: relative;
  width: 320px;
  height: 650px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 30px;
  background: #1a1a1a;
  border-radius: 0 0 20px 20px;
}

.sample-card-content {
  padding: 50px 30px 30px;
  height: 100%;
  overflow-y: auto;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
}

.sample-profile {
  text-align: center;
  margin-bottom: 30px;
}

.sample-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
}

.sample-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.sample-position {
  font-size: 14px;
  color: var(--text-light);
}

.sample-info-grid {
  background: white;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 15px;
}

.sample-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.sample-info-item:last-child {
  border-bottom: none;
}

.sample-info-label {
  font-weight: 600;
  color: var(--text-light);
  min-width: 60px;
}

.sample-info-value {
  color: var(--text-light);
}

.sample-features {
  flex: 1;
  max-width: 500px;
}

.sample-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.sample-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.sample-feature-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.sample-feature-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Message Section */
.message-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
  text-align: center;
}

.message-content {
  max-width: 900px;
  margin: 0 auto;
}

.message-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 30px;
  line-height: 1.4;
}

.message-desc {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    padding: 120px 20px 60px;
  }

  .hero-title {
    font-size: 40px;
  }

  .section-title {
    font-size: 36px;
  }

  .features-grid,
  .content-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 50px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .features-grid,
  .content-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sample-title {
    font-size: 28px;
  }

  .sample-display {
    flex-direction: column;
    gap: 40px;
  }

  .phone-mockup {
    width: 280px;
    height: 570px;
  }

  .sample-features {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .section-title {
    font-size: 20px;
  }
}