*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background-color: hsl(40, 33%, 98%);
  color: hsl(220, 20%, 20%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Serif Display", Georgia, serif;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 6rem;
  }
}

.section {
  padding: 5rem 1.5rem;
}
@media (min-width: 768px) {
  .section {
    padding: 5rem 3rem;
  }
}
@media (min-width: 1024px) {
  .section {
    padding: 7rem 6rem;
  }
}

.bg-cream {
  background-color: hsl(40, 40%, 96%);
}

.bg-primary {
  background-color: hsl(158, 30%, 35%);
}

.text-primary {
  color: hsl(158, 30%, 35%);
}

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

.hidden {
  display: none !important;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease-out forwards;
}

.delay-1 {
  animation-delay: 100ms;
}

.delay-2 {
  animation-delay: 200ms;
}

.delay-3 {
  animation-delay: 300ms;
}

.delay-4 {
  animation-delay: 400ms;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "DM Sans", system-ui, sans-serif;
}
.btn-primary {
  background-color: hsl(158, 30%, 35%);
  color: hsl(0, 0%, 100%);
}
.btn-primary:hover {
  background-color: hsl(158, 30%, 30%);
}
.btn-hero {
  background-color: hsl(158, 30%, 35%);
  color: hsl(0, 0%, 100%);
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  border-radius: 9999px;
  box-shadow: 0 8px 24px -8px hsla(220, 20%, 20%, 0.12);
}
.btn-hero:hover {
  background-color: hsl(158, 30%, 30%);
  transform: translateY(-1px);
}
.btn-hero-outline {
  background-color: transparent;
  color: hsl(220, 20%, 20%);
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  border-radius: 9999px;
  border: 1px solid hsl(40, 20%, 88%);
}
.btn-hero-outline:hover {
  background-color: hsl(40, 30%, 94%);
}
.btn-cta {
  background-color: hsl(0, 0%, 100%);
  color: hsl(158, 30%, 35%);
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 9999px;
  box-shadow: 0 16px 48px -12px hsla(220, 20%, 20%, 0.15);
}
.btn-cta:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(251.583, 250.461, 248.217, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(230.52, 226.44, 218.28, 0.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) {
  .nav {
    height: 5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: url("./images/logo.png") no-repeat center center;
  background-size: contain;
  width: 110px;
  height: 50px;
  transition: opacity 0.2s ease;
}
.logo:hover {
  opacity: 0.7;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}
.nav-links a {
  font-size: 0.875rem;
  color: hsl(220, 10%, 45%);
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: hsl(220, 20%, 20%);
}

.nav-cta {
  display: none;
}
@media (min-width: 768px) {
  .nav-cta {
    display: block;
  }
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: hsl(220, 20%, 20%);
}
@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}
.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  padding: 1.5rem 0;
  border-top: 1px solid hsl(40, 20%, 88%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}
.mobile-menu a {
  padding: 0.5rem 0;
  color: hsl(220, 20%, 20%);
}
.mobile-menu .btn {
  margin-top: 1rem;
}

.main-content {
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .main-content {
    padding-top: 5rem;
  }
}

.hero {
  background-color: hsl(40, 33%, 98%);
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero-label {
  color: hsl(158, 30%, 35%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}
.hero-title {
  font-size: 2.25rem;
  color: hsl(220, 20%, 20%);
  line-height: 1.1;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}
.hero-description {
  font-size: 1.125rem;
  color: hsl(220, 10%, 45%);
  line-height: 1.7;
  max-width: 32rem;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-visual {
  position: relative;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(220, 10%, 45%);
}
.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: hsl(158, 30%, 35%);
}

.dashboard-wrapper {
  aspect-ratio: 1;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, hsl(158, 25%, 95%), hsl(158, 25%, 85%));
  padding: 2rem;
}
@media (min-width: 1024px) {
  .dashboard-wrapper {
    padding: 3rem;
  }
}

.dashboard-card {
  height: 100%;
  border-radius: 1rem;
  background-color: hsl(0, 0%, 100%);
  box-shadow: 0 16px 48px -12px hsla(220, 20%, 20%, 0.15);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .dashboard-card {
    padding: 2rem;
  }
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.dashboard-label {
  font-size: 0.875rem;
  color: hsl(220, 10%, 45%);
}

.dashboard-value {
  font-size: 1.5rem;
  font-family: "DM Serif Display", Georgia, serif;
  color: hsl(220, 20%, 20%);
}
@media (min-width: 1024px) {
  .dashboard-value {
    font-size: 1.875rem;
  }
}

.dashboard-badge {
  padding: 0.25rem 0.75rem;
  background-color: hsl(158, 25%, 90%);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(158, 30%, 25%);
}

.dashboard-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  padding-top: 1rem;
}

.chart-bar {
  flex: 1;
  background-color: hsl(40, 20%, 92%);
  border-radius: 0.5rem 0.5rem 0 0;
  position: relative;
}
.chart-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: rgba(62.475, 116.025, 96.39, 0.2);
  border-radius: 0.5rem 0.5rem 0 0;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(40, 20%, 88%);
}

.stat-label {
  font-size: 0.75rem;
  color: hsl(220, 10%, 45%);
}

.stat-value {
  font-size: 1.125rem;
  font-weight: 500;
  color: hsl(220, 20%, 20%);
}

.floating-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  box-shadow: 0 16px 48px -12px hsla(220, 20%, 20%, 0.15);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.floating-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: hsl(158, 25%, 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(158, 30%, 35%);
}

.floating-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(220, 20%, 20%);
}

.floating-subtitle {
  font-size: 0.75rem;
  color: hsl(220, 10%, 45%);
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.section-label {
  color: hsl(158, 30%, 35%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  color: hsl(220, 20%, 20%);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: hsl(220, 10%, 45%);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background-color: hsl(0, 0%, 100%);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px -2px hsla(220, 20%, 20%, 0.08);
  transition: all 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 16px 48px -12px hsla(220, 20%, 20%, 0.15);
  transform: translateY(-4px);
}
.service-card:hover .service-icon {
  background-color: hsl(158, 30%, 35%);
  color: hsl(0, 0%, 100%);
}
.service-card:hover .service-icon svg {
  stroke: hsl(0, 0%, 100%);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: hsl(158, 25%, 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}
.service-icon svg {
  stroke: hsl(158, 30%, 35%);
  transition: stroke 0.3s ease;
}

.service-title {
  font-size: 1.25rem;
  color: hsl(220, 20%, 20%);
  margin-bottom: 0.75rem;
}

.service-description {
  font-size: 0.875rem;
  color: hsl(220, 10%, 45%);
  line-height: 1.6;
}

.stats {
  background-color: hsl(158, 30%, 35%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

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

.stat-number {
  font-size: 2.25rem;
  font-family: "DM Serif Display", Georgia, serif;
  color: hsl(0, 0%, 100%);
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .stat-number {
    font-size: 3rem;
  }
}

.stat-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 768px) {
  .stat-text {
    font-size: 1rem;
  }
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-image {
  position: relative;
}

.image-container {
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  background-color: hsl(158, 25%, 85%);
  overflow: hidden;
  position: relative;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(62.475, 116.025, 96.39, 0.2), transparent);
}

.image-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}
.image-card .image-card-label,
.image-card .image-card-name {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}
.image-card > * {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 16px 48px -12px hsla(220, 20%, 20%, 0.15);
}

.image-card-label {
  font-size: 0.875rem;
  color: hsl(220, 10%, 45%);
  margin-bottom: 0.25rem;
}

.image-card-name {
  font-size: 1.25rem;
  font-family: "DM Serif Display", Georgia, serif;
  color: hsl(220, 20%, 20%);
}

.decorative-element {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  background-color: hsl(158, 25%, 90%);
  border-radius: 1rem;
  z-index: -1;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-description {
  font-size: 1.125rem;
  color: hsl(220, 10%, 45%);
  line-height: 1.7;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefit-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: hsl(158, 30%, 35%);
}

.quote {
  border-left: 4px solid hsl(158, 30%, 35%);
  padding-left: 1.5rem;
  margin-top: 1rem;
}
.quote p {
  color: hsl(220, 10%, 45%);
  font-style: italic;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.quote footer {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(220, 20%, 20%);
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: hsl(0, 0%, 100%);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 8px -2px hsla(220, 20%, 20%, 0.08);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: hsl(158, 30%, 35%);
}

.testimonial-card blockquote {
  color: hsl(220, 20%, 20%);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-card footer .author {
  font-weight: 500;
  color: hsl(220, 20%, 20%);
}
.testimonial-card footer .role {
  font-size: 0.875rem;
  color: hsl(220, 10%, 45%);
}

.cta-section {
  background-color: hsl(40, 33%, 98%);
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, hsl(158, 30%, 35%), rgba(62.475, 116.025, 96.39, 0.8));
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-card {
    padding: 4rem;
  }
}
@media (min-width: 1024px) {
  .cta-card {
    padding: 5rem;
  }
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
}
.cta-circle-1 {
  width: 16rem;
  height: 16rem;
  top: 0;
  right: 0;
  transform: translate(33%, -50%);
}
.cta-circle-2 {
  width: 12rem;
  height: 12rem;
  bottom: 0;
  left: 0;
  transform: translate(-25%, 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: 1.875rem;
  color: hsl(0, 0%, 100%);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .cta-content h2 {
    font-size: 3rem;
  }
}
.cta-content > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

.footer {
  background-color: hsl(220, 20%, 20%);
  color: hsl(40, 33%, 98%);
  padding: 5rem 1.5rem;
}
@media (min-width: 768px) {
  .footer {
    padding: 5rem 3rem;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding: 7rem 6rem;
  }
}

.footer-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-logo span {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.25rem;
  color: hsl(40, 33%, 98%);
}

.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background-color: hsl(40, 33%, 98%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(220, 20%, 20%);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.125rem;
}

.footer-description {
  color: rgba(251.583, 250.461, 248.217, 0.7);
  max-width: 24rem;
  margin-bottom: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(251.583, 250.461, 248.217, 0.7);
  font-size: 0.875rem;
}

.footer-links h4 {
  font-weight: 500;
  color: hsl(40, 33%, 98%);
  margin-bottom: 1rem;
  font-family: "DM Sans", system-ui, sans-serif;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(251.583, 250.461, 248.217, 0.7);
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: hsl(40, 33%, 98%);
}

.footer-bottom {
  border-top: 1px solid rgba(251.583, 250.461, 248.217, 0.2);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(251.583, 250.461, 248.217, 0.5);
}

/*# sourceMappingURL=styles.css.map */
