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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul,
ol {
  list-style: none;
}

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

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  overflow-wrap: break-word;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2A3635;
  background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2A3635;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

h3 {
  font-size: 1.5rem;
}

a {
  color: #66B9A3;
  transition: color 150ms ease;
}
a:hover {
  color: rgb(74.0807174888, 161.9192825112, 138.6367713004);
}

::selection {
  background-color: #B3D3CF;
  color: #2A3635;
}

:focus-visible {
  outline: 2px solid #66B9A3;
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  border-radius: 8px;
  transition: all 250ms ease;
}
.btn--primary {
  background-color: #66B9A3;
  color: #FFFFFF;
}
.btn--primary:hover {
  background-color: rgb(77.2825112108, 168.9174887892, 144.6286995516);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(42, 54, 53, 0.07);
}
.btn--secondary {
  background-color: #E07850;
  color: #FFFFFF;
}
.btn--secondary:hover {
  background-color: rgb(217.8601941748, 93.2621359223, 45.3398058252);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(42, 54, 53, 0.07);
}
.btn--outline {
  background-color: transparent;
  color: #66B9A3;
  border: 2px solid #66B9A3;
}
.btn--outline:hover {
  background-color: #66B9A3;
  color: #FFFFFF;
}
.btn--large {
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
}

.card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(42, 54, 53, 0.07);
  overflow: hidden;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(42, 54, 53, 0.1);
}
.card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.card__content {
  padding: 1.5rem;
}
.card__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.card__text {
  color: #7A8685;
  font-size: 0.875rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-list__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #66B9A3;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  background-color: #B3D3CF;
  color: #2A3635;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #2A3635;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: 2px solid #C5CDCC;
  border-radius: 8px;
  background-color: #FFFFFF;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #66B9A3;
  box-shadow: 0 0 0 3px rgba(102, 185, 163, 0.15);
  outline: none;
}
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: #7A8685;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: box-shadow 250ms ease;
}
.header--scrolled {
  box-shadow: 0 4px 6px rgba(42, 54, 53, 0.07);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #66B9A3;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-weight: 500;
  color: #2A3635;
  transition: color 150ms ease;
}
.nav__link:hover {
  color: #66B9A3;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  background: linear-gradient(135deg, #FAFCFC 0%, #D6EEF5 100%);
}
.hero__content {
  max-width: 700px;
}
.hero__tagline {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #E07850;
  background-color: rgba(224, 120, 80, 0.1);
  border-radius: 9999px;
}
.hero__title {
  margin-bottom: 1.5rem;
}
.hero__title span {
  color: #66B9A3;
}
.hero__text {
  font-size: 1.125rem;
  color: #7A8685;
  margin-bottom: 2rem;
  max-width: 550px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.section {
  padding: 5rem 0;
}
.section--teal {
  background-color: #B3D3CF;
}
.section--ice {
  background-color: #D6EEF5;
}
.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.section__title {
  margin-bottom: 1rem;
}
.section__subtitle {
  color: #7A8685;
  font-size: 1.125rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.footer {
  padding: 3rem 0;
  background-color: #2A3635;
  color: #FFFFFF;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer__logo {
  color: #66B9A3;
}
.footer__text {
  color: #C5CDCC;
  font-size: 0.875rem;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transition: background-color 150ms ease;
}
.footer__social-link:hover {
  background-color: #66B9A3;
}

.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(160deg, #FAFCFC 0%, #D6EEF5 50%, #B3D3CF 100%);
  position: relative;
  overflow: hidden;
}
.landing::before, .landing::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
}
.landing::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #66B9A3 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.landing::after {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #E07850 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
}
.landing__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.landing__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #66B9A3, #B3D3CF);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(42, 54, 53, 0.1);
  font-size: 2.5rem;
  color: #FFFFFF;
}
.landing__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #2A3635 0%, #66B9A3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.landing__tagline {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  color: #E07850;
  margin-bottom: 1.5rem;
}
.landing__text {
  font-size: 1.125rem;
  color: #7A8685;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.landing__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.landing__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2A3635;
  backdrop-filter: blur(5px);
}
.landing__feature-icon {
  font-size: 1.25rem;
}
.landing__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto 2rem;
}
.landing__input {
  flex: 1;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border: 2px solid rgba(102, 185, 163, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.landing__input:focus {
  border-color: #66B9A3;
  box-shadow: 0 0 0 3px rgba(102, 185, 163, 0.15);
  outline: none;
}
.landing__input::placeholder {
  color: #7A8685;
}
.landing__submit {
  white-space: nowrap;
}
.landing__note {
  font-size: 0.875rem;
  color: #7A8685;
}
.landing__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
.landing__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.8);
  color: #2A3635;
  transition: all 150ms ease;
  backdrop-filter: blur(5px);
  font-size: 1.25rem;
}
.landing__social-link:hover {
  background: #66B9A3;
  color: #FFFFFF;
  transform: translateY(-2px);
}

@media (min-width: 576px) {
  .landing__form {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    text-align: center;
  }
  .hero__content {
    margin: 0 auto;
  }
  .hero__text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .nav {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */