:root {
  --primary: #E85D75;
  --secondary: #FFB347;
  --accent: #4ECDC4;
  --bg: #FFFBF5;
  --bg-alt: #FFF0E5;
  --text: #2D2926;
  --text-muted: #6B5B54;
  --border: #E8DDD5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  line-height: 1.2;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

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

/* Header - Transparent variant (DICE 11 = 5) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.header--scrolled {
  background-color: var(--bg);
  box-shadow: 0 2px 20px rgba(45, 41, 38, 0.1);
  padding: 0.75rem 0;
}

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

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

.header__logo img {
  height: 48px;
  width: auto;
}

.header__logo-text {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.header--scrolled .header__logo-text {
  color: var(--primary);
}

.header__nav {
  display: none;
}

@media (min-width: 768px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.header__nav-link {
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s ease;
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.header__nav-link:hover::after,
.header__nav-link:focus::after {
  width: 100%;
}

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

.header__nav-link:focus {
  outline: none;
  color: var(--primary);
}

.header__cta {
  display: none;
}

@media (min-width: 768px) {
  .header__cta {
    display: inline-flex;
  }
}

/* Burger menu button */
.burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

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

.burger:focus {
  outline: none;
  color: var(--primary);
}

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

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg);
  z-index: 90;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu__link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu__link:hover,
.mobile-menu__link:focus {
  color: var(--primary);
  outline: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn--primary {
  background-color: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 93, 117, 0.35);
  color: #fff;
}

.btn--primary:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 93, 117, 0.3);
}

.btn--secondary {
  background-color: var(--secondary);
  color: var(--text);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 179, 71, 0.35);
}

.btn--secondary:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 179, 71, 0.3);
}

.btn--accent {
  background-color: var(--accent);
  color: var(--text);
}

.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.35);
}

.btn--accent:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.3);
}

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

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

.btn--outline:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 93, 117, 0.3);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Hero - Card variant (DICE 1 = 5) */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(232, 93, 117, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--secondary);
  color: var(--text);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.hero__title span {
  color: var(--primary);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(45, 41, 38, 0.15);
}

.hero__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 41, 38, 0.3) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero__card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

/* Section common styles */
.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section--alt {
  background-color: var(--bg-alt);
}

.section--primary {
  background-color: var(--primary);
  color: #fff;
}

.section--primary .section__title,
.section--primary .section__subtitle {
  color: #fff;
}

.section--primary .section__subtitle {
  opacity: 0.9;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Products - List with prices (DICE 3 = 5) */
.products-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45, 41, 38, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(45, 41, 38, 0.15);
}

.product-card__image {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.08);
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.75rem;
  background-color: var(--accent);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
}

.product-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__name {
  font-family: 'Baloo 2', cursive;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.product-card__description {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 1rem;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-card__price {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  color: var(--primary);
}

.product-card__price span {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-family: 'Nunito', sans-serif;
}

/* Gallery - Masonry-like grid */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

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

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 2;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:focus img {
  transform: scale(1.05);
}

.gallery-item:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 93, 117, 0.3);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 41, 38, 0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-item__overlay,
.gallery-item:focus .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__caption {
  color: #fff;
  font-weight: 600;
}

/* Team */
.team-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  text-align: center;
}

.team-card__image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--secondary);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.team-card:hover .team-card__image {
  border-color: var(--primary);
  transform: scale(1.05);
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-family: 'Baloo 2', cursive;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-card__bio {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Reviews - Masonry (DICE 6 = 3) */
.reviews-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(45, 41, 38, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 41, 38, 0.12);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__info {
  flex-grow: 1;
}

.review-card__name {
  font-weight: 700;
  color: var(--text);
}

.review-card__location {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.review-card__rating {
  display: flex;
  gap: 0.25rem;
  color: var(--secondary);
  font-size: 0.875rem;
}

.review-card__text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

.review-card__text::before {
  content: '"';
  font-family: 'Baloo 2', cursive;
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.3;
  display: block;
  line-height: 1;
  margin-bottom: -0.5rem;
}

/* Pricing - Slider (DICE 9 = 5) */
.pricing-slider {
  position: relative;
  overflow: hidden;
}

.pricing-slider__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}

.pricing-card {
  flex: 0 0 calc(100% - 2rem);
  background-color: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(45, 41, 38, 0.1);
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .pricing-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .pricing-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

.pricing-card--featured {
  border: 3px solid var(--primary);
  position: relative;
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-card__image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 3/2;
}

.pricing-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-card__name {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.pricing-card__description {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pricing-card__price {
  font-family: 'Baloo 2', cursive;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.pricing-card__price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: 'Nunito', sans-serif;
}

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

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text);
}

.pricing-card__features li i {
  color: var(--accent);
}

.pricing-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.pricing-nav__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.pricing-nav__btn:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: #fff;
}

.pricing-nav__btn:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232, 93, 117, 0.3);
}

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

.pricing-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.pricing-dot--active {
  background-color: var(--primary);
  transform: scale(1.2);
}

.pricing-dot:hover {
  background-color: var(--primary);
}

.pricing-dot:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 93, 117, 0.3);
}

/* CTA Section */
.cta {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #d64b63 100%);
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/cta-happy-customer-moment.webp') center/cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 1rem;
}

.cta__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* Form - Inline horizontal (DICE 13 = 3) */
.form-inline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .form-inline {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.form-inline__field {
  flex: 1;
  min-width: 150px;
}

.form-inline__input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-inline__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.2);
}

.form-inline__input::placeholder {
  color: var(--text-muted);
}

.form-inline__btn {
  flex-shrink: 0;
}

.form-inline__consent {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.form-inline__consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.form-inline__consent a {
  color: #fff;
  text-decoration: underline;
}

/* Standard form (for contact sections) */
.form {
  max-width: 500px;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  background-color: #fff;
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232, 93, 117, 0.1);
}

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

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form__checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.form__checkbox a {
  color: var(--primary);
  text-decoration: underline;
}

/* Footer - Two columns asymmetric (DICE 12 = 3) */
.footer {
  background-color: var(--text);
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer__inner {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
  }
}

.footer__brand {
  max-width: 350px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer__logo img {
  height: 40px;
}

.footer__logo-text {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  color: #fff;
}

.footer__description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer__contact-item i {
  color: var(--secondary);
  width: 20px;
}

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

.footer__nav-title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__nav-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer__nav-link:hover,
.footer__nav-link:focus {
  color: var(--secondary);
  outline: none;
}

.footer__bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__policies {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .footer__policies {
    justify-content: flex-end;
  }
}

.footer__policies a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer__policies a:hover,
.footer__policies a:focus {
  color: var(--secondary);
  outline: none;
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(232, 93, 117, 0.4);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
}

.scroll-top--visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px);
}

.scroll-top:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 93, 117, 0.3), 0 4px 15px rgba(232, 93, 117, 0.4);
}

/* Cookie popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text);
  color: #fff;
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(45, 41, 38, 0.2);
}

.cookie-popup__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .cookie-popup__inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

.cookie-popup__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-popup__text a {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-popup__btn {
  flex-shrink: 0;
}

/* Utility classes */
.hidden {
  display: none !important;
}

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-100 {
  animation-delay: 0.1s;
}

.animate-delay-200 {
  animation-delay: 0.2s;
}

.animate-delay-300 {
  animation-delay: 0.3s;
}

/* Policy pages styles */
.policy-page {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.policy-page__header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.policy-page__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text);
  margin-bottom: 0.5rem;
}

.policy-page__date {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.policy-page__content h2 {
  font-size: 1.5rem;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-page__content p {
  margin-bottom: 1rem;
  color: var(--text);
}

.policy-page__content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.policy-page__content li {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.policy-page__content a {
  color: var(--primary);
  text-decoration: underline;
}

/* Thanks page */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.thanks-page__inner {
  text-align: center;
  max-width: 500px;
}

.thanks-page__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #fff;
}

.thanks-page__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.thanks-page__subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.thanks-page__text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
