/* Hero Section */
.hero {
  padding: 250px 0 130px;
  overflow: hidden;
  padding-bottom: 0px;
}

.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.hero-title {
  margin-bottom: 25px;
  line-height: 1.1;
  color: var(--secondary-color);
  position: relative;
  font-family: "Luciole-Bold";
  max-width: 690px;
  flex: 1;
  text-align: center;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--Charcoal);
  font-weight: 400;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  position: relative;
  max-width: 500px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-apps {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
}

.hero-apps::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.2;
}

.app-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.app-button {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 12px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-button:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.app-icon {
  height: 28px;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}

.app-icon.gray {
  opacity: 1;
}

.app-icon.primary {
  opacity: 0;
  position: absolute;
  top: 12px;
  left: 12px;
  filter: brightness(0) invert(1);
}

.app-button:hover .app-icon.gray {
  opacity: 0;
}

.app-button:hover .app-icon.primary {
  opacity: 1;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #f27721, #ffca2b);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.hero-img {
  max-width: 500px;
  height: auto;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
}

.hero-image:hover .hero-img {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-bg-wrapper {
  text-align: center;
  max-width: 100%;
  position: relative;
  padding-top: 50px;
}

.hero-bg-wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset -50px -95px 60px 10px var(--white);
}

.hero-bg-wrapper img {
  padding: 0px 12px;
  width: 100%;
}

/* Professional Features Section */
.professional-features {
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--light-text);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
html.dark-mode .feature-card {
  background: var(--secondary-color);
  border: var(--border);
}
.feature-visual {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  object-position: top;
}

.image-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 195, 189, 0.1) 0%,rgba(14, 165, 160, 0.05) 100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.feature-content {
  padding: 2.5rem;
}

.feature-category {
  background: var(--gray);
  color: var(--light-text);
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #e2e8f0;
}
html.dark-mode .feature-category {
  border: var(--border);
}

.feature-title {
  font-size: 28px;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 16px;
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--secondary-color);
}
html.dark-mode .highlight-item span{
  color: var(--white);
}
.highlight-item i {
  color: #10b981;
  font-size: 1rem;
}

.performance-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.metric {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--gray);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

html.dark-mode .metric {
  border: var(--border);
}

.metric-value {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.collaboration-tools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--gray);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  font-size: 14px;
  color: var(--secondary-color);
}
html.dark-mode .tool-item {
  border: var(--border);
}
html.dark-mode .tool-item span{
  color: var(--white);
}
.tool-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.analytics-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.analytics-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--gray);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
html.dark-mode .analytics-item {
  border: var(--border);
}
.analytics-icon {
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.analytics-content h4 {
  font-size: 16px;
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
}

.analytics-content p {
  font-size: 14px;
  color: var(--light-text);
  margin: 0;
}

/* Features Section */
.features-section {
  background: var(--gray);
  position: relative;
}
html.dark-mode .features-section {
  background: var(--secondary-color);
}

.features-modern {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.feature-row:nth-child(2) {
  grid-template-columns: 1fr 2fr;
}

.feature-card-large {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}
html.dark-mode .feature-card-large {
  background: var(--secondary-color);
  border: var(--border);
}

.feature-card-small {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.feature-icon-large {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  box-shadow: 0 8px 25px rgba(16, 195, 189, 0.3);
}
.feature-icon-large img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.feature-card-large h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.feature-card-large p {
  color: var(--light-text);
  margin-bottom: 16px;
  font-size: 16px;
}

.feature-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.highlight-tag {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  color: var(--secondary-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #e2e8f0;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.25rem;
}

.feature-row .feature-card-large:last-child h3 ,.feature-row:nth-child(2) .feature-card-large:first-child h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
html.dark-mode .feature-row .feature-card-large:last-child h3 ,html.dark-mode .feature-row:nth-child(2) .feature-card-large:first-child h3 {
  color: var(--white);
}
.feature-row:nth-child(2) .feature-card-large:last-child h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.feature-card-small p {
  color: var(--light-text);
  line-height: 1.6;
}

.features-section .feature-highlights {
  flex-direction: unset;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .hero-bg-wrapper img {
    width: 100%;
    padding: 0px 12px;
  }

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

@media (max-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-row:nth-child(2) {
    grid-template-columns: 1fr;
  }

  .feature-card-large,
  .feature-card-small {
    padding: 20px;
  }

  .feature-card-large h3 {
    font-size: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
  }

  .feature-visual {
    height: 250px;
  }

  .feature-content {
    padding: 20px;
  }

  .feature-title {
    font-size: 1.5rem;
  }

  .performance-metrics {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .collaboration-tools {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .metric-value {
    font-size: 1.25rem;
  }
  .hero {
    padding: 150px 0 60px;
  }
  .feature-icon-large {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }
  .feature-icon-large i {
    font-size: 1.25rem;
  }
}

@media (max-width: 575px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .feature-title {
    font-size: 1.25rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }

  .performance-metrics {
    gap: 0.5rem;
  }

  .metric {
    padding: 1rem 0.75rem;
  }

  .metric-value {
    font-size: 1.125rem;
  }

  .metric-label {
    font-size: 0.7rem;
  }

  .tool-item {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .analytics-item {
    padding: 1rem;
  }

  .analytics-content p {
    font-size: 0.8rem;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .feature-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
