/* ================================
   HOPSACÍ SVĚT - Premium Kids Landing
   Pastel Colors + 3D Elements
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Nunito:wght@400;500;600;700&display=swap');

:root {
  /* Soft Sage Palette */
  --mint: #DDE7E0;
  --mint-light: #F5F8F6;
  --mint-dark: #B8C8BE;
  --pink: #A8BBAE;
  --pink-light: #D6E0D7;
  --yellow: #EEF2ED;
  --yellow-warm: #7F9787;
  --blue: #C7D4CC;
  --blue-light: #EFF3F0;
  --lavender: #D3DED6;
  --peach: #91A88E;

  /* Dark Section */
  --dark: #1F2A22;
  --dark-lighter: #2B3A30;

  /* Text Colors */
  --text-dark: #1F2A22;
  --text-muted: #5E6B61;
  --text-light: #FFFFFF;

  /* Fonts */
  --font-heading: 'Baloo 2', cursive;
  --font-body: 'Nunito', sans-serif;

  /* Spacing */
  --container: 1200px;
  --hero-max: 1320px;
  --section-padding: 100px;
}

@media (min-width: 1440px) {
  :root {
    --container: 1200px;
    --hero-max: 1320px;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--mint-light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
}

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

h3 {
  font-size: 1.5rem;
}

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

/* ================================
   Animations
   ================================ */

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(-2deg);
  }
}

@keyframes floatReverse {

  0%,
  100% {
    transform: translateY(-10px) rotate(-3deg);
  }

  50% {
    transform: translateY(10px) rotate(3deg);
  }
}

@keyframes floatSmall {

  0%,
  100% {
    transform: translate(0, 0) rotate(-2deg);
  }

  50% {
    transform: translate(-4px, -3px) rotate(2deg);
  }
}

@keyframes driftA {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(1.5deg);
  }
}

@keyframes driftB {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(8px, -6px) rotate(-1.2deg);
  }
}

@keyframes driftC {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-6px, 6px) rotate(1deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(127, 151, 135, 0.35);
  }

  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 6px rgba(127, 151, 135, 0.05);
  }
}

/* ================================
   Navigation
   ================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: padding 0.2s ease;
}

.navbar.scrolled {
  background: transparent;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: none;
  max-width: var(--container);
  transition:
    max-width 0.25s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.navbar.scrolled .container {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 14px 34px rgba(31, 42, 34, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

@media (min-width: 1024px) {
  .navbar:not(.scrolled) .container {
    max-width: var(--hero-max);
  }

  .navbar.scrolled .container {
    max-width: var(--container);
  }
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover {
  color: var(--dark);
  border-color: #f76560;
}

@media (max-width: 640px) {
  .navbar {
    padding: 10px 0;
  }

  .navbar .container {
    padding: 8px 16px;
  }

  .logo {
    font-size: 1.2rem;
    gap: 8px;
  }

  .logo-img {
    width: 36px;
    height: 36px;
  }

  .nav-actions .btn-front {
    padding: 9px 16px;
    font-size: 0.9rem;
  }
}


@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

/* Buttons */
.btn {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  outline-offset: 4px;
  transition: filter 250ms;
  user-select: none;
  touch-action: manipulation;
  display: inline-block;
  text-decoration: none;
  --btn-front: linear-gradient(135deg, var(--peach) 0%, var(--pink) 100%);
  --btn-edge: linear-gradient(to left, #4C5C52 0%, #7E9486 8%, #7E9486 92%, #4C5C52 100%);
  --btn-text: var(--dark);
  --btn-shadow: rgba(31, 42, 34, 0.25);
  --btn-radius: 14px;
}

.btn-primary {
  --btn-front: linear-gradient(135deg, #ff8a7f 0%, #f76560 100%);
  --btn-edge: linear-gradient(to left, #9a3a32 0%, #c84d43 8%, #c84d43 92%, #9a3a32 100%);
  --btn-text: var(--text-light);
  --btn-shadow: rgba(154, 58, 50, 0.28);
}

.btn-secondary {
  --btn-front: linear-gradient(135deg, var(--text-light) 0%, var(--blue-light) 100%);
  --btn-edge: linear-gradient(to left, #8F9F95 0%, #B7C3BC 8%, #B7C3BC 92%, #8F9F95 100%);
  --btn-text: var(--dark);
}

.btn-outline {
  --btn-front: linear-gradient(135deg, rgba(245, 248, 246, 0.6) 0%, rgba(221, 231, 224, 0.35) 100%);
  --btn-edge: linear-gradient(to left, #4C5C52 0%, #718579 8%, #718579 92%, #4C5C52 100%);
  --btn-text: var(--dark);
}

.btn-shadow,
.btn-edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--btn-radius);
  pointer-events: none;
}

.btn-shadow {
  background: var(--btn-shadow);
  transform: translateY(2px);
  transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
  will-change: transform;
}

.btn-edge {
  background: var(--btn-edge);
}

.btn-front {
  position: relative;
  display: block;
  padding: 12px 28px;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--btn-text);
  background: var(--btn-front);
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
  will-change: transform;
  white-space: nowrap;
  text-align: center;
}

.btn-lg {
  --btn-radius: 16px;
}

.btn-lg .btn-front {
  padding: 14px 34px;
  font-size: 1.05rem;
}

.btn:hover {
  filter: brightness(1.05);
}

.btn:hover .btn-front {
  transform: translateY(-6px);
  transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.btn:active .btn-front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.btn:hover .btn-shadow {
  transform: translateY(4px);
  transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.btn:active .btn-shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

.btn:focus:not(:focus-visible) {
  outline: none;
}

/* ================================
   Hero Section
   ================================ */

.hero {
  position: relative;
  min-height: 92vh;
  background: linear-gradient(180deg, var(--mint) 0%, var(--mint-light) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 120px;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(31, 42, 34, 0.08);
  backdrop-filter: blur(8px);
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 24px;
  animation: slideUp 0.6s ease forwards;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #A8C8B1;
  animation: badgePulse 3.2s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-media > img:not(.hero-media-cube) {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  animation: slideUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-media-cube {
  position: absolute;
  width: 80px;
  left: -6px;
  bottom: -10px;
  pointer-events: none;
  z-index: 2;
  animation: slideUp 0.7s ease 0.3s forwards;
  opacity: 0;
}

.hero-media-cube img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(31, 42, 34, 0.18));
  animation: floatSmall 5.5s ease-in-out infinite 0.6s;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.1;
  animation: slideUp 0.6s ease 0.1s forwards;
  opacity: 0;
  color: var(--text-dark);
}

.hero h1 em {
  font-style: italic;
  color: var(--dark);
}

.hero-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  animation: slideUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideUp 0.6s ease 0.3s forwards;
  opacity: 0;
  position: relative;
}


@media (min-width: 1024px) {
  .hero {
    text-align: left;
    padding: 140px 24px 140px;
  }

  .hero-inner {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 80px;
    max-width: var(--hero-max);
  }

  .hero-content {
    margin: 0;
    text-align: left;
  }

  .hero-text {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero-cta-arrow {
    width: 96px;
    right: -44px;
    bottom: -32px;
  }

  .hero-media {
    justify-content: flex-end;
  }

  .hero-media > img:not(.hero-media-cube) {
    width: 100%;
  }

  .hero-media-cube {
    width: 100px;
    left: -10px;
    bottom: -14px;
  }
}

/* Floating Background Elements */
.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.floating-element {
  position: absolute;
  opacity: 0.3;
  filter: blur(5px);
}

.floating-element img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-element.el-1 {
  top: 8%;
  left: 6%;
  width: clamp(140px, 13vw, 220px);
  animation: driftA 18s ease-in-out infinite;
}

.floating-element.el-2 {
  top: 14%;
  right: 6%;
  width: clamp(170px, 15vw, 260px);
  opacity: 0.32;
  filter: blur(3px);
  animation: driftB 22s ease-in-out infinite -4s;
}

.floating-element.el-3 {
  bottom: 22%;
  left: 18%;
  width: clamp(130px, 12vw, 200px);
  opacity: 0.22;
  filter: blur(7px);
  animation: driftC 20s ease-in-out infinite -8s;
}

/* ================================
   Info Bar - Floating Stats Card
   ================================ */

.info-bar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  color: var(--text-dark);
  padding: 40px 0;
  position: relative;
  z-index: 20;
  border-radius: 24px;
  max-width: 1100px;
  margin: 0 auto 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.info-bar .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: center;
}

@media (min-width: 768px) {
  .info-bar .container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-item strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
}

.info-item span {
  font-size: 14px;
  color: var(--text-muted);
}

/* ================================
   About Section - Consistent Background
   ================================ */

.about {
  padding: var(--section-padding) 0;
  background: var(--mint-light);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .about .container {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 24px;
  box-shadow: none;
}

.about-image-decoration {
  position: absolute;
  width: 100px;
  top: -30px;
  right: -30px;
  animation: none;
  z-index: 10;
}


.about-content h2 {
  color: var(--text-dark);
  margin-bottom: 24px;
}

.about-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.about-features .icon {
  width: 32px;
  height: 32px;
  background: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-features .icon svg {
  width: 16px;
  height: 16px;
  color: var(--dark);
}

/* About background decoration */
.about-bg-decoration {
  position: absolute;
  width: clamp(200px, 18vw, 320px);
  opacity: 0.18;
  filter: blur(5px);
}

.about-bg-decoration.dec-1 {
  bottom: 10%;
  right: 5%;
  animation: floatSlow 10s ease-in-out infinite;
}

/* ================================
   Gallery Section - Consistent Background
   ================================ */

.gallery {
  padding: var(--section-padding) 0;
  background: var(--mint-light);
  position: relative;
  overflow: hidden;
}

.gallery .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery .section-header h2 {
  margin-bottom: 12px;
  color: var(--text-dark);
}

.gallery .section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
  }

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

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

  .gallery-item:nth-child(3) {
    grid-column: span 4;
  }

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

  .gallery-item:nth-child(5) {
    grid-column: span 4;
  }
}

.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: var(--text-light);
  border: 1px solid rgba(31, 42, 34, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item::before {
  content: "Zobrazit";
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 6px 10px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(31, 42, 34, 0.12);
  border-radius: 999px;
  color: var(--dark);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 42, 34, 0) 40%, rgba(31, 42, 34, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 101, 96, 0.35);
  box-shadow: 0 18px 36px rgba(31, 42, 34, 0.12);
}

.gallery-item:hover::before,
.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:focus-visible {
  outline: 3px solid rgba(247, 101, 96, 0.5);
  outline-offset: 4px;
}

/* Gallery decorations */
.gallery-decoration {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  opacity: 0.38;
  filter: blur(5px);
}

.gallery-decoration.dec-1 {
  top: 50px;
  left: 30px;
  width: clamp(90px, 9vw, 150px);
  filter: blur(4px);
  animation: float 6s ease-in-out infinite;
}

.gallery-decoration.dec-2 {
  bottom: 80px;
  right: 40px;
  width: clamp(110px, 11vw, 180px);
  filter: blur(6px);
  animation: floatSlow 7s ease-in-out infinite;
}

/* Lightbox */
body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 18, 0.7);
  backdrop-filter: blur(6px) saturate(120%);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  width: min(1100px, 92vw);
  max-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  max-height: 100%;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 24px;
  background: var(--text-light);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.lightbox-close {
  top: -52px;
  right: 0;
}

.lightbox-prev {
  left: -64px;
  top: 50%;
  margin-top: -22px;
}

.lightbox-next {
  right: -64px;
  top: 50%;
  margin-top: -22px;
}

@media (max-width: 768px) {
  .lightbox-close {
    top: -46px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

/* ================================
   Pricing Section
   ================================ */

.pricing {
  padding: var(--section-padding) 0;
  background: var(--mint-light);
  position: relative;
  overflow: hidden;
}

.pricing .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing .section-header h2 {
  margin-bottom: 12px;
}

.pricing .section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.pricing-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  justify-items: center;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

.pricing-card {
  max-width: 520px;
  width: 100%;
  margin: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-amount {
  margin-bottom: 32px;
}

.pricing-amount .price {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.pricing-amount .period {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 40px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 500;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .icon {
  width: 28px;
  height: 28px;
  background: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-features .icon svg {
  width: 14px;
  height: 14px;
  color: var(--dark);
}

.pricing-card .btn {
  width: 100%;
}

.pricing-card .btn .btn-front {
  width: 100%;
}

.pricing-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

/* Pricing decorations */
.pricing-decoration {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: blur(5px);
  opacity: 0.42;
}

.pricing-decoration.dec-1 {
  top: 10%;
  left: 5%;
  width: clamp(120px, 12vw, 200px);
  animation: float 7s ease-in-out infinite;
}

.pricing-decoration.dec-2 {
  bottom: 15%;
  right: 8%;
  width: clamp(110px, 11vw, 180px);
  filter: blur(4px);
  mix-blend-mode: multiply;
  animation: floatSlow 8s ease-in-out infinite;
}

/* ================================
   Testimonials Section
   ================================ */

.testimonials {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--mint-light) 0%, var(--mint) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials .section-header h2 {
  margin-bottom: 12px;
}

.testimonials .section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  color: var(--yellow-warm);
  margin-bottom: 16px;
  font-size: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
}

.testimonial-info h4 {
  font-size: 15px;
  font-weight: 700;
}

.testimonial-info p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ================================
   Contact Section
   ================================ */

.contact {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--mint) 0%, var(--mint-light) 100%);
  position: relative;
  overflow: hidden;
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .contact .container {
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
  }
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info>p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item-icon {
  width: 56px;
  height: 56px;
  background: var(--mint);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon svg {
  width: 24px;
  height: 24px;
  color: var(--dark);
}

.contact-item-text h4 {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item-text p {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
}

/* Contact decorations */
.contact-decoration {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.28;
  filter: blur(6px);
}

.contact-decoration.dec-1 {
  top: 12%;
  left: 6%;
  width: clamp(120px, 12vw, 200px);
  filter: blur(4px);
  animation: driftA 22s ease-in-out infinite;
}

.contact-decoration.dec-2 {
  bottom: 10%;
  right: 8%;
  width: clamp(150px, 14vw, 240px);
  filter: blur(7px);
  animation: driftB 24s ease-in-out infinite -6s;
}

/* Form */
.contact-form {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-header {
  margin-bottom: 32px;
}

.form-header h3 {
  margin-bottom: 8px;
}

.form-header p {
  color: var(--text-muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

.form-group .required {
  color: var(--pink);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--text-light);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--mint-dark);
  box-shadow: 0 0 0 4px rgba(184, 200, 190, 0.35);
}

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

.form-submit {
  padding-top: 10px;
}

.form-submit.full-width {
  grid-column: 1 / -1;
}

.form-submit .btn {
  width: 100%;
  display: block;
}

.form-submit .btn .btn-front {
  width: 100%;
}

.form-privacy {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* ================================
   FAQ Section
   ================================ */

.faq {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--mint-light) 0%, var(--mint) 100%);
  position: relative;
  overflow: hidden;
}

.faq .container {
  position: relative;
  z-index: 2;
}

.faq .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq .section-header h2 {
  margin-bottom: 12px;
}

.faq .section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 42, 34, 0.08);
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: 0 16px 34px rgba(31, 42, 34, 0.08);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.faq-answer {
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-decoration {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.3;
  filter: blur(6px);
}

.faq-decoration.dec-1 {
  top: 12%;
  left: 4%;
  width: clamp(120px, 12vw, 220px);
  animation: driftA 20s ease-in-out infinite;
}

.faq-decoration.dec-2 {
  bottom: 12%;
  right: 6%;
  width: clamp(140px, 14vw, 240px);
  filter: blur(4px);
  animation: driftB 22s ease-in-out infinite -6s;
}

/* ================================
   Footer
   ================================ */

.footer {
  position: relative;
  background: linear-gradient(180deg, #1F2A22 0%, #141B17 100%);
  color: var(--text-light);
  padding: 80px 0 40px;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 280px at 12% 10%, rgba(247, 101, 96, 0.08), transparent 60%),
    radial-gradient(500px 260px at 88% 20%, rgba(255, 255, 255, 0.05), transparent 70%);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 48px 40px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

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

.footer-brand .logo {
  margin-bottom: 18px;
  color: var(--text-light);
  font-size: 1.6rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.7;
  max-width: 420px;
}

.footer-section h4 {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav .footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-nav .footer-links a {
  display: inline-flex;
  width: 100%;
  margin-bottom: 0;
}

.footer-section a {
  display: inline-flex;
  position: relative;
  width: fit-content;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 0;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.footer-section a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #f76560;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.footer-section a:hover {
  color: var(--text-light);
}

.footer-section a:hover::after {
  transform: scaleX(1);
}

.footer-nav .footer-links a::after {
  width: 100%;
}

@media (max-width: 520px) {
  .footer-nav .footer-links {
    grid-template-columns: 1fr;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

@media (max-width: 640px) {
  .footer .container {
    padding: 32px 24px;
  }
}

/* ================================
   Scroll Top Button
   ================================ */

.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--dark);
  color: var(--text-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow: visible;
  --scroll-progress: 0deg;
}

.scroll-top::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(
    #f76560 0deg var(--scroll-progress, 0deg),
    rgba(31, 42, 34, 0.2) var(--scroll-progress, 0deg) 360deg
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
  pointer-events: none;
}

.scroll-top svg {
  position: relative;
  z-index: 1;
}

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

.scroll-top:hover {
  transform: translateY(-3px);
  background: var(--mint-dark);
  color: var(--dark);
}

@media (max-width: 640px) {
  .scroll-top {
    width: 42px;
    height: 42px;
    bottom: 24px;
  }

  .scroll-top::before {
    inset: -5px;
  }

  .scroll-top svg {
    width: 16px;
    height: 16px;
  }
}

@media (min-width: 768px) {
  .scroll-top {
    bottom: 30px;
    right: 30px;
  }
}

/* ================================
   Reduced Motion
   ================================ */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
