@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ar-uchiwa #main {
  padding: 0;
}

.ar-uchiwa footer {
  margin-top: -8.1578947368vw;
}

.ar-uchiwa-top {
  height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
}

.ar-uchiwa-top-content {
  z-index: 2;
  position: relative;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}
.ar-uchiwa-top-content h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .ar-uchiwa-top-content h1 {
    font-size: 2.5rem;
  }
}
.ar-uchiwa-top-content p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .ar-uchiwa-top-content p {
    font-size: 1.2rem;
  }
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  opacity: 0.6;
  font-size: 3rem;
  animation: floatingIcon 15s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: -2s;
}

.floating-element:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: -8s;
}

.floating-element:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: -5s;
}

@keyframes floatingIcon {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
    opacity: 0.8;
  }
}
.section {
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.features {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.how-it-works {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
}

.benefits {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: white;
}

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

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.section-title small {
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .section-title small {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: rotate(45deg);
  transition: transform 0.6s ease;
  opacity: 0;
}

.card:hover::before {
  opacity: 1;
  transform: rotate(45deg) translate(20px, 20px);
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.demo-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.price-section {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  color: white;
}

.price-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.price {
  font-size: 4rem;
  font-weight: 800;
  margin: 1rem 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .price {
    font-size: 2.5rem;
  }
}

.poster-demo-section {
  padding-top: 0;
  padding-bottom: 18.5778947368vw;
}/*# sourceMappingURL=style-ar-uchiwa.css.map */