@import url("base.css");

.start-propfirm-page {
  overflow-x: hidden;
}

section {
  position: relative;
  padding: var(--space-20) 0;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.section-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.1), rgba(255, 85, 0, 0.05));
  filter: blur(60px);
}

.shape-1 {
  top: -10%;
  left: -5%;
  width: 40%;
  height: 40%;
}

.shape-2 {
  bottom: -10%;
  right: -5%;
  width: 30%;
  height: 30%;
}

.shape-3 {
  top: 20%;
  right: -10%;
  width: 35%;
  height: 35%;
}

.shape-4 {
  bottom: 10%;
  left: -10%;
  width: 25%;
  height: 25%;
}

.shape-5 {
  top: -5%;
  right: 10%;
  width: 20%;
  height: 20%;
}

.shape-6 {
  bottom: 20%;
  left: 5%;
  width: 15%;
  height: 15%;
}

.shape-7,
.shape-8,
.shape-9,
.shape-10,
.shape-11,
.shape-12,
.shape-13,
.shape-14 {
  width: 25%;
  height: 25%;
  opacity: 0.6;
}

.shape-7 {
  top: 10%;
  left: -5%;
}
.shape-8 {
  bottom: 5%;
  right: -5%;
}
.shape-9 {
  top: -5%;
  right: 20%;
}
.shape-10 {
  bottom: 10%;
  left: 10%;
}
.shape-11 {
  top: 20%;
  right: -10%;
}
.shape-12 {
  bottom: -5%;
  left: 20%;
}
.shape-13 {
  top: 5%;
  left: 30%;
}
.shape-14 {
  bottom: 15%;
  right: 5%;
}

.hero-section {
  padding: var(--space-24) 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
  margin-top: var(--space-20);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.15), rgba(255, 85, 0, 0.05));
  filter: blur(80px);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 85, 0, 0.1) 2px, transparent 2px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.hero-content {
  max-width: 600px;
  margin-bottom: var(--space-12);
}

.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.hero-image {
  flex: 0 0 45%;
  max-width: 500px;
  position: relative;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: var(--space-6);
}

.hero-content .highlight {
  color: var(--brand-primary);
  position: relative;
  display: inline-block;
}

.hero-content .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(255, 85, 0, 0.2);
  z-index: -1;
  border-radius: var(--radius-full);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.hero-stats {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-8);
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.dashboard-showcase {
  position: relative;
  width: 100%;
  height: 320px;
  perspective: 1200px;
  flex: 0 0 45%;
  max-width: 500px;
}

.dashboard-cards {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.dashboard-item {
  position: absolute;
  width: 280px;
  height: 180px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0.5;
  z-index: 1;
  background: white;
}

.dashboard-item.active {
  opacity: 1;
  z-index: 20;
  transform: translate(-50%, -50%) scale(1) rotateX(0) rotateY(0);
  box-shadow: var(--shadow-2xl);
}

.dashboard-item.prev-left {
  opacity: 0.3;
  z-index: 4;
  transform: translate(-90%, -50%) scale(0.85) rotateY(-15deg);
}

.dashboard-item.prev-right {
  opacity: 0.3;
  z-index: 4;
  transform: translate(-10%, -50%) scale(0.85) rotateY(15deg);
}

.dashboard-item.prev-top {
  opacity: 0.3;
  z-index: 4;
  transform: translate(-50%, -90%) scale(0.85) rotateX(15deg);
}

.dashboard-item.prev-bottom {
  opacity: 0.3;
  z-index: 4;
  transform: translate(-50%, -10%) scale(0.85) rotateX(-15deg);
}

.dashboard-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.dashboard-item.active img {
  opacity: 1;
}

.dashboard-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
  border-radius: var(--radius-lg);
}

.dashboard-item.active .dashboard-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}

.dashboard-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  z-index: 25;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 15px;
  border-radius: var(--radius-md);
}

.dashboard-content h3 {
  font-size: 1rem;
  margin-bottom: var(--space-1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 600;
}

.dashboard-content p {
  font-size: 0.75rem;
  opacity: 1;
  max-width: 90%;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  margin: 0;
}

.floating-element {
  position: absolute;
  z-index: 1;
  animation: float 3s ease-in-out infinite alternate;
}

.float-1 {
  top: 10%;
  left: 10%;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.2), rgba(255, 85, 0, 0.1));
  border-radius: var(--radius-full);
  filter: blur(8px);
}

.float-2 {
  bottom: 15%;
  right: 15%;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.15), rgba(255, 85, 0, 0.05));
  border-radius: var(--radius-full);
  filter: blur(10px);
}

.float-3 {
  top: 20%;
  right: 20%;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.25), rgba(255, 85, 0, 0.15));
  border-radius: var(--radius-full);
  filter: blur(6px);
}

.float-4 {
  bottom: 25%;
  left: 25%;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.2), rgba(255, 85, 0, 0.1));
  border-radius: var(--radius-full);
  filter: blur(7px);
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-15px) rotate(10deg);
  }
}

.slide-up {
  animation: slide-up 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.slide-down {
  animation: slide-down 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.slide-left {
  animation: slide-left 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.slide-right {
  animation: slide-right 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slide-up {
  from {
    transform: translate(-50%, 100%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes slide-down {
  from {
    transform: translate(-50%, -200%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes slide-left {
  from {
    transform: translate(50%, -50%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes slide-right {
  from {
    transform: translate(-150%, -50%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  text-align: center;
  gap: var(--space-2);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 10px rgba(255, 85, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 85, 0, 0.4);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}

.btn-outline:hover {
  background: rgba(255, 85, 0, 0.1);
  transform: translateY(-2px);
}

.btn-outline-sm {
  background: transparent;
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  padding: var(--space-2) var(--space-4);
  font-size: 0.875rem;
}

.btn-outline-sm:hover {
  background: rgba(255, 85, 0, 0.1);
}

.btn-glass-light {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: white;
  box-shadow: var(--glass-shadow);
}

.btn-glass-light:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: white;
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: 1.125rem;
}

.benefits-grid,
.challenges-grid,
.services-grid,
.why-choose-grid,
.resources-grid,
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}

.benefit-card,
.challenge-card,
.service-card,
.why-choose-card,
.resource-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  z-index: 1;
}

.benefit-card:hover,
.challenge-card:hover,
.service-card:hover,
.why-choose-card:hover,
.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 85, 0, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.benefit-card:hover .card-glow,
.challenge-card:hover .card-glow,
.service-card:hover .card-glow,
.why-choose-card:hover .card-glow,
.resource-card:hover .card-glow {
  opacity: 1;
}

.benefit-icon,
.challenge-icon,
.service-icon,
.why-choose-icon,
.resource-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--brand-primary-light), var(--brand-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: white;
  font-size: 1.5rem;
}

.benefit-card h3,
.challenge-card h3,
.service-card h3,
.why-choose-card h3,
.resource-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-3);
}

.service-card ul {
  padding-left: var(--space-5);
  list-style-type: disc;
}

.service-card li {
  margin-bottom: var(--space-2);
}

.challenges-text {
  text-align: center;
  margin-bottom: var(--space-8);
}

.challenges-conclusion {
  text-align: center;
  margin-top: var(--space-8);
}

.steps-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.steps-container::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-light));
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
  padding: 0 var(--space-4);
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--brand-primary-light), var(--brand-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: white;
  font-size: 2rem;
  box-shadow: 0 4px 10px rgba(255, 85, 0, 0.3);
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-3);
}

.package-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  border: 2px solid var(--brand-primary);
  transform: scale(1.05);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.package-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--brand-primary);
  color: white;
  padding: var(--space-2) var(--space-4);
  font-size: 0.875rem;
  font-weight: 600;
  border-bottom-left-radius: var(--radius-md);
}

.package-header {
  padding: var(--space-6);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.package-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-primary);
}

.package-body {
  padding: var(--space-6);
  flex-grow: 1;
}

.package-description {
  text-align: center;
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
}

.package-features {
  list-style: none;
}

.package-features li {
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.package-features li i {
  color: var(--brand-primary);
}

.package-footer {
  padding: var(--space-6);
  text-align: center;
  border-top: 1px solid var(--border-light);
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  height: 300px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 1;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.quote-icon {
  font-size: 2rem;
  color: var(--brand-primary);
  opacity: 0.3;
  margin-bottom: var(--space-4);
}

.testimonial-content p {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: var(--space-6);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.125rem;
  margin-bottom: var(--space-1);
}

.author-info p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-8);
  gap: var(--space-4);
}

.testimonial-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: white;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.testimonial-nav-btn:hover {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}

.testimonial-dots {
  display: flex;
  gap: var(--space-2);
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--border-medium);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.testimonial-dot.active {
  background: var(--brand-primary);
  width: 30px;
}

.resources-cta {
  text-align: center;
  margin-top: var(--space-12);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}

.consultation-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group:nth-last-child(2),
.form-group:last-child {
  grid-column: span 2;
}

.consultation-form label {
  font-weight: 500;
  color: var(--text-secondary);
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.2);
}

.consultation-form button {
  width: 100%;
  justify-content: center;
}

.cta {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: white;
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(60px);
}

.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: var(--space-8);
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero-section .container {
    flex-direction: column;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

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

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

  .steps-container {
    flex-direction: column;
    gap: var(--space-12);
  }

  .steps-container::before {
    display: none;
  }

  .dashboard-showcase {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .benefits-grid,
  .challenges-grid,
  .services-grid,
  .why-choose-grid,
  .resources-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .consultation-form {
    grid-template-columns: 1fr;
  }

  .form-group:nth-last-child(2),
  .form-group:last-child {
    grid-column: span 1;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .dashboard-showcase {
    height: 280px;
  }

  .dashboard-item {
    width: 240px;
    height: 160px;
  }
}

.dark .benefit-card,
.dark .challenge-card,
.dark .service-card,
.dark .why-choose-card,
.dark .resource-card,
.dark .package-card,
.dark .testimonial-card,
.dark .form-container {
  background: var(--bg-tertiary);
}

.dark .testimonial-nav-btn {
  background: var(--bg-tertiary);
  border-color: var(--border-light);
}

.dark .dashboard-item {
  background: var(--bg-tertiary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
