@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --brand-black: #010101;
  --brand-gold: #dcb761;
  --brand-gold-dark: #caa247;
  --brand-white: #ffffff;
  --brand-sage: #b5bfa5;
  --brand-olive: #8f8c75;
  --brand-peach: #d8b199;
  --brand-primary: var(--brand-gold);
  --brand-primary-hover: var(--brand-gold-dark);
  --brand-secondary: var(--brand-sage);
  --brand-accent: var(--brand-olive);
  --brand-bg: var(--brand-white);
  --brand-bg-alt: #FBFBFB;
  --brand-text: var(--brand-black);
  --brand-text-muted: #666666;
  --container-max-width: 1000px;
  --container-padding: 1.6rem;
  --section-padding-y: 6rem;
  --section-padding-y-lg: 10rem;
  --radius-sm: 0.8rem;
  --radius-md: 1.2rem;
  --radius-lg: 2rem;
  --radius-full: 5rem;
}

*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: inherit;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  background: var(--brand-bg);
  color: var(--brand-text);
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  color-scheme: light;
}

section {
  width: 100%;
}

ul {
  list-style: none;
}

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

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

.nav-bar {
  background: var(--brand-white);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6.5rem;
  padding: 0 var(--container-padding);
  z-index: 500;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, background 0.3s ease;
  gap: 1rem;
}
@media (min-width: 600px) {
  .nav-bar {
    height: 7rem;
    padding: 0 2rem;
  }
}
@media (min-width: 768px) {
  .nav-bar {
    padding: 0 3rem;
  }
}
@media (min-width: 900px) {
  .nav-bar {
    padding: 0 4rem;
  }
}
.nav-bar--scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.nav-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}
.nav-bar__logo {
  height: 4rem;
  transition: transform 0.2s ease;
}
.nav-bar__logo:hover {
  transform: scale(1.02);
}
@media (min-width: 600px) {
  .nav-bar__logo {
    height: 4.5rem;
  }
}
@media (min-width: 768px) {
  .nav-bar__logo {
    height: 5rem;
  }
}
.nav-bar__list {
  background: var(--brand-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 100%;
  max-width: 320px;
  height: 100vh;
  padding: 8rem 3rem 3rem;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 600;
}
@media (min-width: 800px) {
  .nav-bar__list {
    background: transparent;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.2rem;
    position: static;
    transform: none;
    width: auto;
    max-width: none;
    height: auto;
    padding: 0;
    box-shadow: none;
  }
}
@media (min-width: 768px) {
  .nav-bar__list {
    gap: 0.3rem;
  }
}
@media (min-width: 900px) {
  .nav-bar__list {
    gap: 0.5rem;
  }
}
.nav-bar__item {
  width: 100%;
  text-align: center;
}
@media (min-width: 800px) {
  .nav-bar__item {
    width: auto;
  }
}
.nav-bar__link {
  display: block;
  color: var(--brand-text);
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
}
@media (min-width: 800px) {
  .nav-bar__link {
    font-size: 1.2rem;
    padding: 0.6rem 0.8rem;
  }
}
@media (min-width: 768px) {
  .nav-bar__link {
    font-size: 1.3rem;
    padding: 0.7rem 1rem;
  }
}
@media (min-width: 900px) {
  .nav-bar__link {
    font-size: 1.4rem;
    padding: 0.8rem 1.2rem;
  }
}
.nav-bar__link:hover {
  color: var(--brand-primary);
  background: rgba(220, 183, 97, 0.08);
}
.nav-bar__link--active {
  color: var(--brand-primary);
}
@media (min-width: 800px) {
  .nav-bar__link--active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 2px;
    background: var(--brand-primary);
    border-radius: 1px;
  }
}
@media (min-width: 768px) {
  .nav-bar__link--active::after {
    width: 20px;
  }
}
.nav-bar__cta {
  display: none;
}
@media (min-width: 900px) {
  .nav-bar__cta {
    display: inline-flex;
    align-items: center;
    margin-left: 1rem;
    padding: 1rem 1.8rem;
    background: var(--brand-primary);
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  .nav-bar__cta:hover {
    background: var(--brand-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 183, 97, 0.4);
  }
}
.nav-bar__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 4.4rem;
  height: 4.4rem;
  padding: 1rem;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 700;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}
.nav-bar__toggle:hover {
  background: rgba(0, 0, 0, 0.04);
}
@media (min-width: 800px) {
  .nav-bar__toggle {
    display: none;
  }
}
.nav-bar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-bar__toggle--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-bar__toggle--open span:nth-child(2) {
  opacity: 0;
}
.nav-bar__toggle--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.nav-bar__hamburger-icon {
  display: none;
}
.nav-bar__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 550;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-bar__overlay--visible {
  display: block;
  opacity: 1;
}

.nav-bar__list-active {
  transform: translateX(0);
}

.scm-container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 400;
}
@media (min-width: 600px) {
  .scm-container {
    bottom: 2.5rem;
    right: 2rem;
  }
}
.scm-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.scm-container a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.scm-container a:nth-child(1) {
  background: #1877f2;
}
.scm-container a:nth-child(2) {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
@media (min-width: 600px) {
  .scm-container a {
    width: 5rem;
    height: 5rem;
  }
}
.scm-container svg {
  width: 2.4rem;
  height: 2.4rem;
  color: white;
}
@media (min-width: 600px) {
  .scm-container svg {
    width: 2.6rem;
    height: 2.6rem;
  }
}

.home {
  position: relative;
  margin-top: 6.5rem;
}
@media (min-width: 600px) {
  .home {
    margin-top: 7rem;
  }
}
.home {
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, var(--brand-bg) 0%, var(--brand-bg-alt) 100%);
  overflow: hidden;
}
.home__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: var(--container-max-width);
  padding: 4rem var(--container-padding) 5rem;
  z-index: 10;
}
@media (min-width: 600px) {
  .home__container {
    padding: 5rem var(--container-padding) 6rem;
  }
}
@media (min-width: 768px) {
  .home__container {
    padding: 6rem 2rem 8rem;
  }
}
.home__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(220, 183, 97, 0.15);
  border: 1px solid rgba(220, 183, 97, 0.3);
  color: var(--brand-primary-hover);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
}
@media (min-width: 600px) {
  .home__badge {
    font-size: 1.3rem;
    padding: 1rem 2rem;
  }
}
.home__badge svg {
  width: 1.6rem;
  height: 1.6rem;
}
.home__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
}
.home__title {
  margin: 0 0 1.5rem 0;
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  color: var(--brand-text);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
@media (min-width: 600px) {
  .home__title {
    font-size: 3.4rem;
  }
}
@media (min-width: 768px) {
  .home__title {
    font-size: 4rem;
  }
}
.home__title span {
  color: var(--brand-primary);
  position: relative;
}
.home__sub-title {
  max-width: 550px;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  color: var(--brand-text-muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
@media (min-width: 600px) {
  .home__sub-title {
    font-size: 1.7rem;
    margin-bottom: 3rem;
  }
}
.home__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 600px) {
  .home__features {
    gap: 2rem;
    margin-bottom: 4rem;
  }
}
.home__feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.3rem;
  color: var(--brand-text-muted);
}
@media (min-width: 600px) {
  .home__feature {
    font-size: 1.4rem;
  }
}
.home__feature svg {
  width: 2rem;
  height: 2rem;
  color: var(--brand-primary);
  flex-shrink: 0;
}
.home__media {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: 0 auto 3rem;
}
@media (min-width: 600px) {
  .home__media {
    max-width: 380px;
    margin-bottom: 4rem;
  }
}
.home__media::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(220, 183, 97, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}
.home__video {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 4px solid var(--brand-white);
}
@media (min-width: 600px) {
  .home__video {
    border-radius: 2.4rem;
  }
}
.home__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 500px) {
  .home__cta-group {
    flex-direction: row;
    justify-content: center;
    gap: 1.2rem;
  }
}
.home__cta-primary, .home__call-to-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  max-width: 320px;
  padding: 1.6rem 2.5rem;
  background: var(--brand-primary);
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 183, 97, 0.3);
}
@media (min-width: 500px) {
  .home__cta-primary, .home__call-to-action {
    width: auto;
    max-width: none;
  }
}
@media (min-width: 600px) {
  .home__cta-primary, .home__call-to-action {
    padding: 1.8rem 3rem;
    font-size: 1.6rem;
  }
}
.home__cta-primary svg, .home__call-to-action svg {
  width: 2rem;
  height: 2rem;
}
.home__cta-primary:hover, .home__call-to-action:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 183, 97, 0.4);
}
.home__cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  max-width: 320px;
  padding: 1.6rem 2.5rem;
  background: transparent;
  color: var(--brand-text);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 500px) {
  .home__cta-secondary {
    width: auto;
    max-width: none;
  }
}
@media (min-width: 600px) {
  .home__cta-secondary {
    padding: 1.8rem 3rem;
    font-size: 1.6rem;
  }
}
.home__cta-secondary svg {
  width: 2rem;
  height: 2rem;
  transition: transform 0.3s ease;
}
.home__cta-secondary:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: rgba(220, 183, 97, 0.05);
}
.home__cta-secondary:hover svg {
  transform: translateY(3px);
}
.home__scroll-indicator {
  display: none;
  flex-direction: column;
  align-items: center;
  margin-top: 4rem;
  color: var(--brand-text-muted);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}
@media (min-width: 768px) {
  .home__scroll-indicator {
    display: flex;
  }
}
.home__scroll-indicator svg {
  width: 2.4rem;
  height: 2.4rem;
  margin-top: 0.5rem;
}
.home__decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.home__decoration__item {
  position: absolute;
  opacity: 0.4;
}
.home__decoration__item:nth-of-type(1) {
  top: -5%;
  left: -5%;
  width: 30vw;
  max-width: 250px;
}
.home__decoration__item:nth-of-type(2) {
  bottom: -5%;
  right: -5%;
  width: 25vw;
  max-width: 200px;
}
.home__box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home__logo {
  display: none;
}
.home__footer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home__call-to-action {
  margin-bottom: 2rem;
}
.home__info-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.home__info-link:hover {
  transform: translateY(4px);
}
.home__info-text {
  color: var(--brand-text-muted);
  font-size: 1.3rem;
  font-weight: 500;
}
.home__arrow-img {
  width: 30px;
  margin-top: 0.5rem;
  opacity: 0.5;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}
.slideshow-container {
  position: relative;
  margin: auto;
  width: 100%;
}
.slideshow-container img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.mySlides {
  width: 100%;
  display: none;
}
.mySlides.active {
  display: block;
}

.fade {
  animation-name: fadeSlide;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: var(--brand-white);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0.9;
}
.slide-nav:hover {
  background: var(--brand-primary);
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}
.slide-nav:hover svg {
  color: white;
}
.slide-nav svg {
  width: 1.8rem;
  height: 1.8rem;
  color: var(--brand-text);
  transition: color 0.3s ease;
}
.slide-nav--prev {
  left: 1rem;
}
.slide-nav--next {
  right: 1rem;
}

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.slide-dot {
  width: 0.8rem;
  height: 0.8rem;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.slide-dot:hover {
  background: rgba(220, 183, 97, 0.6);
}
.slide-dot.active {
  background: var(--brand-primary);
  transform: scale(1.3);
}

.result {
  background: var(--brand-bg-alt);
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.result__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--section-padding-y) var(--container-padding);
  width: 100%;
  max-width: var(--container-max-width);
}
@media (min-width: 768px) {
  .result__container {
    padding: var(--section-padding-y-lg) 2rem;
  }
}
.result__header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 600px) {
  .result__header {
    margin-bottom: 4rem;
  }
}
.result__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(220, 183, 97, 0.15);
  border: 1px solid rgba(220, 183, 97, 0.3);
  color: var(--brand-primary-hover);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}
.result__badge svg {
  width: 1.6rem;
  height: 1.6rem;
}
.result__title {
  margin-bottom: 1rem;
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  color: var(--brand-text);
  line-height: 1.2;
}
@media (min-width: 600px) {
  .result__title {
    font-size: 3.2rem;
  }
}
@media (min-width: 768px) {
  .result__title {
    font-size: 3.6rem;
  }
}
.result__subtitle {
  font-size: 1.5rem;
  color: var(--brand-text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}
@media (min-width: 600px) {
  .result__subtitle {
    font-size: 1.6rem;
  }
}
.result__slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
}
.result__img {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  background: var(--brand-white);
}
.result__img img {
  display: block;
  width: 100%;
  height: auto;
}
.result__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  background: var(--brand-white);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.result__nav:hover {
  background: var(--brand-primary);
  transform: translateY(-50%) scale(1.1);
}
.result__nav:hover svg {
  color: white;
}
.result__nav svg {
  width: 2rem;
  height: 2rem;
  color: var(--brand-text);
  transition: color 0.3s ease;
}
.result__nav--prev {
  left: -1.5rem;
}
@media (min-width: 600px) {
  .result__nav--prev {
    left: -2.2rem;
  }
}
.result__nav--next {
  right: -1.5rem;
}
@media (min-width: 600px) {
  .result__nav--next {
    right: -2.2rem;
  }
}
.result__dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 600px) {
  .result__dots {
    margin-top: 2.5rem;
  }
}
.result__dot {
  width: 1rem;
  height: 1rem;
  background: rgba(0, 0, 0, 0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.result__dot:hover {
  background: rgba(220, 183, 97, 0.5);
}
.result__dot--active {
  background: var(--brand-primary);
  transform: scale(1.2);
}
.result__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  width: 100%;
  max-width: 600px;
}
@media (min-width: 600px) {
  .result__stats {
    gap: 2rem;
    margin-top: 5rem;
  }
}
.result__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--brand-white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media (min-width: 600px) {
  .result__stat {
    padding: 2rem 1.5rem;
  }
}
.result__stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
@media (min-width: 600px) {
  .result__stat-number {
    font-size: 3rem;
  }
}
.result__stat-label {
  font-size: 1.2rem;
  color: var(--brand-text-muted);
}
@media (min-width: 600px) {
  .result__stat-label {
    font-size: 1.3rem;
  }
}
.result__cta {
  margin-top: 3rem;
}
@media (min-width: 600px) {
  .result__cta {
    margin-top: 4rem;
  }
}
.result__cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 2.5rem;
  background: var(--brand-primary);
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 183, 97, 0.3);
}
@media (min-width: 600px) {
  .result__cta a {
    padding: 1.6rem 3rem;
    font-size: 1.5rem;
  }
}
.result__cta a svg {
  width: 1.8rem;
  height: 1.8rem;
}
.result__cta a:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 183, 97, 0.4);
}

.review {
  display: flex;
  justify-content: center;
  background: var(--brand-bg-alt);
  position: relative;
  overflow: hidden;
}
.review__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--section-padding-y) var(--container-padding);
  width: 100%;
  max-width: var(--container-max-width);
}
@media (min-width: 768px) {
  .review__container {
    padding: var(--section-padding-y-lg) 2rem;
  }
}
.review__header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 600px) {
  .review__header {
    margin-bottom: 4rem;
  }
}
.review__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(220, 183, 97, 0.15);
  border: 1px solid rgba(220, 183, 97, 0.3);
  color: var(--brand-primary-hover);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}
.review__badge svg {
  width: 1.6rem;
  height: 1.6rem;
}
.review__title {
  margin-bottom: 1rem;
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  color: var(--brand-text);
  line-height: 1.2;
}
@media (min-width: 600px) {
  .review__title {
    font-size: 3.2rem;
  }
}
@media (min-width: 768px) {
  .review__title {
    font-size: 3.6rem;
  }
}
.review__subtitle {
  font-size: 1.5rem;
  color: var(--brand-text-muted);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 600px) {
  .review__subtitle {
    font-size: 1.6rem;
  }
}
.review__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 600px) {
  .review__stats {
    gap: 5rem;
    margin-bottom: 5rem;
  }
}
.review__stat {
  text-align: center;
}
.review__stat-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
@media (min-width: 600px) {
  .review__stat-number {
    font-size: 4.5rem;
  }
}
.review__stat-label {
  font-size: 1.3rem;
  color: var(--brand-text-muted);
}
@media (min-width: 600px) {
  .review__stat-label {
    font-size: 1.4rem;
  }
}
.review__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 500px) {
  .review__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .review__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
.review__item {
  background: var(--brand-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(181, 191, 165, 0.15);
  transition: all 0.3s ease;
  position: relative;
}
@media (min-width: 600px) {
  .review__item {
    padding: 3rem;
  }
}
.review__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(220, 183, 97, 0.3);
}
.review__item::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(220, 183, 97, 0.15);
  line-height: 1;
  pointer-events: none;
}
@media (min-width: 768px) {
  .review__item--featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
  }
}
.review__item-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.review__avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.review__avatar--gold {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-hover));
}
.review__avatar--sage {
  background: linear-gradient(135deg, #8fa88f, #a8c0a8);
}
.review__avatar--peach {
  background: linear-gradient(135deg, #d8a088, #e8c0a8);
}
.review__avatar--olive {
  background: linear-gradient(135deg, #8f8c75, #a8a590);
}
.review__avatar--green {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
}
.review__avatar--purple {
  background: linear-gradient(135deg, #9c27b0, #ba68c8);
}
.review__avatar--blue {
  background: linear-gradient(135deg, #2196f3, #64b5f6);
}
.review__avatar--dark {
  background: linear-gradient(135deg, #333, #555);
}
.review__info {
  flex: 1;
}
.review__name {
  font-weight: 700;
  margin: 0 0 0.3rem 0;
  font-size: 1.6rem;
  color: var(--brand-text);
}
.review__treatment {
  font-size: 1.2rem;
  color: var(--brand-text-muted);
  margin: 0;
}
.review__stars {
  color: var(--brand-primary);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  letter-spacing: 3px;
}
.review__text {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 0;
  color: var(--brand-text-muted);
  position: relative;
  z-index: 1;
}
@media (min-width: 600px) {
  .review__text {
    font-size: 1.5rem;
  }
}
.review__highlight {
  display: inline-block;
  background: rgba(220, 183, 97, 0.15);
  color: var(--brand-text);
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-top: 1rem;
  font-size: 1.3rem;
}
.review__cta {
  margin-top: 4rem;
  text-align: center;
}
@media (min-width: 600px) {
  .review__cta {
    margin-top: 5rem;
  }
}
.review__cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.6rem 3rem;
  background: var(--brand-primary);
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(220, 183, 97, 0.3);
}
@media (min-width: 600px) {
  .review__cta a {
    padding: 1.8rem 3.5rem;
    font-size: 1.6rem;
  }
}
.review__cta a svg {
  width: 2rem;
  height: 2rem;
  transition: transform 0.3s ease;
}
.review__cta a:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(220, 183, 97, 0.4);
}
.review__cta a:hover svg {
  transform: translateX(4px);
}
.review__img {
  display: none;
}

.device-section {
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.device-section:nth-of-type(odd) {
  background: var(--brand-bg);
}
.device-section:nth-of-type(even) {
  background: var(--brand-bg-alt);
}
.device-section__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--section-padding-y) var(--container-padding);
  width: 100%;
  max-width: var(--container-max-width);
}
@media (min-width: 768px) {
  .device-section__container {
    padding: var(--section-padding-y-lg) 2rem;
  }
}
.device-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 600px) {
  .device-section__header {
    margin-bottom: 4rem;
  }
}
.device-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(220, 183, 97, 0.15);
  border: 1px solid rgba(220, 183, 97, 0.3);
  color: var(--brand-primary-hover);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}
.device-section__badge svg {
  width: 1.6rem;
  height: 1.6rem;
}
.device-section__title {
  margin-bottom: 1rem;
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  color: var(--brand-text);
  line-height: 1.2;
}
@media (min-width: 600px) {
  .device-section__title {
    font-size: 3.2rem;
  }
}
@media (min-width: 768px) {
  .device-section__title {
    font-size: 3.6rem;
  }
}
.device-section__sub-title {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  color: var(--brand-text-muted);
  max-width: 600px;
  line-height: 1.6;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .device-section__sub-title {
    font-size: 1.7rem;
  }
}
.device-section__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .device-section__content {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
  }
}
@media (min-width: 768px) {
  .device-section--reverse .device-section__content {
    direction: rtl;
  }
  .device-section--reverse .device-section__content > * {
    direction: ltr;
  }
}
.device-section__text-content {
  order: 2;
}
@media (min-width: 768px) {
  .device-section__text-content {
    order: 1;
  }
}
.device-section__text {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.8;
  color: var(--brand-text-muted);
  margin-bottom: 2rem;
}
@media (min-width: 600px) {
  .device-section__text {
    text-align: left;
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .device-section__text {
    font-size: 1.7rem;
  }
}
.device-section__highlight {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(220, 183, 97, 0.1);
  border-left: 4px solid var(--brand-primary);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
@media (min-width: 600px) {
  .device-section__highlight {
    padding: 2rem 2.5rem;
  }
}
.device-section__highlight-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
}
@media (min-width: 600px) {
  .device-section__highlight-number {
    font-size: 3rem;
  }
}
.device-section__highlight-text {
  font-size: 1.4rem;
  color: var(--brand-text);
  font-weight: 500;
}
@media (min-width: 600px) {
  .device-section__highlight-text {
    font-size: 1.5rem;
  }
}
.device-section__media {
  position: relative;
  order: 1;
}
@media (min-width: 768px) {
  .device-section__media {
    order: 2;
  }
}
.device-section__img {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}
.device-section__img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.device-section__content-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  margin: 3rem 0 4rem;
}
@media (min-width: 768px) {
  .device-section__content-box {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin: 4rem 0 5rem;
  }
}
.device-section__content-box > .device-section__text {
  order: 2;
  text-align: center;
}
@media (min-width: 768px) {
  .device-section__content-box > .device-section__text {
    order: 1;
    text-align: left;
  }
}
.device-section__content-box > .device-section__img {
  order: 1;
}
@media (min-width: 768px) {
  .device-section__content-box > .device-section__img {
    order: 2;
  }
}
.device-section__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 500px) {
  .device-section__features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .device-section__features {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.device-section__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(181, 191, 165, 0.15);
  transition: all 0.3s ease;
}
@media (min-width: 600px) {
  .device-section__feature {
    padding: 3rem 2rem;
  }
}
.device-section__feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(220, 183, 97, 0.3);
}
.device-section__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  background: rgba(220, 183, 97, 0.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}
.device-section__feature-icon img {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: contain;
}
.device-section__feature-icon svg {
  width: 3rem;
  height: 3rem;
  color: var(--brand-primary);
}
.device-section__feature-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 0.8rem;
}
@media (min-width: 600px) {
  .device-section__feature-title {
    font-size: 1.7rem;
  }
}
.device-section__feature-text {
  font-size: 1.4rem;
  color: var(--brand-text-muted);
  line-height: 1.6;
  max-width: 280px;
}
.device-section__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 500px) {
  .device-section__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .device-section__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.device-section__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(181, 191, 165, 0.15);
  transition: all 0.3s ease;
}
@media (min-width: 600px) {
  .device-section__item {
    padding: 3rem 2rem;
  }
}
.device-section__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(220, 183, 97, 0.3);
}
.device-section__item__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  background: rgba(220, 183, 97, 0.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  padding: 1.2rem;
  object-fit: contain;
}
.device-section__item__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 0.8rem;
}
@media (min-width: 600px) {
  .device-section__item__title {
    font-size: 1.7rem;
  }
}
.device-section__item__text {
  font-size: 1.4rem;
  color: var(--brand-text-muted);
  line-height: 1.6;
  max-width: 280px;
}
.device-section__cta {
  margin-top: 4rem;
}
@media (min-width: 600px) {
  .device-section__cta {
    margin-top: 5rem;
  }
}
.device-section__call-to-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.6rem 3rem;
  background: var(--brand-primary);
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(220, 183, 97, 0.3);
  margin-top: 4rem;
  text-align: center;
}
@media (min-width: 600px) {
  .device-section__call-to-action {
    padding: 1.8rem 3.5rem;
    font-size: 1.6rem;
    margin-top: 5rem;
  }
}
.device-section__call-to-action svg {
  width: 2rem;
  height: 2rem;
  transition: transform 0.3s ease;
}
.device-section__call-to-action:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(220, 183, 97, 0.4);
}
.device-section__call-to-action:hover svg {
  transform: translateX(4px);
}

.contact {
  background: var(--brand-bg);
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.contact__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--section-padding-y) var(--container-padding);
  width: 100%;
  max-width: var(--container-max-width);
}
@media (min-width: 768px) {
  .contact__container {
    padding: var(--section-padding-y-lg) 2rem;
  }
}
.contact__header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 600px) {
  .contact__header {
    margin-bottom: 4rem;
  }
}
.contact__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(220, 183, 97, 0.15);
  border: 1px solid rgba(220, 183, 97, 0.3);
  color: var(--brand-primary-hover);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}
.contact__badge svg {
  width: 1.6rem;
  height: 1.6rem;
}
.contact__title {
  margin-bottom: 1rem;
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  color: var(--brand-text);
  line-height: 1.2;
}
@media (min-width: 600px) {
  .contact__title {
    font-size: 3.2rem;
  }
}
@media (min-width: 768px) {
  .contact__title {
    font-size: 3.6rem;
  }
}
.contact__sub-title {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  color: var(--brand-text-muted);
  max-width: 550px;
  line-height: 1.6;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .contact__sub-title {
    font-size: 1.6rem;
  }
}
.contact__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  width: 100%;
}
@media (min-width: 768px) {
  .contact__content {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
  }
}
.contact__sidebar {
  order: 2;
}
@media (min-width: 768px) {
  .contact__sidebar {
    order: 1;
  }
}
.contact__info-card {
  background: var(--brand-bg-alt);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 600px) {
  .contact__info-card {
    padding: 3rem;
  }
}
.contact__info-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 2rem;
}
@media (min-width: 600px) {
  .contact__info-title {
    font-size: 2rem;
  }
}
.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}
.contact__info-item:last-child {
  margin-bottom: 0;
}
.contact__info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  background: rgba(220, 183, 97, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}
.contact__info-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--brand-primary);
}
.contact__info-content {
  flex: 1;
}
.contact__info-content h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brand-text);
  margin-bottom: 0.3rem;
}
.contact__info-content p, .contact__info-content a {
  font-size: 1.4rem;
  color: var(--brand-text-muted);
  line-height: 1.5;
  text-decoration: none;
  display: block;
}
.contact__info-content a:hover {
  color: var(--brand-primary);
}
.contact__quick-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__quick-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.4rem 2rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}
.contact__quick-btn svg {
  width: 2.2rem;
  height: 2.2rem;
  color: white;
  flex-shrink: 0;
}
.contact__quick-btn--whatsapp {
  background: #25D366;
}
.contact__quick-btn--whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.contact__quick-btn--phone {
  background: var(--brand-primary);
}
.contact__quick-btn--phone:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 183, 97, 0.4);
}
.contact__form-wrapper {
  order: 1;
}
@media (min-width: 768px) {
  .contact__form-wrapper {
    order: 2;
  }
}
.contact__form {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--brand-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(181, 191, 165, 0.15);
}
@media (min-width: 600px) {
  .contact__form {
    padding: 3rem;
  }
}
.contact__form-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-text);
  margin-bottom: 0.5rem;
}
@media (min-width: 600px) {
  .contact__form-title {
    font-size: 2rem;
  }
}
.contact__form-subtitle {
  font-size: 1.4rem;
  color: var(--brand-text-muted);
  margin-bottom: 2rem;
}
.contact__form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 500px) {
  .contact__form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.contact__form-group {
  margin-bottom: 1.5rem;
}
.contact__form-group label {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brand-text);
}
.contact__form-group input, .contact__form-group select, .contact__form-group textarea {
  width: 100%;
  padding: 1.2rem 1.4rem;
  border: 2px solid rgba(181, 191, 165, 0.3);
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  background: var(--brand-white);
  transition: all 0.2s ease;
}
.contact__form-group input::placeholder, .contact__form-group select::placeholder, .contact__form-group textarea::placeholder {
  color: #aaa;
}
.contact__form-group input:focus, .contact__form-group select:focus, .contact__form-group textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(220, 183, 97, 0.1);
}
.contact__form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1.6rem;
  padding-right: 4rem;
}
.contact__form-group textarea {
  min-height: 12rem;
  resize: vertical;
}
.contact__form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.contact__form-checkbox input[type=checkbox] {
  width: 2rem;
  height: 2rem;
  margin-top: 0.2rem;
  accent-color: var(--brand-primary);
  cursor: pointer;
  flex-shrink: 0;
}
.contact__form-checkbox label {
  font-size: 1.3rem;
  color: var(--brand-text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.contact__form-checkbox label a {
  color: var(--brand-primary);
  text-decoration: underline;
}
.contact__form-checkbox label a:hover {
  color: var(--brand-primary-hover);
}
.contact__form-submit {
  width: 100%;
  padding: 1.6rem 2rem;
  background: var(--brand-primary);
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.contact__form-submit svg {
  width: 2rem;
  height: 2rem;
  transition: transform 0.3s ease;
}
.contact__form-submit:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 183, 97, 0.4);
}
.contact__form-submit:hover svg {
  transform: translateX(4px);
}
.contact__map-section {
  margin-top: 5rem;
  width: 100%;
}
@media (min-width: 600px) {
  .contact__map-section {
    margin-top: 6rem;
  }
}
.contact__map-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-text);
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 600px) {
  .contact__map-title {
    font-size: 2.4rem;
  }
}
.contact__map {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.contact__map__frame {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}
@media (min-width: 600px) {
  .contact__map__frame {
    height: 380px;
  }
}
@media (min-width: 768px) {
  .contact__map__frame {
    height: 420px;
  }
}
.contact__map__decoration {
  display: none;
}
.contact__sub-sub-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-text);
  text-align: center;
  margin: 4rem 0 2rem;
}
@media (min-width: 600px) {
  .contact__sub-sub-title {
    font-size: 2.4rem;
  }
}
.contact__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
}
@media (min-width: 500px) {
  .contact__info {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}
.contact__info__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.4rem 2rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
  min-width: 220px;
}
.contact__info__button:hover {
  transform: translateY(-2px);
}
.contact__info__button:nth-of-type(1) {
  background: #25D366;
}
.contact__info__button:nth-of-type(1):hover {
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.contact__info__button:nth-of-type(2) {
  background: var(--brand-primary);
}
.contact__info__button:nth-of-type(2):hover {
  box-shadow: 0 4px 15px rgba(220, 183, 97, 0.4);
}
.contact__info__img {
  width: 2.4rem;
  height: 2.4rem;
  filter: brightness(0) invert(1);
}
.contact__info__text {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.footer {
  background: var(--brand-text);
  color: var(--brand-white);
}
.footer__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 5rem var(--container-padding) 3rem;
}
@media (min-width: 768px) {
  .footer__container {
    padding: 6rem 2rem 3rem;
  }
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 600px) {
  .footer__top {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
  }
}
@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}
@media (min-width: 600px) {
  .footer__brand {
    grid-column: span 1;
  }
}
.footer__logo {
  height: 5rem;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}
@media (min-width: 600px) {
  .footer__logo {
    height: 5.5rem;
  }
}
.footer__tagline {
  font-size: 1.4rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 280px;
  margin-bottom: 2rem;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.footer__social a:hover {
  background: var(--brand-primary);
  transform: translateY(-3px);
}
.footer__social a svg {
  width: 2rem;
  height: 2rem;
  color: var(--brand-white);
}
.footer__column {
  display: flex;
  flex-direction: column;
}
.footer__heading {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--brand-primary);
  margin-bottom: 1.5rem;
}
@media (min-width: 600px) {
  .footer__heading {
    margin-bottom: 2rem;
  }
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 0.3rem 0;
}
.footer__link:hover {
  color: var(--brand-white);
  transform: translateX(4px);
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.footer__contact-item:last-child {
  margin-bottom: 0;
}
.footer__contact-item svg {
  width: 1.8rem;
  height: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--brand-primary);
}
.footer__contact-item a, .footer__contact-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.footer__contact-item a:hover {
  color: var(--brand-white);
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2.5rem;
}
@media (min-width: 600px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__copyright {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}
@media (min-width: 600px) {
  .footer__copyright {
    text-align: left;
  }
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}
@media (min-width: 600px) {
  .footer__legal {
    justify-content: flex-end;
  }
}
.footer__legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.3rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__legal a:hover {
  color: var(--brand-primary);
}
.footer__headline {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}
.footer__text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
@media (min-width: 600px) {
  .footer__text {
    text-align: left;
  }
}

.datenschutz {
  max-width: 968px;
  margin: 10rem auto 10rem auto;
  font-size: 1.2rem;
  padding: 1rem;
}
.datenschutz h1 {
  font-size: 1.6rem;
  text-align: center;
}
.datenschutz h2, .datenschutz h3, .datenschutz h4, .datenschutz h5, .datenschutz h6 {
  font-size: 1.4rem;
}

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