/* src/styles.css */
:root {
  --primary: #6f4e37;
  --primary-dark: #56382c;
  --secondary: #d2b48c;
  --success: #28a745;
  --warning: #f59e0b;
  --danger: #ef4444;
  --light: #fdf6e3;
  --dark: #3e2723;
  --gray-100: #f8f3ef;
  --gray-200: #f1e6df;
  --gray-300: #e6d8c7;
  --gray-400: #cbb8a1;
  --gray-500: #a8896e;
  --gray-600: #8c6f57;
  --gray-700: #6f4e37;
  --gray-800: #56382c;
  --gray-900: #3e2723;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --accent: #c49b77;
  --highlight: #d2691e;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}
.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}
.hero-section {
  padding: 6rem 0 8rem;
  background:
    linear-gradient(
      135deg,
      #f8fafc 0%,
      #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background:
    linear-gradient(
      45deg,
      transparent 70%,
      var(--primary-light) 100%);
  opacity: 0.1;
}
.hero-section .display-4 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-section .lead {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}
.btn {
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}
.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-light {
  background: white;
  color: var(--primary);
  border-color: white;
}
.btn-light:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.hero-image {
  position: relative;
  padding: 2rem;
}
.dashboard-preview {
  background: white;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-10deg);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.dashboard-preview:hover {
  transform: perspective(1000px) rotateY(-5deg);
}
.mockup-header {
  height: 20px;
  background: var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  position: relative;
}
.mockup-header::before,
.mockup-header::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gray-300);
  border-radius: 50%;
}
.mockup-header::before {
  left: 10px;
}
.mockup-header::after {
  right: 10px;
}
.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.mockup-card {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  height: 120px;
  position: relative;
  overflow: hidden;
}
.mockup-card:nth-child(1) {
  background:
    linear-gradient(
      45deg,
      #2563eb,
      #3b82f6);
}
.mockup-card:nth-child(2) {
  background:
    linear-gradient(
      45deg,
      #10b981,
      #34d399);
}
.mockup-card:nth-child(3) {
  background:
    linear-gradient(
      45deg,
      #f59e0b,
      #fbbf24);
}
.mockup-card:nth-child(4) {
  background:
    linear-gradient(
      45deg,
      #8b5cf6,
      #a78bfa);
}
.mockup-card:nth-child(5) {
  background:
    linear-gradient(
      45deg,
      #ef4444,
      #f87171);
}
.mockup-card:nth-child(6) {
  background:
    linear-gradient(
      45deg,
      #06b6d4,
      #22d3ee);
}
.mockup-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      45deg,
      transparent 50%,
      rgba(255, 255, 255, 0.1) 100%);
}
.features-section {
  padding: 5rem 0;
  background: white;
}
.feature-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}
.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--gray-100);
  border-radius: var(--radius);
}
.feature-card h4 {
  margin: 1rem 0;
  font-size: 1.25rem;
}
.how-it-works {
  padding: 5rem 0;
}
.step-card {
  padding: 2.5rem 2rem;
  position: relative;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  position: relative;
}
.step-number::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0.2;
}
.step-card h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.testimonials {
  padding: 5rem 0;
  background: white;
}
.testimonial-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.1;
  font-family: serif;
  line-height: 1;
}
.stars {
  color: #fbbf24;
  font-size: 1.25rem;
}
.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.author-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cta-section {
  padding: 5rem 0;
  background:
    linear-gradient(
      135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  .hero-section .display-4 {
    font-size: 2.75rem;
  }
  .dashboard-preview {
    transform: none;
    margin-top: 3rem;
  }
  .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 0 6rem;
    text-align: center;
  }
  .hero-section .display-4 {
    font-size: 2.25rem;
  }
  .hero-section .lead {
    font-size: 1.125rem;
  }
  .d-flex {
    flex-direction: column;
    gap: 1rem !important;
  }
  .btn {
    width: 100%;
    max-width: 300px;
  }
  .feature-card {
    text-align: center;
  }
  .feature-icon {
    margin: 0 auto;
  }
  .step-card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  .hero-section .display-4 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .testimonial-card {
    padding: 1.5rem;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-section .row > div,
.feature-card,
.step-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}
.hero-section .col-lg-6:first-child {
  animation-delay: 0.1s;
}
.hero-section .col-lg-6:last-child {
  animation-delay: 0.3s;
}
.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}
.step-card:nth-child(1) {
  animation-delay: 0.1s;
}
.step-card:nth-child(2) {
  animation-delay: 0.2s;
}
.step-card:nth-child(3) {
  animation-delay: 0.3s;
}
.testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}
.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}
.text-primary {
  color: var(--primary) !important;
}
.bg-primary {
  background: var(--primary) !important;
}
.bg-light {
  background: var(--light) !important;
}
.text-white {
  color: white !important;
}
.text-muted {
  color: var(--gray-500) !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
.row > * {
  padding: 0 1rem;
}
.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.col-lg-4 {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}
.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
@media (max-width: 768px) {
  .col-md-6,
  .col-lg-4,
  .col-lg-6,
  .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.align-items-center {
  align-items: center !important;
}
.text-center {
  text-align: center !important;
}
.h-100 {
  height: 100% !important;
}
.gap-3 {
  gap: 1rem !important;
}
.g-4 {
  margin: -0.5rem;
}
.g-4 > * {
  padding: 0.5rem;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
