/* Cursor flame trail using site icon */
.cursor-trail { position: fixed; inset: 0; pointer-events: none; z-index: 70; overflow: hidden; }
.cursor-trail .mote { position: absolute; width: 18px; height: 18px; opacity: 0; will-change: transform, opacity; filter: drop-shadow(0 6px 14px rgba(0,0,0,.2)); }
@keyframes trailFade {
  0%   { transform: translate3d(var(--x), var(--y), 0) scale(0.9) rotate(var(--r)); opacity: .9; }
  70%  { opacity: .6; }
  100% { transform: translate3d(calc(var(--x) + var(--dx)), calc(var(--y) + var(--dy)), 0) scale(0.4) rotate(calc(var(--r) + 25deg)); opacity: 0; }
}
/* Ambient icon shower */
.icon-shower { position: fixed; inset: 0; pointer-events: none; z-index: 55; overflow: hidden; }
.icon-shower .meteor { position: absolute; width: 32px; height: 32px; border-radius: 10px; filter: drop-shadow(0 6px 14px rgba(0,0,0,.18)); opacity: 1; background-size: cover; background-position: center; }

/* Temporarily disable particle effects */
.cursor-trail, .icon-shower { display: none !important; }

@keyframes meteorFly {
  0%   { transform: translate3d(var(--sx), var(--sy), 0) rotate(0deg); }
  100% { transform: translate3d(calc(var(--sx) + var(--dx)), calc(var(--sy) + var(--dy)), 0) rotate(15deg); }
}
/* Reset */
:root { --brand: #2563eb; --brand-700: #1d4ed8; --brand-soft: rgba(37,99,235,.12); --brand-shadow: rgba(37,99,235,.35); }
* { box-sizing: border-box; }
html, body { height: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Arial, "PingFang SC", "Microsoft YaHei", sans-serif; color: #0b0f12; background: #fff; overflow-x: hidden; }

/* Header (simplified) */
.header { position: sticky; top: 0; z-index: 10; background: #fff; border-bottom: 1px solid rgba(0,0,0,.06); }
.wrap { max-width: 1200px; margin: 0 auto; padding: 10px 18px; display: flex; align-items: center; justify-content: space-between; position: relative; }
.left { display: flex; align-items: center; gap: 10px; }
.logo { height: 26px; width: auto; display: block; }
.right { display: flex; align-items: center; gap: 10px; position: relative; }
.download { display: inline-flex; align-items: center; justify-content: center; height: 30px; padding: 0 12px; background: var(--brand); color: #fff; border-radius: 999px; text-decoration: none; font-weight: 600; box-shadow: 0 6px 16px var(--brand-shadow); transition: all 0.3s ease; }
.download:hover { transform: translateY(-2px); box-shadow: 0 8px 20px var(--brand-shadow); }
.download:hover { background: var(--brand-700); }
.globe { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 999px; border: 1px solid rgba(0,0,0,.12); background: #fff; color: #0b0f12; padding: 0; }
.globe img { width: 18px; height: 18px; display: block; }

.lang-menu { list-style: none; margin: 6px 0 0; padding: 6px; position: absolute; right: 0; top: 100%; min-width: 140px; background: #fff; border: 1px solid rgba(0,0,0,.1); border-radius: 10px; box-shadow: 0 10px 24px rgba(0,0,0,.12); display: none; }
.lang-menu.open { display: block; }
.lang-menu li { padding: 8px 10px; border-radius: 8px; cursor: pointer; }
.lang-menu li[aria-selected="true"] { background: var(--brand-soft); font-weight: 600; }
.lang-menu li:hover { background: rgba(0,0,0,.05); }

@media (max-width: 520px) { }

/* Hero */
.hero { 
  position: relative; 
  padding: 60px 0 40px; 
  background: linear-gradient(180deg, #eef4ff 0%, #ffffff 65%); 
  text-align: center; 
  overflow: hidden;
  animation: elegantGlow 4s ease-in-out infinite;
}
.rating { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; background: var(--brand-soft); border-radius: 999px; border: 1px solid rgba(0,0,0,.06); animation: fadeInUp 0.8s ease-out; }
.rating-text { color: #0b0f12; font-weight: 600; }
.stars img { width: 22px; height: 22px; display: inline-block; }
.tp-star { width: 18px; height: 18px; }
.tp-text { font-weight: 600; }

.hero-copy { 
  margin-top: 24px; 
  animation: fadeInUp 0.8s ease-out 0.2s both;
  position: relative;
}
.title-1 { 
  margin: 10px 0 0; 
  font-size: 48px; 
  line-height: 1.1; 
  letter-spacing: .4px; 
  font-weight: 800; 
  color: #0b0f12;
  animation: slideInFromLeft 1s ease-out 0.4s both;
  position: relative;
}
.title-2 { 
  margin: 8px 0 10px; 
  font-size: 44px; 
  line-height: 1.08; 
  font-weight: 800; 
  color: var(--brand-700);
  animation: slideInFromRight 1s ease-out 0.6s both;
  position: relative;
}
.subtitle { 
  max-width: 880px; 
  margin: 0 auto; 
  color: #687076; 
  font-size: 14px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-art { 
  position: relative; 
  max-width: 1000px; 
  margin: 40px auto 0; 
  animation: scaleInWithBounce 1.2s ease-out 1s both;
}
.hero-girl { 
  width: 600px; 
  max-width: 90%; 
  height: auto; 
  display: block; 
  margin: 0 auto; 
  animation: subtleFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}

.cta-wrap { 
  display: flex; 
  justify-content: center; 
  margin-top: 0px; 
  animation: fadeInUp 0.8s ease-out 1.2s both;
}
.download.big { 
  height: 54px; 
  padding: 0 28px; 
  border-radius: 999px; 
  font-size: 16px; 
  box-shadow: 0 10px 28px var(--brand-shadow); 
  min-width: 520px; 
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  background: linear-gradient(45deg, var(--brand), var(--brand-700));
  background-size: 200% 200%;
  animation: shimmer 3s ease-in-out infinite;
}
.download.big:hover { 
  transform: translateY(-5px) scale(1.05); 
  box-shadow: 0 20px 40px var(--brand-shadow);
  animation-play-state: paused;
}
.download.big:active {
  transform: translateY(-2px) scale(0.98);
}

@media (max-width: 640px) {
  .download.big { min-width: 70%; }
}

/* Apps Section */
.apps { background: #fff; }
.apps-cat { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: #111; margin: 0 0 10px; }
.apps-cat-icon { width: 18px; height: 18px; }
.apps-cards { overflow: visible; max-width: 1120px; margin: 0 auto; padding: 20px 18px; width: 100%; }
.apps-cards.overflowing { padding-left: 28px; padding-right: 28px; }
.apps-strip-cards { 
  display: inline-flex; 
  gap: 28px; 
  width: max-content; 
  animation: cards-scroll 30s ease-in-out infinite;
  will-change: transform; /* Optimize for smooth animation */
}
.apps-cards.no-scroll .apps-strip-cards { animation: none; transform: none; margin: 0 auto; }
/* Play Games: 4 apps × ~190px + gap = ~760px */
.apps-item:first-child { flex: 0 0 auto; width: auto; min-width: 760px; }
/* Complete tasks (now shows 2 apps + More) - compact initial width */
.apps-item:nth-child(2) { flex: 0 0 auto; width: auto; min-width: 540px; }
/* Watch Videos: 1 app × 120px + padding 40px = 160px */
.apps-item:last-child { flex: 0 0 160px; width: 160px; }
.apps-cards:hover .apps-strip-cards { animation-play-state: paused; }
.apps-cards.paused .apps-strip-cards { animation-play-state: paused !important; }
.apps .app-card .app-list.two .app-mini[data-extra="true"] { display: none; }
.app-mini.tasks-more { text-align: center; }
.globe-icon { position: relative; width: 84px; height: 84px; margin-bottom: 0; border-radius: 22px; }
.globe-icon::after { content: ''; position: absolute; inset: 0; border-radius: 22px; }
.globe-icon .globe { 
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 72px; height: 72px; border-radius: 50%; overflow: hidden; 
  box-shadow: 0 8px 20px var(--brand-shadow); background: radial-gradient(circle at 30% 30%, #4fc3f7, #2563eb);
}
.globe-icon .globe::before { 
  content: ""; position: absolute; inset: 0; 
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.15) 0 2px, transparent 2px 8px);
  mix-blend-mode: overlay; opacity: .35; filter: blur(.2px);
}
.globe-icon .orbit { position: absolute; inset: 0; animation: orbit 12s linear infinite; }
.globe-icon .orbit .icon { position: absolute; top: 50%; left: 50%; transform-origin: center; }
.globe-icon .orbit .icon img { width: 22px; height: 22px; border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,.15); }

@keyframes orbit { to { transform: rotate(360deg); } }
.tasks-more-tile .more-text { font-weight: 700; font-size: 14px; color: #0b0f12; }
.app-card { 
  border-radius: 18px; 
  padding: 30px 20px 22px; 
  text-align: center; 
  box-shadow: 0 10px 26px rgba(0,0,0,.08); 
  min-height: 280px; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}
.app-card:hover::before {
  left: 100%;
}
.app-card:hover { 
  transform: translateY(-8px) scale(1.02); 
  box-shadow: 0 25px 50px rgba(0,0,0,.15);
}
.app-list.two { display: flex; flex-wrap: nowrap; gap: 24px; align-items: flex-start; justify-content: space-between; padding-top: 8px; overflow: visible; width: 100%; }
.app-mini { flex: 1 1 0; }
.app-mini { text-align: center; display: flex; flex-direction: column; align-items: center; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease; }
.app-mini:hover { transform: translateY(-2px); }
.app-mini:active { transform: translateY(1px) scale(0.98); box-shadow: 0 8px 18px rgba(0,0,0,.08); }
.app-mini .app-icon { 
  width: 84px; 
  height: 84px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}
.app-mini:hover .app-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2));
}
.app-mini .app-title { 
  margin: 10px 0 12px; 
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.app-mini:hover .app-title {
  color: var(--brand-700);
  transform: translateY(-2px);
}
.app-mini .app-users { 
  margin: 0 0 12px; 
  font-size: 16px; 
  font-weight: 800; 
  color: #0b0f12;
  transition: all 0.3s ease;
}
.app-mini:hover .app-users {
  transform: translateY(-1px);
}
.app-mini .app-btn { 
  height: 44px; 
  line-height: 44px; 
  padding: 0 24px; 
  font-size: 16px; 
  box-shadow: 0 8px 20px var(--brand-shadow); 
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.app-mini .app-btn::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;
}
.app-mini .app-btn:hover::before {
  left: 100%;
}
.app-mini .app-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px var(--brand-shadow);
}
.card-green { background: linear-gradient(180deg, #eef4ff 0%, #ffffff 62%); }
.card-blue { background: linear-gradient(180deg, #e9f4ff 0%, #ffffff 62%); }
.card-orange { background: linear-gradient(180deg, #fff2e6 0%, #ffffff 62%); }
.app-icon { width: 84px; height: 84px; border-radius: 22px; object-fit: cover; }
.app-title { margin: 10px 0 2px; font-size: 14px; }
.app-users { margin: 0 0 16px; font-size: 18px; color: #0b0f12; font-weight: 800; }

/* Hide all displayed download/user counts while preserving clean spacing */
.app-users { display: none !important; margin: 0 !important; }
.app-btn { background: var(--brand); color: #fff; height: 44px; line-height: 44px; padding: 0 24px; border-radius: 999px; font-size: 16px; box-shadow: 0 8px 20px var(--brand-shadow); display: inline-block; transition: all 0.3s ease; text-decoration: none; }
.app-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 25px var(--brand-shadow); }

/* Remove mobile tap highlight/blue flash and default focus outline; keep accessible focus style */
a, button, .app-btn, .tasks-more-tile, .app-mini { -webkit-tap-highlight-color: transparent; }
.app-btn:focus { outline: none; }
.app-btn:focus-visible { box-shadow: 0 0 0 3px rgba(37,99,235,.35), 0 8px 20px var(--brand-shadow); }

@media (max-width: 1400px){ 
  .apps-item:first-child { flex-basis: auto; width: auto; min-width: 720px; }
  .apps-item:nth-child(2) { flex-basis: auto; width: auto; min-width: 520px; }
  .apps-item:last-child { flex-basis: 160px; width: 160px; }
}
@media (max-width: 1100px){ 
  .apps-strip-cards { gap: 22px; }
  .apps-item:first-child { flex-basis: auto; width: auto; min-width: 680px; }
  .apps-item:nth-child(2) { flex-basis: auto; width: auto; min-width: 500px; }
  .apps-item:last-child { flex-basis: 160px; width: 160px; }
}
@media (max-width: 960px){ 
  .apps-strip-cards { gap: 18px; }
  .apps-item:first-child { flex-basis: auto; width: auto; min-width: 640px; }
  .apps-item:nth-child(2) { flex-basis: auto; width: auto; min-width: 460px; }
  .apps-item:last-child { flex-basis: 160px; width: 160px; }
  .apps-cards.overflowing { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 600px) {
  /* Keep marquee autoplay on mobile, just tighten spacing */
  .apps-strip-cards { gap: 14px; }
  /* Keep desktop card widths on mobile - let scrolling handle the display */
  .app-mini .app-icon { width: 72px; height: 72px; }
  .app-mini .app-btn { height: 40px; line-height: 40px; font-size: 15px; padding: 0 18px; }
  .apps-cards.overflowing { padding-left: 18px; padding-right: 18px; }
}
@media (max-width: 560px){ .apps-head { grid-template-columns: 1fr; } }

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

/* Elegant entrance animations */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes scaleInWithBounce {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-10deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes elegantGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.2), 0 0 60px rgba(37, 99, 235, 0.1);
  }
}

@keyframes subtleFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-8px) rotate(1deg);
  }
  66% {
    transform: translateY(-4px) rotate(-0.5deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* More modal */
.more-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); display: none; z-index: 50; }
.more-modal { position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%); background: #fff; border-radius: 20px; width: min(92vw, 720px); max-height: 90vh; padding: 22px; box-shadow: 0 24px 70px rgba(0,0,0,.22); display: none; z-index: 60; overflow: hidden; }
.more-modal.open, .more-overlay.open { display: block; }
.more-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.more-close { cursor: pointer; font-weight: 700; color: #666; }
.more-modal .app-list { display: grid; grid-template-columns: repeat( auto-fit, minmax(160px, 1fr) ); gap: 20px; overflow: auto; max-height: calc(90vh - 70px); padding-right: 4px; }

@media (max-width: 480px){
  .more-modal { width: min(96vw, 720px); padding: 16px; }
  .more-modal-header { margin-bottom: 8px; }
  .more-modal .app-list { grid-template-columns: repeat(2, minmax(120px, 1fr)); gap: 14px; max-height: calc(90vh - 56px); }
}

/* iPhone SE / very small screens tuning */
@media (max-width: 380px){
  .more-modal { width: 96vw; padding: 12px; border-radius: 16px; }
  .more-modal .app-list { grid-template-columns: repeat(2, minmax(110px, 1fr)); gap: 12px; }
  .more-modal .app-mini .app-icon { width: 64px; height: 64px; }
  .more-modal .app-mini .app-title { margin: 8px 0 2px; font-size: 13px; }
  .more-modal .app-mini .app-users { margin: 0 0 8px; font-size: 14px; }
  .more-modal .app-mini .app-btn { height: 38px; line-height: 38px; padding: 0 14px; font-size: 14px; }
}
.more-modal .app-mini { cursor: pointer; transition: transform .18s ease, box-shadow .18s ease; }
.more-modal .app-mini:hover { transform: translateY(-2px); }
.more-modal .app-mini:active { transform: translateY(1px) scale(0.98); box-shadow: 0 8px 18px rgba(0,0,0,.08); }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

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

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

@keyframes clickPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
  20%, 40%, 60%, 80% { transform: translateX(2px); }
}

/* Horizontal marquee - smooth infinite scroll with natural easing */
@keyframes cards-scroll { 
  0% { 
    transform: translateX(0); 
    animation-timing-function: ease-out;
  }
  25% { 
    transform: translateX(-12.5%); 
    animation-timing-function: ease-in-out;
  }
  50% { 
    transform: translateX(-50%); 
    animation-timing-function: ease-in-out;
  }
  75% { 
    transform: translateX(-37.5%); 
    animation-timing-function: ease-in-out;
  }
  100% { 
    transform: translateX(0); 
    animation-timing-function: ease-in;
  }
}

/* How to Use Section */
.how-to-use { padding: 20px 0; background: #fff; }
.section-title { text-align: center; margin-bottom: 0; animation: fadeInUp 0.8s ease-out; }
.title-main { display: block; font-size: 48px; font-weight: 800; color: #0b0f12; margin-bottom: 8px; }
.title-sub { display: block; font-size: 44px; font-weight: 800; color: var(--brand-700); margin-bottom: 2px; }

.steps { 
  max-width: 800px; 
  margin: 0 auto; 
  text-align: center;
  position: relative;
}
.step { 
  margin-bottom: 80px; 
  animation: fadeInUp 0.8s ease-out;
  transition: all 0.3s ease;
  position: relative;
}
.step:nth-child(1) { 
  animation: slideInFromLeft 1s ease-out 0.2s both;
}
.step:nth-child(2) { 
  animation: slideInFromRight 1s ease-out 0.4s both;
}
.step:nth-child(3) { 
  animation: slideInFromLeft 1s ease-out 0.6s both;
}
.step:hover {
  transform: translateY(-5px);
}
.step-content { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 20px;
  transition: all 0.3s ease;
}
.step-content:hover {
  transform: scale(1.02);
}
.step-image { 
  width: 100%; 
  max-width: 500px; 
  margin-bottom: 10px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.1));
}
.step-image:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}
.step-main-img { 
  width: 60%; 
  height: auto;
  transition: all 0.3s ease;
  animation: subtleFloat 3s ease-in-out infinite;
}
.step-illustration { 
  width: 100%; 
  max-width: 400px; 
  height: auto; 
  margin: 10px 0;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}
.step-illustration:hover {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2));
}
.step-text { text-align: left; width: 100%; max-width: 500px; margin-top: 10px; }
.step-02 .step-text { text-align: right; }
.step-title { font-size: 12px; font-weight: 700; color: #0b0f12; margin-bottom: 6px; }
.step-description { font-size: 9px; line-height: 1.3; color: #687076; }

@media (max-width: 768px) {
  .how-to-use { padding: 20px 0; }
  .section-title { margin-bottom: 30px; }
  .title-main { font-size: 36px; }
  .title-sub { font-size: 32px; margin-bottom: 30px; }
  .step-content { gap: 24px; }
  .step-image { max-width: 400px; }
  .step-illustration { max-width: 350px; }
  .step-text { max-width: 350px; }
  .step-title { font-size: 16px; margin-bottom: 8px; }
  .step-description { font-size: 12px; line-height: 1.4; }
  .howto-cta { margin-top: 30px; }
}

/* How to Use CTA */
.howto-cta { text-align: center; margin-top: 60px; }

/* Footer */
.footer { background: #f0f9ff; padding: 80px 0 60px; animation: fadeInUp 0.8s ease-out; }
.footer-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1200px; margin: 0 auto; }
.footer-section { text-align: left; }
.footer-title { font-size: 16px; font-weight: 700; color: #0b0f12; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #687076; text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--brand-700); }
.footer-brand { margin-bottom: 20px; }
.footer-logo { height: 24px; width: auto; margin-bottom: 8px; }
.footer-email { color: #687076; font-size: 14px; margin: 0; }
.footer-social { display: flex; gap: 12px; }
.social-link { display: inline-block; transition: transform 0.2s; }
.social-link:hover { transform: translateY(-2px); }

@media (max-width: 768px) {
  .footer { padding: 60px 0 40px; }
  .footer-content { 
    grid-template-columns: 1fr; 
    gap: 32px; 
    text-align: center; 
    padding: 0 20px;
  }
  .footer-section { text-align: center; }
  .footer-title { font-size: 18px; margin-bottom: 20px; }
  .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer-links li { margin-bottom: 0; }
  .footer-links a { font-size: 15px; padding: 8px 16px; background: rgba(255,255,255,0.5); border-radius: 20px; transition: all 0.2s; }
  .footer-links a:hover { background: rgba(255,255,255,0.8); color: var(--brand-700); }
  .footer-brand { margin-bottom: 24px; }
  .footer-logo { height: 28px; margin-bottom: 12px; }
  .footer-email { font-size: 15px; margin-bottom: 20px; }
  .footer-social { justify-content: center; gap: 16px; }
  .social-link img { width: 24px; height: 24px; }
}


