@font-face {
  font-family: "Space Grotesk";
  src: url(../fonts/SpaceGrotesk-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url(../fonts/CormorantGaramond-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --color-bg: #faf9f6;
  --color-surface: #ffffff;
  --color-primary: #2b5e4c;
  --color-primary-light: #3f8a72;
  --color-accent: #d4a96a;
  --color-text: #1e1e1e;
  --color-text-light: #5a5a5a;
  --color-border: #e0e0e0;
  --color-muted: #888888;
  --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Cormorant Garamond', serif;
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.04);
  --shadow-md: 0 16px 32px rgba(0,0,0,0.06);
  --radius: 12px;
  --radius-lg: 24px;
  --section-gap: clamp(40px, 6vw, 64px);
  --container-padding: clamp(16px, 5vw, 48px);
}

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

html {
  scroll-behavior: smooth;
  opacity: 1;
  transition: opacity 0.2s;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  margin-bottom: 1.5rem;
}

.section-title {
  text-align: center;
}

.section-title span {
  color: var(--color-primary);
  font-style: italic;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 40px;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  background: transparent;
  font-family: var(--font-body);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(43,94,76,0.25);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(43,94,76,0.3);
}

.btn--outline {
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: white;
}

.header {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 0.75rem 0;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

.logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav__link {
  font-weight: 500;
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--color-primary);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav__toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: 0.2s;
}

.header__notice {
  font-size: 0.75rem;
  color: var(--color-muted);
  background: rgba(255,255,255,0.6);
  padding: 0.25rem 0.75rem;
  border-radius: 30px;
  backdrop-filter: blur(4px);
}

.hero {
  padding: var(--section-gap) 0;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__title {
  margin-bottom: 1rem;
}

.hero__title-accent {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.hero__title-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--color-accent);
  opacity: 0.4;
  z-index: -1;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  max-width: 90%;
}

.hero__price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.hero__image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(145deg, #ffffff 0%, #f0f5f2 100%);
}

.hero__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.about {
  padding: var(--section-gap) 0;
  background: linear-gradient(to bottom, var(--color-bg) 0%, #f3f7f5 100%);
  border-radius: 60px 60px 0 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about__image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

.about__text {
  font-size: 1.1rem;
  margin: 1.5rem 0;
  color: var(--color-text-light);
}

.about__stats {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.about__stats li {
  font-size: 1.25rem;
}

.about__stats strong {
  display: block;
  font-size: 2.5rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.features {
  padding: var(--section-gap) 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--color-surface);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card__icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.feature-card__title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.feature-card__desc {
  color: var(--color-text-light);
}

.how-it-works {
  padding: var(--section-gap) 0;
  background: var(--color-surface);
  border-radius: 60px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.step__number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.step__title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.step__desc {
  color: var(--color-text-light);
}

.how-it-works__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.how-it-works__image img {
  width: 100%;
  object-fit: cover;
}

.gallery {
  padding: var(--section-gap) 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}

.gallery__item:hover {
  transform: scale(1.02);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.testimonials {
  padding: var(--section-gap) 0;
  background: linear-gradient(135deg, #eef5f0 0%, #ffffff 100%);
  border-radius: 60px;
}

.testimonials__slider {
  padding: 1rem 0 3rem;
}

.testimonial {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  height: auto;
}

.testimonial__text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--color-text);
}

.testimonial__author strong {
  display: block;
  color: var(--color-primary);
}

.testimonial__author span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.pricing {
  padding: var(--section-gap) 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--color-border);
}

.pricing-card--featured {
  border: 2px solid var(--color-primary);
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  padding: 0.25rem 1.25rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card__name {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-card__features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.pricing-card__btn {
  width: 100%;
  justify-content: center;
}

.order-form {
  padding: var(--section-gap) 0;
}

.order-form__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--color-surface);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.order-form__info img {
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border 0.2s, box-shadow 0.2s;
  background: white;
}

.form__group input:focus,
.form__group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(43,94,76,0.1);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__group--checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form__group--checkbox input {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
}

.form__group--checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.9rem;
}

.form__submit {
  width: 100%;
  justify-content: center;
}

.faq {
  padding: var(--section-gap) 0;
  background: var(--color-surface);
  border-radius: 60px;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq__question {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.faq__answer {
  color: var(--color-text-light);
}

.footer {
  background: #1a2a24;
  color: #e0e6e3;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.footer__container {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer__brand {
  grid-column: span 1;
}

.footer__logo a {
  color: white;
}

.footer__slogan {
  margin-top: 1rem;
  opacity: 0.8;
}

.footer__label {
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
  font-size: 1rem;
}

.footer__address {
  font-style: normal;
  line-height: 1.6;
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer__legal {
  grid-column: span 1;
}

.footer__legal-links {
  list-style: none;
}

.footer__legal-links li {
  margin-bottom: 0.5rem;
}

.footer__legal-links a {
  color: #e0e6e3;
  opacity: 0.8;
  transition: opacity 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__legal-links a:hover {
  opacity: 1;
  color: white;
}

.footer__disclaimer {
  grid-column: 1 / -1;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.6;
  color: #b0beb8;
}

.footer__copyright {
  grid-column: 1 / -1;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.6;
  text-align: center;
}

.legal-page {
  padding: 4rem 0;
  flex: 1;
}

.legal-page .wrapper {
  background: var(--color-surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--color-primary);
}

.legal-page p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

.legal-page b {
  color: var(--color-text);
}

@media (max-width: 1024px) {
  .features__grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header__container {
    flex-wrap: wrap;
  }
  .nav__menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    gap: 1rem;
  }
  .nav__menu.active {
    display: flex;
  }
  .nav__toggle {
    display: block;
  }
  .header__notice {
    order: 3;
    width: 100%;
    margin-top: 0.5rem;
    text-align: center;
  }
  .hero__container,
  .about__grid,
  .order-form__wrapper {
    grid-template-columns: 1fr;
  }
  .hero__media {
    order: -1;
  }
  .features__grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing__grid {
    grid-template-columns: 1fr;
  }
  .faq__grid {
    grid-template-columns: 1fr;
  }
  .footer__container {
    grid-template-columns: 1fr;
  }
  .footer {
    font-size: 0.9rem;
  }
  .section-title {
    margin-bottom: 2rem;
  }
  .about__stats {
    flex-wrap: wrap;
  }
  .btn {
    padding: 0.7rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
  .form__row {
    grid-template-columns: 1fr;
  }
}
.thanks {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  text-align: center;
}
.thanks__content {
  max-width: 600px;
}
.thanks__logo {
  margin-bottom: 2rem;
}
.thanks__logo img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.thanks h1 {
  margin-bottom: 1rem;
}
.thanks p {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}
.thanks .btn {
  margin-top: 1rem;
}
#cookPopup {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 2px 3px 10px rgb(0 0 0 / .4);
  z-index: 9999
}
#cookPopup p {
  margin: 0;
  text-align: center
}
@media(min-width:576px) {
  #cookPopup.show {
    display: flex;
    align-items: center
  }
}
@media(max-width:575px) {
  #cookPopup.show {
    display: block;
    text-align: left
  }
  .cookPopup_btn {
    margin: 10px 0 0 0
  }
}
.cookPopup_title {
  font-size: 16px;
  font-weight: 700
}
.cookPopup_desc {
  font-size: 16px
}
.show {
  display: flex !important
}