:root {
  --primaire: #DDF37C;
  --secondaire: #A6CB17;
  --dark: #0A1740;
  --action: #FF5722;
  --gris-1: #F8F9FC;
  --gris-2: #EDF0F7;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --black: #000000;
}

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

body {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

.landing-page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

.grid-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(10, 23, 64, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 23, 64, 0.3) 1px, transparent 1px);
  background-size: 50px 50px;
  perspective: 1000px;
  transform: rotateX(60deg) translateZ(-200px);
  opacity: 0.4;
  z-index: 0;
}

.curved-bands {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(10, 23, 64, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(10, 23, 64, 0.3) 0%, transparent 50%);
  z-index: 0;
}

.top-slogan {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(221, 243, 124, 0.5);
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}

.main-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  padding: 40px 60px;
  min-height: 70vh;
  align-items: center;
  padding-bottom: 150px;
}

.left-section {
  position: relative;
}

.review-card {
  background: var(--white);
  color: var(--text-dark);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  margin-bottom: 30px;
  position: relative;
  z-index: 20;
  max-width: 350px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.review-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
}

.review-stars {
  color: var(--action);
  font-size: 18px;
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
}

.floating-elements {
  position: relative;
  height: 300px;
}

.floating-emoji {
  position: absolute;
  top: 20px;
  right: -20px;
  font-size: 60px;
  filter: drop-shadow(0 0 10px rgba(255, 87, 34, 0.6));
  z-index: 15;
}

.floating-star {
  position: absolute;
  font-size: 40px;
  color: var(--action);
  filter: drop-shadow(0 0 8px rgba(255, 87, 34, 0.8));
}

.star-1 {
  top: 80px;
  right: 40px;
}

.star-2 {
  top: 150px;
  right: 10px;
}

.star-3 {
  top: 220px;
  right: 60px;
}

.floating-astronaut {
  position: absolute;
  top: 120px;
  right: -10px;
  font-size: 35px;
  opacity: 0.7;
  filter: blur(2px);
}

.floating-leaf {
  position: absolute;
  top: 250px;
  right: 30px;
  font-size: 30px;
  filter: drop-shadow(0 0 5px rgba(255, 87, 34, 0.5));
}

.smoke-effects {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  z-index: 5;
}

.smoke {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  filter: blur(30px);
}

.smoke-1 {
  bottom: 0;
  left: 0;
  animation: smokeFloat 4s ease-out infinite;
}

.smoke-2 {
  bottom: 30px;
  left: 50px;
  animation: smokeFloat 5s ease-out infinite 0.5s;
}

.smoke-3 {
  bottom: 60px;
  left: 100px;
  animation: smokeFloat 6s ease-out infinite 1s;
}

.center-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 10;
}

.cats-container {
  position: relative;
}

.cats-image {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(221, 243, 124, 0.1) 0%, rgba(166, 203, 23, 0.1) 100%);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(221, 243, 124, 0.2);
}

.cat {
  font-size: 120px;
  filter: drop-shadow(0 0 15px rgba(221, 243, 124, 0.4));
  animation: float 3s ease-in-out infinite;
}

.cat-1 {
  animation-delay: 0s;
  transform: rotate(-5deg);
}

.cat-2 {
  animation-delay: 0.3s;
}

.cat-3 {
  animation-delay: 0.6s;
  transform: rotate(5deg);
}

.cta-button {
  background: var(--primaire);
  color: var(--dark);
  border: none;
  padding: 32px 84px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(221, 243, 124, 0.3);
  position: relative;
  z-index: 20;
  text-decoration: none;
}

.cta-button:hover {
  background: var(--action);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 87, 34, 0.5);
}

.arrow {
  font-size: 28px;
  font-weight: 900;
}

.right-section {
  position: relative;
}

.floating-pouch {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 80px;
  filter: blur(3px) drop-shadow(0 0 10px rgba(166, 203, 23, 0.6));
  opacity: 0.8;
  z-index: 15;
  animation: float 4s ease-in-out infinite;
}

.donald-duck {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 15;
}

.donald-head {
  font-size: 150px;
  filter: drop-shadow(0 0 20px rgba(255, 87, 34, 0.5));
  position: relative;
}

.donald-smoke {
  position: absolute;
  top: -30px;
  right: 30px;
  width: 200px;
  height: 200px;
}

.smoke-circle {
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  filter: blur(20px);
}

.smoke-circle-1 {
  top: 0;
  right: 0;
  animation: smokeFloat 4s ease-out infinite;
}

.smoke-circle-2 {
  top: 20px;
  right: 30px;
  animation: smokeFloat 5s ease-out infinite 0.5s;
}

.smoke-circle-3 {
  top: 40px;
  right: 60px;
  animation: smokeFloat 6s ease-out infinite 1s;
}

.bottom-section {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 30px 60px;
  background: rgba(10, 23, 64, 0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-top: 2px solid rgba(221, 243, 124, 0.3);
}

.bottom-left {
  display: flex;
  align-items: center;
}

.brand-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--white);
  text-shadow: 0 0 15px rgba(221, 243, 124, 0.6);
}

.brand-name {
  font-size: 28px;
}

.brand-number {
  font-size: 48px;
  color: var(--primaire);
  text-shadow: 0 0 20px rgba(221, 243, 124, 0.8);
}

.brand-reg {
  font-size: 20px;
  vertical-align: super;
}

.bottom-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.reviews-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  text-shadow: 0 0 10px rgba(255, 87, 34, 0.5);
}

.reviews-stars {
  color: var(--action);
  font-size: 24px;
  filter: drop-shadow(0 0 8px rgba(255, 87, 34, 0.8));
}

.bottom-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.payment-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.payment-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  text-shadow: 0 0 10px rgba(221, 243, 124, 0.5);
}

.payment-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.payment-icon {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(221, 243, 124, 0.4));
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-icon:hover {
  transform: scale(1.1);
}

.cb-icon {
  background: linear-gradient(135deg, #0066CC 0%, #00CC99 100%);
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 5px 12px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  filter: none;
  box-shadow: 0 0 10px rgba(221, 243, 124, 0.4);
}

.visa-icon {
  background: #1434CB;
  color: white;
  font-weight: 700;
  font-size: 16px;
  padding: 5px 12px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  filter: none;
  box-shadow: 0 0 10px rgba(221, 243, 124, 0.4);
  letter-spacing: 1px;
}

.mastercard-icon {
  background: linear-gradient(135deg, #EB001B 0%, #F79E1B 100%);
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 5px 12px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  filter: none;
  box-shadow: 0 0 10px rgba(221, 243, 124, 0.4);
}

.amex-icon {
  background: #006FCF;
  color: white;
  font-weight: 700;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  filter: none;
  box-shadow: 0 0 10px rgba(221, 243, 124, 0.4);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes smokeFloat {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-50px) translateX(20px) scale(1.2);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100px) translateX(40px) scale(1.5);
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 30px 40px;
    padding-bottom: 180px;
  }

  .left-section,
  .right-section {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .review-card {
    max-width: 100%;
    margin: 0 auto 30px;
  }

  .floating-elements {
    height: 200px;
  }

  .cats-image {
    padding: 30px;
  }

  .cat {
    font-size: 100px;
  }

  .donald-head {
    font-size: 120px;
  }

  .bottom-section {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    padding: 25px 30px;
  }

  .bottom-right {
    justify-content: center;
  }

  .payment-info {
    align-items: center;
  }

  .payment-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .top-slogan {
    font-size: 18px;
    padding: 30px 15px 15px;
    letter-spacing: 2px;
  }

  .main-content {
    padding: 20px;
    padding-bottom: 200px;
    gap: 40px;
  }

  .review-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .floating-elements {
    height: 150px;
  }

  .floating-emoji {
    font-size: 40px;
    top: 10px;
    right: -10px;
  }

  .floating-star {
    font-size: 30px;
  }

  .star-1 {
    top: 50px;
    right: 30px;
  }

  .star-2 {
    top: 100px;
    right: 10px;
  }

  .star-3 {
    top: 150px;
    right: 40px;
  }

  .cats-image {
    padding: 20px;
    gap: 15px;
  }

  .cat {
    font-size: 70px;
  }

  .cta-button {
    padding: 16px 35px;
    font-size: 18px;
  }

  .floating-pouch {
    font-size: 60px;
    top: 30px;
    right: 30px;
  }

  .donald-head {
    font-size: 100px;
  }

  .brand-text {
    font-size: 24px;
  }

  .brand-number {
    font-size: 32px;
  }

  .reviews-text {
    font-size: 14px;
  }

  .reviews-stars {
    font-size: 20px;
  }

  .payment-text {
    font-size: 12px;
  }

  .payment-icon {
    height: 25px;
  }

  .cb-icon {
    font-size: 12px;
    padding: 4px 10px;
  }

  .visa-icon {
    font-size: 14px;
    padding: 4px 10px;
  }

  .mastercard-icon {
    font-size: 12px;
    padding: 4px 10px;
  }

  .amex-icon {
    font-size: 10px;
    padding: 4px 8px;
  }

  .bottom-section {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .top-slogan {
    font-size: 14px;
    letter-spacing: 1px;
    padding: 25px 10px 10px;
  }

  .main-content {
    padding: 15px;
    padding-bottom: 220px;
    gap: 30px;
  }

  .review-card {
    padding: 15px;
    margin-bottom: 15px;
  }

  .review-name {
    font-size: 14px;
  }

  .review-text {
    font-size: 12px;
  }

  .floating-elements {
    height: 120px;
  }

  .floating-emoji {
    font-size: 30px;
  }

  .floating-star {
    font-size: 24px;
  }

  .cats-image {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }

  .cat {
    font-size: 50px;
  }

  .cta-button {
    padding: 14px 30px;
    font-size: 16px;
    gap: 10px;
  }

  .arrow {
    font-size: 20px;
  }

  .floating-pouch {
    font-size: 50px;
    top: 20px;
    right: 20px;
  }

  .donald-head {
    font-size: 80px;
  }

  .brand-text {
    font-size: 20px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-number {
    font-size: 28px;
  }

  .reviews-text {
    font-size: 12px;
  }

  .reviews-stars {
    font-size: 18px;
  }

  .payment-text {
    font-size: 10px;
  }

  .payment-icons {
    gap: 8px;
  }

  .payment-icon {
    height: 20px;
  }

  .cb-icon {
    font-size: 10px;
    padding: 3px 8px;
  }

  .visa-icon {
    font-size: 12px;
    padding: 3px 8px;
  }

  .mastercard-icon {
    font-size: 10px;
    padding: 3px 8px;
  }

  .amex-icon {
    font-size: 8px;
    padding: 3px 6px;
  }

  .bottom-section {
    padding: 15px;
    gap: 15px;
  }
}
