/* [project]/src/shared/theme/styles/landing.css [app-client] (css) */
.landing-page {
  color: #2c2416;
  background: linear-gradient(135deg, #fdfcf8 0%, #f9f6f0 100%);
  min-height: 100vh;
}

.landing-main {
  overflow-x: hidden;
}

.landing-navbar {
  z-index: 1000;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #fdfcf8f2;
  border-bottom: 1px solid #d4af371a;
  transition: all .3s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.landing-navbar-container {
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  height: 70px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
}

.landing-navbar-brand {
  align-items: center;
  display: flex;
}

.landing-logo {
  flex-direction: column;
  display: flex;
}

.landing-logo-text {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.landing-logo-subtitle {
  color: #8b7355;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
}

.landing-navbar-links {
  gap: 32px;
  display: flex;
}

.landing-nav-link {
  color: #2c2416;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  position: relative;
}

.landing-nav-link:hover {
  color: #d4af37;
}

.landing-nav-link:after {
  content: "";
  background: linear-gradient(90deg, #d4af37, #b8860b);
  width: 0;
  height: 2px;
  transition: width .3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

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

.landing-navbar-actions {
  align-items: center;
  gap: 12px;
  display: flex;
}

.landing-nav-button {
  border-radius: 8px;
  font-weight: 500;
  transition: all .3s;
}

.login-button {
  color: #2c2416;
}

.login-button:hover {
  color: #d4af37;
  background: #d4af371a;
}

.signup-button {
  color: #fff;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  border: none;
  box-shadow: 0 4px 12px #d4af374d;
}

.signup-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #d4af3766;
}

.hero-section {
  background: linear-gradient(135deg, #fdfcf8 0%, #f9f6f0 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #d4af370d 0%, #0000 70%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -50%;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  display: grid;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  color: #2c2416 !important;
  margin-bottom: 24px !important;
  font-size: 56px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
}

.hero-title-accent {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subtitle {
  color: #5c5442 !important;
  margin-bottom: 32px !important;
  font-size: 20px !important;
  line-height: 1.6 !important;
}

.hero-benefits {
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  display: flex;
}

.hero-benefit {
  color: #2c2416;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  display: flex;
}

.hero-benefit-icon {
  color: #d4af37;
  font-size: 16px;
}

.hero-actions {
  gap: 16px;
  margin-bottom: 48px;
  display: flex;
}

.hero-cta-primary {
  color: #fff !important;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
  border: none !important;
  border-radius: 12px !important;
  height: 48px !important;
  padding: 0 32px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px #d4af374d !important;
}

.hero-cta-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px #d4af3766 !important;
}

.hero-cta-secondary {
  color: #2c2416 !important;
  background: #d4af370d !important;
  border: 1px solid #d4af374d !important;
  border-radius: 12px !important;
  height: 48px !important;
  padding: 0 32px !important;
  font-weight: 500 !important;
}

.hero-cta-secondary:hover {
  color: #d4af37 !important;
  background: #d4af371a !important;
  border-color: #d4af37 !important;
}

.hero-trust {
  text-align: left;
}

.hero-trust-text {
  color: #8b7355;
  margin-bottom: 12px;
  font-size: 14px;
  display: block;
}

.hero-trust-badges {
  gap: 16px;
  display: flex;
}

.hero-badge {
  color: #d4af37;
  background: #d4af371a;
  border: 1px solid #d4af3733;
  border-radius: 16px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
}

.hero-visual {
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-dashboard-preview {
  background: #fff;
  border: 1px solid #d4af371a;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  box-shadow: 0 20px 60px #0000001a;
}

.dashboard-header {
  background: linear-gradient(135deg, #fdfcf8 0%, #f9f6f0 100%);
  border-bottom: 1px solid #d4af371a;
  padding: 16px 20px;
}

.dashboard-tabs {
  gap: 16px;
  display: flex;
}

.dashboard-tab {
  color: #8b7355;
  cursor: pointer;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  transition: all .3s;
}

.dashboard-tab.active {
  color: #fff;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
}

.dashboard-content {
  padding: 24px;
}

.dashboard-stats {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
  display: grid;
}

.dashboard-stat {
  text-align: center;
  background: #d4af370d;
  border: 1px solid #d4af371a;
  border-radius: 12px;
  padding: 16px;
}

.stat-label {
  color: #8b7355;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
  font-size: 12px;
}

.stat-value {
  color: #2c2416;
  font-size: 20px;
  font-weight: 700;
}

.stat-value.positive {
  color: #22c55e;
}

.dashboard-chart {
  background: #d4af3705;
  border: 1px solid #d4af371a;
  border-radius: 12px;
  height: 120px;
  position: relative;
  overflow: hidden;
}

.chart-placeholder {
  justify-content: center;
  align-items: end;
  width: 100%;
  height: 100%;
  padding: 16px;
  display: flex;
  position: relative;
}

.chart-line {
  background: linear-gradient(90deg, #d4af37, #22c55e);
  border-radius: 1px;
  height: 2px;
  position: absolute;
  top: 20px;
  left: 16px;
  right: 16px;
}

.chart-bars {
  align-items: end;
  gap: 8px;
  height: 80px;
  display: flex;
}

.chart-bar {
  opacity: .8;
  background: linear-gradient(#d4af37, #b8860b);
  border-radius: 2px;
  width: 20px;
}

.stats-section {
  background: #fff;
  border-top: 1px solid #d4af371a;
  border-bottom: 1px solid #d4af371a;
  padding: 80px 0;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.stats-title {
  color: #2c2416 !important;
  margin-bottom: 16px !important;
  font-size: 40px !important;
  font-weight: 700 !important;
}

.stats-grid .ant-row {
  justify-content: center;
}

.stat-item {
  text-align: center;
  padding: 24px;
}

.stat-icon {
  color: #d4af37;
  margin-bottom: 16px;
  font-size: 32px;
}

.stat-content .ant-statistic {
  margin-bottom: 8px;
}

.stat-content .ant-statistic-content {
  color: #2c2416 !important;
  font-size: 36px !important;
  font-weight: 700 !important;
}

.stat-title {
  color: #2c2416;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
}

.stat-description {
  color: #8b7355;
  font-size: 14px;
  line-height: 1.4;
}

.features-section {
  background: linear-gradient(135deg, #fdfcf8 0%, #f9f6f0 100%);
  padding: 100px 0;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.features-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
}

.features-title {
  color: #2c2416 !important;
  margin-bottom: 24px !important;
  font-size: 40px !important;
  font-weight: 700 !important;
}

.features-subtitle {
  color: #5c5442 !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
}

.feature-card {
  height: 100%;
  background: #fff !important;
  border: 1px solid #d4af371a !important;
  border-radius: 16px !important;
  transition: all .3s !important;
  box-shadow: 0 4px 20px #0000000d !important;
}

.feature-card:hover {
  border-color: #d4af3733 !important;
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 40px #0000001a !important;
}

.feature-content {
  text-align: center;
  flex-direction: column;
  height: 100%;
  padding: 32px 24px;
  display: flex;
}

.feature-icon {
  margin-bottom: 20px;
  font-size: 48px;
}

.feature-title {
  color: #2c2416 !important;
  margin-bottom: 16px !important;
  font-size: 20px !important;
  font-weight: 600 !important;
}

.feature-description {
  flex-grow: 1;
  color: #5c5442 !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

.features-bottom {
  text-align: center;
  margin-top: 60px;
}

.features-bottom-text {
  color: #5c5442 !important;
  margin: 0 !important;
  font-size: 18px !important;
}

.testimonials-section {
  background: #fff;
  padding: 100px 0;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-title {
  color: #2c2416 !important;
  margin-bottom: 24px !important;
  font-size: 40px !important;
  font-weight: 700 !important;
}

.testimonials-subtitle {
  color: #5c5442 !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
}

.testimonial-card {
  height: 100%;
  background: linear-gradient(135deg, #fdfcf8 0%, #f9f6f0 100%) !important;
  border: 1px solid #d4af371a !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 20px #0000000d !important;
}

.testimonial-content {
  flex-direction: column;
  height: 100%;
  padding: 32px 24px;
  display: flex;
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-rating .ant-rate {
  color: #d4af37 !important;
}

.testimonial-quote {
  flex-grow: 1;
  font-style: italic;
  color: #2c2416 !important;
  margin-bottom: 20px !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}

.testimonial-highlight {
  margin-bottom: 24px;
}

.highlight-badge {
  color: #fff;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  border-radius: 12px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
}

.testimonial-author {
  align-items: center;
  gap: 16px;
  display: flex;
}

.author-avatar {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
}

.author-name {
  color: #2c2416;
  font-size: 16px;
  font-weight: 600;
}

.author-role {
  color: #5c5442;
  margin-bottom: 2px;
  font-size: 14px;
}

.author-company {
  color: #d4af37;
  font-size: 14px;
  font-weight: 500;
}

.testimonials-bottom {
  text-align: center;
  margin-top: 60px;
}

.testimonials-stats {
  justify-content: center;
  gap: 60px;
  display: flex;
}

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

.testimonial-stat .stat-number {
  color: #d4af37;
  margin-bottom: 4px;
  font-size: 32px;
  font-weight: 700;
  display: block;
}

.testimonial-stat .stat-label {
  color: #8b7355;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 14px;
}

.pricing-section {
  background: linear-gradient(135deg, #fdfcf8 0%, #f9f6f0 100%);
  padding: 100px 0;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-title {
  color: #2c2416 !important;
  margin-bottom: 24px !important;
  font-size: 40px !important;
  font-weight: 700 !important;
}

.pricing-subtitle {
  color: #5c5442 !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
}

.pricing-card {
  height: 100%;
  position: relative;
  overflow: visible;
  background: #fff !important;
  border: 1px solid #d4af371a !important;
  border-radius: 20px !important;
  transition: all .3s !important;
  box-shadow: 0 4px 20px #0000000d !important;
}

.pricing-card-popular {
  transform: scale(1.05);
  border-color: #d4af37 !important;
  box-shadow: 0 12px 40px #d4af3733 !important;
}

.pricing-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 40px #0000001a !important;
}

.pricing-card-popular:hover {
  transform: scale(1.05)translateY(-8px) !important;
}

.pricing-badge {
  z-index: 10;
  position: absolute;
  top: -10px;
  right: -10px;
}

.pricing-ribbon .ant-ribbon-text {
  color: #fff !important;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
  font-weight: 600 !important;
}

.pricing-content {
  flex-direction: column;
  height: 100%;
  padding: 40px 32px;
  display: flex;
}

.pricing-plan-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-plan-icon {
  color: #d4af37;
  margin-bottom: 16px;
  font-size: 48px;
}

.pricing-plan-name {
  color: #2c2416 !important;
  margin-bottom: 12px !important;
  font-size: 24px !important;
  font-weight: 700 !important;
}

.pricing-plan-description {
  color: #5c5442 !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

.pricing-price {
  text-align: center;
  border-bottom: 1px solid #d4af371a;
  margin-bottom: 32px;
  padding-bottom: 32px;
}

.pricing-currency {
  color: #8b7355;
  vertical-align: top;
  font-size: 24px;
}

.pricing-amount {
  color: #2c2416;
  margin: 0 4px;
  font-size: 56px;
  font-weight: 700;
}

.pricing-period {
  color: #8b7355;
  font-size: 18px;
}

.pricing-features {
  flex-grow: 1;
  margin-bottom: 32px;
}

.pricing-feature {
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 8px 0;
  display: flex;
}

.pricing-feature-icon {
  color: #22c55e;
  flex-shrink: 0;
  font-size: 16px;
}

.pricing-feature-text {
  color: #2c2416;
  line-height: 1.4;
}

.pricing-button {
  color: #fff !important;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
  border: none !important;
  border-radius: 12px !important;
  height: 48px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px #d4af374d !important;
}

.pricing-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px #d4af3766 !important;
}

.pricing-bottom {
  text-align: center;
  margin-top: 60px;
}

.pricing-bottom-text {
  color: #5c5442 !important;
  margin: 0 !important;
  font-size: 14px !important;
}

.cta-section {
  color: #fff;
  background: linear-gradient(135deg, #2c2416 0%, #1a1510 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #d4af371a 0%, #0000 70%);
  width: 200%;
  height: 200%;
  position: absolute;
  top: -50%;
  left: -50%;
}

.cta-container {
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.cta-content {
  max-width: 600px;
}

.cta-title {
  color: #fff !important;
  margin-bottom: 24px !important;
  font-size: 40px !important;
  font-weight: 700 !important;
}

.cta-subtitle {
  color: #fffc !important;
  margin-bottom: 32px !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
}

.cta-benefits {
  margin-bottom: 40px;
}

.cta-benefit {
  color: #ffffffe6;
  margin-bottom: 8px;
  font-size: 16px;
}

.cta-actions {
  gap: 16px;
  margin-bottom: 32px;
  display: flex;
}

.cta-primary-button {
  color: #fff !important;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
  border: none !important;
  border-radius: 12px !important;
  height: 48px !important;
  padding: 0 32px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px #d4af374d !important;
}

.cta-primary-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px #d4af3766 !important;
}

.cta-secondary-button {
  color: #fff !important;
  background: #ffffff0d !important;
  border: 1px solid #ffffff4d !important;
  border-radius: 12px !important;
  height: 48px !important;
  padding: 0 32px !important;
  font-weight: 500 !important;
}

.cta-secondary-button:hover {
  color: #d4af37 !important;
  background: #d4af371a !important;
  border-color: #d4af37 !important;
}

.cta-contact {
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 16px;
  padding: 32px;
}

.cta-contact-title {
  color: #fff !important;
  margin-bottom: 12px !important;
  font-size: 20px !important;
}

.cta-contact-subtitle {
  color: #ffffffb3 !important;
  margin-bottom: 24px !important;
}

.cta-contact-options {
  margin-bottom: 24px;
}

.cta-contact-option {
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  display: flex;
}

.cta-contact-icon {
  color: #d4af37;
  text-align: center;
  width: 24px;
  font-size: 20px;
}

.cta-contact-label {
  color: #fff9;
  margin-bottom: 2px;
  font-size: 14px;
}

.cta-contact-value {
  color: #fff;
  font-weight: 500;
}

.cta-contact-hours {
  color: #ffffffb3;
  font-size: 14px;
  line-height: 1.5;
}

.landing-footer {
  color: #fffc;
  background: #1a1510;
}

.landing-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.landing-footer-main {
  padding: 80px 0 40px;
}

.footer-section {
  height: 100%;
}

.footer-brand-title {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  color: #fff !important;
  margin-bottom: 8px !important;
  font-size: 24px !important;
  font-weight: 700 !important;
}

.footer-brand-subtitle {
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #fff9 !important;
  margin-bottom: 16px !important;
  font-size: 12px !important;
}

.footer-description {
  color: #ffffffb3 !important;
  margin-bottom: 24px !important;
  line-height: 1.6 !important;
}

.footer-social {
  gap: 16px;
  display: flex;
}

.footer-social-link {
  color: #ffffffb3;
  background: #ffffff1a;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .3s;
  display: flex;
}

.footer-social-link:hover {
  color: #fff;
  background: #d4af37;
  transform: translateY(-2px);
}

.footer-section-title {
  color: #fff !important;
  margin-bottom: 20px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.footer-links {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.footer-link {
  font-size: 14px;
  color: #ffffffb3 !important;
  transition: color .3s !important;
}

.footer-link:hover {
  color: #d4af37 !important;
}

.footer-contact {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.footer-contact-item {
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.footer-contact-icon {
  color: #d4af37;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 16px;
}

.footer-divider {
  border-color: #ffffff1a !important;
  margin: 0 !important;
}

.landing-footer-bottom {
  padding: 24px 0;
}

.footer-copyright {
  color: #fff9 !important;
  margin: 0 !important;
  font-size: 14px !important;
}

.footer-legal {
  justify-content: flex-end;
  gap: 24px;
  display: flex;
}

.footer-legal-link {
  color: #fff9 !important;
  font-size: 14px !important;
  transition: color .3s !important;
}

.footer-legal-link:hover {
  color: #d4af37 !important;
}

@media (max-width: 1024px) {
  .hero-content {
    text-align: center;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-title {
    font-size: 44px !important;
  }

  .testimonials-stats {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .landing-navbar-links {
    display: none;
  }

  .landing-navbar-actions {
    gap: 8px;
  }

  .hero-section {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 36px !important;
  }

  .hero-subtitle {
    font-size: 18px !important;
  }

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

  .hero-actions .ant-btn {
    width: 100%;
    max-width: 280px;
  }

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

  .hero-trust-badges {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stats-section, .features-section, .testimonials-section, .pricing-section, .cta-section {
    padding: 60px 0;
  }

  .stats-title, .features-title, .testimonials-title, .pricing-title, .cta-title {
    font-size: 32px !important;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .testimonials-stats {
    flex-direction: column;
    gap: 24px;
  }

  .footer-legal {
    justify-content: center;
    margin-top: 16px;
  }

  .landing-footer-bottom .ant-row {
    text-align: center;
    flex-direction: column;
  }
}

/*# sourceMappingURL=src_shared_theme_styles_landing_06pfm.~.css.map*/