html {
  scroll-behavior: smooth;
}

/* Brand Name Styling */
.brand-name {
  white-space: nowrap;
}

.brand-koko {
  color: #4CD6CF;
  font-weight: 900;
}

.brand-fun {
  color: #FFD82C;
  font-weight: 900;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out forwards;
  opacity: 0;
}

body {
  background: linear-gradient(135deg, #E8F4F8 0%, #D4E9F0 100%);
  font-family: 'Nunito', system-ui, sans-serif;
  margin: 0;
  min-height: 100vh;
  color: #2D3A3A;
  display: flex;
  flex-direction: column;
}

* {
  box-sizing: border-box;
}

.site-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .site-container {
    padding: 0 2rem;
  }
}

main {
  flex: 1;
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
}

/* Header Styles */
.site-header {
  background: linear-gradient(180deg, #ffffff 0%, #fafcfd 100%);
  padding: 1.2rem 0;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, #4CD6CF 0%, #FFD82C 100%);
  border-image-slice: 1;
  margin-bottom: 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(76, 214, 207, 0.1);
  backdrop-filter: blur(10px);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo-link {
  display: block;
  transition: transform 0.3s, filter 0.3s;
  position: relative;
}

.logo-link::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4CD6CF, #FFD82C);
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.3s;
  z-index: -1;
}

.logo-link:hover::after {
  opacity: 0.3;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo {
  height: 70px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(76, 214, 207, 0.2));
}

@media (min-width: 768px) {
  .logo {
    height: 85px;
  }
  
  .site-header {
    padding: 1.5rem 0;
  }
}

.nav-menu {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1;
}

.nav-link {
  color: #2D3A3A;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.6rem 1.1rem;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, #4CD6CF, #FFD82C);
  border-radius: 2px;
  transition: transform 0.3s;
}

.nav-link:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
  background: linear-gradient(135deg, #4CD6CF15, #FFD82C15);
  color: #4CD6CF;
  transform: translateY(-2px);
}

.nav-cta {
  background: linear-gradient(135deg, #4CD6CF 0%, #3BB8B2 100%);
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(76, 214, 207, 0.35);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.nav-cta:hover::before {
  width: 300px;
  height: 300px;
}

.nav-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(76, 214, 207, 0.5);
  border-color: rgba(255, 255, 255, 0.6);
}

.nav-cta:active {
  transform: translateY(-1px) scale(1.02);
}

@media (max-width: 767px) {
  .header-content {
    justify-content: center;
    gap: 1rem;
  }
  
  .logo {
    height: 50px;
  }
  
  .nav-menu {
    width: 100%;
    justify-content: center;
  }
  
  .nav-link, .nav-cta {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  margin-bottom: 0;
  padding: 3rem 0 4rem 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(240,255,254,0.6) 100%);
  overflow: hidden;
}

.hero-row {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2rem;
  padding: 0 1rem;
}

.hero-mascot-col, .hero-text-col {
  width: 100%;
}

@media (min-width: 768px) {
  .hero-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
  .hero-mascot-col {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-text-col {
    width: 55%;
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 4rem 0 5rem 0;
  }
  .hero-row {
    gap: 4rem;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  gap: 0;
}

@media (min-width: 600px) {
  .hero-text {
    align-items: flex-start;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Remove old logo bar styles - now integrated in header */

.koko-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Floating Language Flags */
.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-item {
  position: absolute;
  font-size: 2.5rem;
  animation: floatAround 6s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

@keyframes floatAround {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -10px) rotate(5deg);
  }
  50% {
    transform: translate(-5px, -15px) rotate(-5deg);
  }
  75% {
    transform: translate(15px, -5px) rotate(3deg);
  }
}

.float-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.float-2 {
  top: 15%;
  right: 8%;
  animation-delay: 1s;
}

.float-3 {
  top: 40%;
  left: 2%;
  animation-delay: 2s;
}

.float-4 {
  top: 50%;
  right: 5%;
  animation-delay: 3s;
}

.float-5 {
  bottom: 25%;
  left: 8%;
  animation-delay: 4s;
}

.float-6 {
  bottom: 20%;
  right: 10%;
  animation-delay: 5s;
}

@media (max-width: 767px) {
  .float-item {
    font-size: 1.8rem;
  }
}

.koko {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
  display: block;
  animation: float 3s ease-in-out infinite;
  transition: transform 0.3s;
  filter: drop-shadow(0 10px 25px rgba(76, 214, 207, 0.3));
}

.koko:hover {
  animation-play-state: paused;
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .koko {
    max-width: 450px;
  }
}

.koko-caption {
  text-align: center;
  font-size: 1rem;
  color: #4CD6CF;
  margin-top: 1rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, rgba(76, 214, 207, 0.1) 0%, rgba(255, 216, 44, 0.1) 100%);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(76, 214, 207, 0.15);
}

@media (min-width: 768px) {
  .koko-caption {
    font-size: 1.1rem;
  }
}

@media (min-width: 600px) {
  .koko {
    width: 100%;
    max-width: 100%;
    min-width: 120px;
    height: auto;
  }
}

/* Social Proof */
.social-proof {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  justify-content: center;
}

@media (min-width: 600px) {
  .social-proof {
    justify-content: flex-start;
  }
}

.rating-stars {
  font-size: 1.3rem;
  color: #FFD82C;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 0.95rem;
  color: #555;
  font-weight: 600;
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFD82C 0%, #FFB74D 100%);
  color: #2D3A3A;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  box-shadow: 0 3px 10px rgba(255, 216, 44, 0.3);
  animation: fadeIn 0.6s ease-out;
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 900;
  margin: 0 0 1rem 0;
  color: #2D3A3A;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
  font-weight: 500;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.3rem;
  }
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 0.8rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 600px) {
  .trust-badges {
    justify-content: flex-start;
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: #2D3A3A;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(76, 214, 207, 0.15);
  border: 2px solid #4CD6CF33;
  transition: all 0.3s;
}

.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 214, 207, 0.25);
  border-color: #4CD6CF;
}

.trust-icon {
  width: 20px;
  height: 20px;
  stroke: #4CD6CF;
  flex-shrink: 0;
}

/* Hero Testimonial */
.hero-testimonial {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(135deg, #F0FFFE 0%, #E8F9F8 100%);
  border-left: 4px solid #4CD6CF;
  border-radius: 12px;
  text-align: center;
}

@media (min-width: 600px) {
  .hero-testimonial {
    text-align: left;
  }
}

.testimonial-quote {
  font-size: 1.05rem;
  color: #2D3A3A;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.testimonial-author {
  font-size: 0.9rem;
  color: #4CD6CF;
  font-weight: 700;
}

/* What Is It Box */
.what-is-it {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFF3D6 100%);
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  border: 2px solid #FFD82C44;
  margin: 1.5rem 0;
  box-shadow: 0 3px 12px rgba(255, 216, 44, 0.2);
}

.what-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.what-text {
  font-size: 1.05rem;
  color: #2D3A3A;
  line-height: 1.6;
}

.what-text strong {
  color: #2D3A3A;
  font-weight: 800;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0;
}

@media (min-width: 600px) {
  .hero-cta {
    justify-content: flex-start;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #4CD6CF 0%, #3BB8B2 100%);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(76, 214, 207, 0.3);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(76, 214, 207, 0.4);
}

.btn-large {
  font-size: 1.2rem;
  padding: 16px 36px;
  font-weight: 800;
}

/* Device Compatibility */
.device-compat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
  color: #666;
  font-size: 0.9rem;
}

@media (min-width: 600px) {
  .device-compat {
    justify-content: flex-start;
  }
}

.device-icon {
  width: 18px;
  height: 18px;
  fill: #4CD6CF;
}

.btn-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: transform 0.3s;
}

.btn-primary:hover .btn-icon {
  transform: translateY(2px);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: white;
  color: #4CD6CF;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 28px;
  border-radius: 12px;
  border: 2px solid #4CD6CF;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: #4CD6CF;
  color: white;
  transform: translateY(-2px);
}

/* What You Get Section */
.what-you-get {
  margin: 0;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #F0FFFE 0%, #E8F9F8 100%);
  position: relative;
}

.what-you-get::before {
  content: '';
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
  height: 3rem;
  background: linear-gradient(180deg, transparent 0%, rgba(240,255,254,0.5) 100%);
}

.what-you-get h2 {
  text-align: center;
  font-size: 2rem;
  color: #2D3A3A;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.get-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.get-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .get-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .get-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.get-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 1.2rem;
  box-shadow: 0 4px 16px rgba(76, 214, 207, 0.15);
  border: 2px solid #4CD6CF22;
  transition: all 0.3s;
}

.get-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(76, 214, 207, 0.25);
  border-color: #4CD6CF;
}

.get-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #4CD6CF 0%, #3BB8B2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.get-label {
  font-size: 1.1rem;
  font-weight: 800;
  color: #2D3A3A;
  margin-bottom: 0.5rem;
}

.get-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Story Compact Section */
.story-compact {
  margin: 0;
  background: #ffffff;
  padding: 5rem 2rem;
  position: relative;
}

.story-compact::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #4CD6CF 50%, transparent 100%);
}

.story-compact h2 {
  margin-top: 0;
  font-size: 2rem;
  color: #2D3A3A;
  font-weight: 800;
  margin-bottom: 1.2rem;
  text-align: center;
}

.story-intro {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
  margin: 0 auto 3rem auto;
  text-align: center;
  max-width: 800px;
}

.story-points {
  display: grid;
  gap: 1.5rem;
  margin: 0 auto 3rem auto;
  max-width: 900px;
}

@media (min-width: 768px) {
  .story-points {
    grid-template-columns: 1fr 1fr;
  }
}

.story-point {
  display: flex;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  background: #F0FFFE;
  border-radius: 10px;
  transition: all 0.3s;
}

.story-point:hover {
  background: #E8F9F8;
  transform: translateX(5px);
}

.point-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #4CD6CF 0%, #3BB8B2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.point-text {
  font-size: 1rem;
  color: #2D3A3A;
  line-height: 1.6;
}

.story-cta {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #4CD6CF 0%, #3BB8B2 100%);
  border-radius: 16px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(76, 214, 207, 0.3);
  position: relative;
  overflow: hidden;
}

.story-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

.urgency-text {
  font-size: 1.2rem;
  color: white;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.benefits {
  margin: 0;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFF3D6 100%);
}

.benefits h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #2D3A3A;
}

.section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: #666;
  margin: 0 auto 3rem auto;
  font-style: italic;
  max-width: 700px;
  line-height: 1.6;
}

.benefit-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .benefit-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .benefit-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.benefit-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 3px 12px rgba(76, 214, 207, 0.12);
  padding: 1.5rem 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  border: 2px solid #4CD6CF22;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(76, 214, 207, 0.1), transparent);
  transition: left 0.5s;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(76, 214, 207, 0.25);
  border-color: #4CD6CF;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #4CD6CF 0%, #3BB8B2 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 4px 12px rgba(76, 214, 207, 0.25);
  transition: all 0.3s;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px rgba(76, 214, 207, 0.35);
}

.benefit-title {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #2D3A3A;
  text-align: center;
  width: 100%;
}

.benefit-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  text-align: center;
  width: 100%;
}

@media (min-width: 600px) {
  .benefit-cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.3rem;
    justify-content: center;
  }
  .benefit-card {
    flex: 1 1 220px;
    max-width: 250px;
    min-width: 180px;
  }
}

.how-it-works {
  margin: 0;
  padding: 5rem 1.5rem;
  background: #ffffff;
}

.how-it-works h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #2D3A3A;
}

/* Visual How It Works */
.how-steps-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

@media (min-width: 900px) {
  .how-steps-visual {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}

.how-step-visual {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 20px rgba(76, 214, 207, 0.12);
  border: 3px solid #4CD6CF22;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  flex: 1;
  max-width: 260px;
  position: relative;
  overflow: visible;
}

.how-step-visual::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #4CD6CF, #FFD82C);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.how-step-visual:hover::before {
  opacity: 1;
}

.how-step-visual:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 32px rgba(76, 214, 207, 0.3);
  border-color: transparent;
}

.step-icon-circle {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #4CD6CF 0%, #3BB8B2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  box-shadow: 0 6px 16px rgba(76, 214, 207, 0.35);
  position: relative;
  transition: all 0.3s;
}

.step-icon-circle::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4CD6CF, #3BB8B2);
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.3s;
  z-index: -1;
}

.how-step-visual:hover .step-icon-circle {
  transform: scale(1.1) rotate(5deg);
}

.how-step-visual:hover .step-icon-circle::after {
  opacity: 0.6;
}

.step-icon-circle svg {
  width: 45px;
  height: 45px;
  stroke: white;
  transition: transform 0.3s;
}

.how-step-visual:hover .step-icon-circle svg {
  transform: scale(1.1);
}

.step-number-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFD82C 0%, #FFB74D 100%);
  color: #2D3A3A;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

.step-arrow {
  font-size: 2.5rem;
  color: #4CD6CF;
  font-weight: 800;
  display: none;
  animation: pulse 2s ease-in-out infinite;
  text-shadow: 0 2px 8px rgba(76, 214, 207, 0.3);
}

@keyframes arrowFloat {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

@media (min-width: 900px) {
  .step-arrow {
    display: block;
    align-self: center;
    animation: arrowFloat 1.5s ease-in-out infinite;
  }
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: stretch;
}

.how-step {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 3px 12px rgba(76, 214, 207, 0.12);
  padding: 1.5rem 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
  border: 2px solid #FFD82C44;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.how-step::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.2rem;
  padding: 2px;
  background: linear-gradient(135deg, #4CD6CF, #FFD82C);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.how-step:hover::after {
  opacity: 1;
}

.how-step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 216, 44, 0.3);
}

.how-step-number {
  background: linear-gradient(135deg, #FFD82C 0%, #FFB74D 100%);
  color: white;
  font-weight: 800;
  font-size: 1.4rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 4px 12px rgba(255, 216, 44, 0.35);
  transition: all 0.3s;
  position: relative;
}

.how-step-number::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD82C, #FFB74D);
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.3s;
}

.how-step:hover .how-step-number {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(255, 216, 44, 0.45);
}

.how-step:hover .how-step-number::before {
  opacity: 0.6;
}

.how-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: #2D3A3A;
  line-height: 1.3;
}

.how-text {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
}

.how-closing {
  margin-top: 3rem;
  text-align: center;
  font-size: 1.2rem;
  color: #2D3A3A;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFF3D6 100%);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 6px 20px rgba(255, 216, 44, 0.2);
  border: 3px solid #FFD82C;
  line-height: 1.7;
}

.how-closing strong {
  color: #4CD6CF;
  font-weight: 900;
}

@media (min-width: 600px) {
  .how-steps {
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
  }
  .how-step {
    flex: 1 1 220px;
    max-width: 250px;
    min-width: 180px;
  }
}

.faq-accordion {
  margin: 3rem 0;
}

.faq-accordion h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 800;
  color: #2D3A3A;
}

.accordion-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.accordion-item {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 3px 12px rgba(76, 214, 207, 0.12);
  padding: 0;
  border: 2px solid #4CD6CF22;
  overflow: hidden;
  transition: all 0.3s;
}

.accordion-item:hover {
  border-color: #4CD6CF;
}

.accordion-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 700;
  color: #2D3A3A;
  padding: 1.2rem 3rem 1.2rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  font-family: 'Nunito', system-ui, sans-serif;
}

.accordion-question:hover {
  background: #4CD6CF08;
}

.accordion-question::after {
  content: '▼';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s;
  font-size: 1.1rem;
  color: #4CD6CF;
}

.accordion-question[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}

.accordion-answer {
  background: #F0FFFE;
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s, padding 0.3s;
}

.accordion-answer.open {
  opacity: 1;
  padding: 1rem 1.5rem 1.3rem 1.5rem;
  max-height: 1000px;
}

.privacy-policy,
.terms-conditions {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 16px rgba(76, 214, 207, 0.15);
  padding: 1.5rem 2rem;
  margin: 1rem 0;
  border: 2px solid #4CD6CF22;
}

.privacy-policy h1,
.terms-conditions h1 {
  color: #4CD6CF;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.privacy-policy h2,
.terms-conditions h2 {
  color: #2D3A3A;
  font-size: 1.6rem;
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
  padding-left: 1rem;
  border-left: 5px solid #FFD82C;
  background: linear-gradient(90deg, rgba(255, 216, 44, 0.08) 0%, transparent 100%);
  padding: 1rem 1rem 1rem 1.5rem;
  border-radius: 0 8px 8px 0;
}

.privacy-policy p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.terms-conditions p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  color: #2D3A3A;
  font-size: 1.05rem;
}

.terms-conditions ul, .terms-conditions ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.terms-conditions li {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  color: #2D3A3A;
}

.terms-conditions strong, .terms-conditions b {
  color: #2D3A3A;
  font-weight: 800;
}

.privacy-policy table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: 0 4px 16px rgba(76, 214, 207, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.privacy-policy th, .privacy-policy td {
  border: 1px solid #4CD6CF22;
  padding: 1.2rem 1.5rem;
  text-align: left;
}

.privacy-policy th {
  background: linear-gradient(135deg, #4CD6CF 0%, #3BB8B2 100%);
  color: white;
  font-weight: 800;
  font-size: 1.05rem;
}

.privacy-policy td {
  background: #ffffff;
  font-size: 1.02rem;
}

.privacy-policy tr:nth-child(even) td {
  background: #F0FFFE;
}

.privacy-policy tbody tr {
  border-bottom: 1px solid #4CD6CF11;
}

.privacy-policy a,
.terms-conditions a {
  color: #4CD6CF;
  text-decoration: none;
  font-weight: 600;
}

.privacy-policy a:hover,
.terms-conditions a:hover {
  text-decoration: underline;
}

.support-page {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 16px rgba(76, 214, 207, 0.15);
  padding: 2rem;
  margin: 1rem 0;
  border: 2px solid #4CD6CF22;
  text-align: center;
}

.support-page h1 {
  color: #4CD6CF;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.support-page h3 {
  color: #2D3A3A;
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-weight: 800;
}

.support-page p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  color: #555;
  font-size: 1.05rem;
}

.support-page a[href^="mailto"] {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #4CD6CF 0%, #3BB8B2 100%);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(76, 214, 207, 0.3);
  transition: all 0.3s;
  margin: 2rem auto;
}

.support-page a[href^="mailto"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 214, 207, 0.4);
  text-decoration: none;
}

.support-page a[href^="mailto"] svg {
  stroke: white;
}

.download-final-cta {
  margin: 0;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #4CD6CF 0%, #3BB8B2 100%);
  text-align: center;
}

.download-content h2 {
  font-size: 2.2rem;
  color: white;
  font-weight: 900;
  margin-bottom: 1rem;
}

.download-tagline {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.download-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: white;
  color: #4CD6CF;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.3rem;
  padding: 1.2rem 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: all 0.3s;
  margin-bottom: 2rem;
}

.download-btn-large:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.download-icon {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

.download-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}

.trust-check {
  width: 20px;
  height: 20px;
  fill: white;
}

footer {
  background: #ffffff;
  color: #888;
  text-align: center;
  padding: 1.3rem 0 1rem 0;
  font-size: 0.96rem;
  border-top: 2px solid #4CD6CF;
  letter-spacing: 0.01em;
}

.site-footer {
  width: 100%;
  margin-top: auto;
  background: #2D3A3A;
  color: #E0DED8;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-brand {
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-brand {
    margin: 0;
    text-align: left;
  }
}

.footer-logo {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: #B0ADA8;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-app-badge img {
  height: 44px;
  border-radius: 8px;
  transition: transform 0.3s;
}

.footer-app-badge:hover img {
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 600px) {
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

.footer-column h3 {
  color: white;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.footer-column {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-column {
    text-align: left;
  }
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.7rem;
}

.footer-column ul li a {
  color: #B0ADA8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #4CD6CF;
}

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

.footer-bottom p {
  margin: 0.5rem 0;
  color: #B0ADA8;
  font-size: 0.9rem;
}

.footer-address {
  font-size: 0.85rem !important;
  color: #8B8985 !important;
}

.download-app-promo {
  padding: 15px 0 25px 0;
}

.download-card {
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 6px 24px rgba(76, 214, 207, 0.18);
  border-radius: 24px;
  padding: 40px 32px 32px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  border: 2px solid #4CD6CF33;
}

.download-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.stars {
  font-size: 1.3rem;
  color: #FFD82C;
  letter-spacing: 2px;
}

.download-card h2 {
  font-size: 2.1rem;
  margin-bottom: 12px;
  color: #2D3A3A;
  font-weight: 800;
}

.download-subtitle {
  font-size: 1.1rem;
  color: #4CD6CF;
  font-weight: 600;
  margin-bottom: 5px;
}

.download-desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.appstore-badge {
  width: 180px;
  max-width: 90vw;
  height: auto;
  display: inline-block;
  margin-bottom: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  border-radius: 12px;
}

.testimonial {
  font-size: 1.05rem;
  color: #333;
  background: #E8F9F8;
  padding: 16px 20px;
  border-radius: 14px;
  margin: 16px 0;
  line-height: 1.6;
  border-left: 4px solid #4CD6CF;
}

.testimonial-author {
  font-size: 0.95rem;
  color: #888;
  margin-top: 8px;
  display: block;
}

.feature-badge {
  margin-top: 12px;
  font-size: 1rem;
  color: #2D3A3A;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.check-icon {
  width: 20px;
  height: 20px;
  fill: #4CD6CF;
  display: block;
}

.btn-download {
  background: linear-gradient(135deg, #4CD6CF 0%, #3BB8B2 100%);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 12px;
  display: inline-block;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(76, 214, 207, 0.3);
  transition: all 0.3s;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 214, 207, 0.4);
}
