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

body {
  font-family: 'Outfit', sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.hidden {
  display: none !important;
}


/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(90deg, #3b4fa8, #5a60b4, #7568b8, #9470bc);
  box-shadow: 0 2px 20px rgba(59,79,168,0.25);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 20px;
  font-weight: 700;
}

.logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: #fff;
  line-height: 1;
}
.logo-text em {
  font-style: italic;
  color: #b8a4e8;
}

.logo-icon {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a,
.nav-links button {
  color: white;
  font-size: 15px;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links button:hover {
  color: #b8a4e8;
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 164, 232, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  border: 1px solid rgba(184, 164, 232, 0.2);
}

.login-btn:hover {
  background: rgba(184, 164, 232, 0.25);
  border-color: rgba(184, 164, 232, 0.4);
}

.login-btn svg {
  width: 18px;
  height: 18px;
}

.dev-by-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  background: rgba(126,87,194,0.15);
  border: 1px solid rgba(126,87,194,0.3);
  color: #9fa8da;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
}
.dev-by-btn:hover {
  background: rgba(126,87,194,0.28);
  color: #edf2f9;
  border-color: rgba(126,87,194,0.5);
}

.mobile-menu-btn {
  display: none;
  color: white;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  background: linear-gradient(90deg, #3b4fa8, #5a60b4, #7568b8, #9470bc);
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu.show {
  display: block;
}

.mobile-menu a,
.mobile-menu button {
  display: block;
  width: 100%;
  text-align: left;
  color: white;
  padding: 12px 0;
  font-size: 16px;
  text-decoration: none;
  border: none;
  background: none;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
}

.mobile-menu a svg,
.mobile-menu button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mobile-login-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  padding: 12px !important;
  border-radius: 50px;
  margin-top: 16px;
}

.mobile-login-btn svg {
  width: 18px;
  height: 18px;
}

/* Hero Section */
.hero {
  min-height: 420px;
  position: relative;
  padding-top: 64px;
  overflow: hidden;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-color: #eef1f8;
}

.hero-bg {
  display: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 60px;
  width: 100%;
}

.hero-text {
  max-width: 520px;
}

.hero-image-wrap {
  display: none;
}

.hero-illustration {
  display: none;
}

.hero-title {
  font-size: 46px;
  font-weight: 800;
  color: #12173a;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-subtitle {
  color: #374151;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.5;
}

.hero-description {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.hero-description strong {
  color: #1f2937;
  font-weight: 600;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #1f2937;
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid #d1d5db;
  transition: all 0.2s;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
}

.btn-hero-outline:hover {
  border-color: #5c6bc0;
  color: #3949ab;
  background: #f5f7ff;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3b5fc0;
  color: white;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #2d4fb0;
  color: white;
}

.btn-primary svg, .btn-outline svg, .btn-purple svg {
  width: 20px;
  height: 20px;
}

.btn-outline {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #4B7BA4;
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: white;
  color: #333;
}

.btn-purple {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #5332B0;
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  transition: all 0.2s;
}

.btn-purple:hover {
  background: white;
  color: #333;
}

/* Why Section */
.why-section {
  background: linear-gradient(180deg, #e8eaf6 0%, #f5f5fc 100%);
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.why-left h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a2e;
}

.why-intro {
  color: #555;
  margin-bottom: 32px;
  font-size: 16px;
}

.why-intro strong {
  color: #3949ab;
}

/* Feature Cards */
.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #eee;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: #7e57c2;
}

.feature-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.feature-card p {
  font-size: 14px;
  color: #666;
}

/* Feature Menu (Mobile Accordion) */
.feature-menu {
  display: none;
}

.feature-accordion {
  width: 100%;
  background: white;
  border-radius: 12px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  overflow: hidden;
}

.feature-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px;
  background: white;
  text-align: left;
  transition: background 0.2s;
}

.feature-accordion-header:hover {
  background: #f8f9fa;
}

.feature-accordion-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-accordion-left svg {
  width: 24px;
  height: 24px;
  stroke: #7e57c2;
  flex-shrink: 0;
}

.feature-accordion-left span {
  font-weight: 500;
  color: #1a1a2e;
}

.feature-accordion-arrow {
  width: 20px;
  height: 20px;
  stroke: #888;
  transition: transform 0.3s;
}

.feature-accordion.open .feature-accordion-arrow {
  transform: rotate(180deg);
}

.feature-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px;
  background: #f8f9fa;
}

.feature-accordion.open .feature-accordion-content {
  max-height: 200px;
  padding: 16px;
}

.feature-accordion-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Join Card */
.join-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid #eee;
}

.join-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.green-text {
  color: #4caf50;
}

.join-card > p {
  color: #666;
  margin-bottom: 24px;
  font-size: 15px;
}

.benefits-list {
  list-style: none;
  margin-bottom: 24px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: #333;
}

.check-icon {
  width: 20px;
  height: 20px;
  background: rgba(126, 87, 194, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon::after {
  content: '';
  width: 8px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237e57c2' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}

.join-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-login {
  background: #1e3a5f;
  color: white;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 500;
  border: none;
  transition: all 0.2s;
}

.btn-login:hover {
  opacity: 0.9;
}

.btn-signup {
  background: #5332B0;
  color: white;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 500;
  border: none;
  transition: all 0.2s;
}

.btn-signup:hover {
  opacity: 0.9;
}

.free-text {
  font-size: 14px;
  color: #888;
  font-weight: 500;
  margin-bottom: 12px;
}

.free-list {
  list-style: none;
  margin-bottom: 24px;
}

.free-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
  padding: 4px 0;
}

.check-icon-gray {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

.copyright-small {
  font-size: 12px;
  color: #aaa;
}

/* Tools Section */
.tools-section {
  background: white;
  padding: 80px 0;
}

.tools-section h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: #1a1a2e;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.tool-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #eee;
  transition: box-shadow 0.2s, transform 0.2s;
}

.tool-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.tool-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.tool-icon svg {
  width: 100%;
  height: 100%;
  stroke: #7e57c2;
}

.tool-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.tool-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.tool-card ul {
  list-style: none;
}

.tool-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #666;
  padding: 6px 0;
}

.check {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237e57c2' stroke-width='2'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Home Stats Bar */
.hs-bar-wrap {
  background: #f8f9ff;
  border-top: 1px solid #e4e6f8;
  border-bottom: 1px solid #e4e6f8;
}
.hs-bar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  padding: 0 24px;
}
.hs-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 28px 16px;
}
.hs-num {
  font-size: 30px;
  font-weight: 800;
  color: #3b4fa8;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
  line-height: 1;
}
.hs-lbl {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8890b8;
}
.hs-div {
  width: 1px;
  background: #dde0f5;
  align-self: stretch;
  margin: 16px 0;
}
@media (max-width: 600px) {
  .hs-num { font-size: 22px; }
  .hs-stat { padding: 20px 8px; }
}

/* Community CTA Card */
.home-comm-card {
  margin: 48px 0 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #eef0fc 0%, #f5f5ff 50%, #ede8fc 100%);
  border: 1px solid rgba(59, 79, 168, 0.14);
  box-shadow: 0 4px 24px rgba(59, 79, 168, 0.08);
  overflow: hidden;
  position: relative;
}
.home-comm-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(59,79,168,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.home-comm-card-inner {
  padding: 40px 44px;
  position: relative;
  z-index: 1;
}
.home-comm-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 79, 168, 0.08);
  border: 1px solid rgba(59, 79, 168, 0.16);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #3b4fa8;
  margin-bottom: 20px;
}
.home-comm-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #3b4fa8;
  flex-shrink: 0;
}
.home-comm-h {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 14px;
  line-height: 1.25;
}
.home-comm-h em {
  font-style: italic;
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-comm-p {
  font-size: 15px;
  color: #555;
  margin: 0 0 28px;
  max-width: 500px;
  line-height: 1.6;
}
.home-comm-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.home-comm-btn-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #3b4fa8, #6068b8);
  color: #fff;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(59, 79, 168, 0.28);
}
.home-comm-btn-p svg {
  width: 16px; height: 16px;
  transition: transform 0.2s;
}
.home-comm-btn-p:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.home-comm-btn-p:hover svg {
  transform: translateX(3px);
}
.home-comm-btn-g {
  display: inline-flex;
  align-items: center;
  color: #3b4fa8;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 10px;
  border: 1px solid rgba(59, 79, 168, 0.25);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.home-comm-btn-g:hover {
  color: #fff;
  background: #3b4fa8;
  border-color: transparent;
}
@media (max-width: 600px) {
  .home-comm-card-inner { padding: 28px 22px; }
  .home-comm-h { font-size: 22px; }
  .home-comm-pill { font-size: 10px; }
  .home-comm-btn-p, .home-comm-btn-g { width: 100%; justify-content: center; }
  .home-comm-btns { flex-direction: column; }
}

.cta-section {
  text-align: center;
}

.cta-section h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a2e;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-signup-cta {
  background: linear-gradient(90deg, #3949ab, #5c6bc0, #7e57c2);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.btn-signup-cta:hover {
  opacity: 0.9;
}

.btn-explore-cta {
  background: white;
  color: #3949ab;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #ddd;
  transition: background 0.2s;
}

.btn-explore-cta:hover {
  background: #f5f5f5;
}

.verified-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #888;
}

.green-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  background: #4caf50;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Page Content (for pages without hero) */
.page-content {
  min-height: calc(100vh - 88px - 64px);
  padding-top: 100px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #e8eaf6 0%, #f5f5fc 100%);
}

.page-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
}


/* Responsive */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .login-btn, .user-menu-wrapper {
    display: none;
  }

  .nav-container {
    justify-content: flex-start;
    gap: 8px;
  }

  .logo {
    margin-right: auto;
  }

  .notification-bell {
    margin-right: 0;
    width: 34px;
    height: 34px;
  }

  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    min-height: auto;
    padding-top: 60px;
    background-position: 75% center;
    background-size: cover;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(238,241,248,0.82) 0%,
      rgba(238,241,248,0.65) 50%,
      rgba(238,241,248,0.45) 100%
    );
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 36px 24px 44px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    position: relative;
    z-index: 2;
  }

  .hero-title {
    font-size: 26px;
    max-width: 100%;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .hero-title br { display: none; }

  .hero-subtitle {
    font-size: 13px;
    text-align: center;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 13.5px;
    margin-bottom: 28px;
    max-width: 100%;
    text-align: center;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .btn-primary, .btn-outline, .btn-purple, .btn-hero-outline {
    padding: 9px 10px;
    font-size: 11px;
    gap: 4px;
    justify-content: center;
    border-radius: 7px;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
  }

  .btn-primary svg, .btn-outline svg, .btn-purple svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
  
  .feature-cards {
    display: none;
  }
  
  .feature-menu {
    display: block;
  }
  
  .join-buttons {
    flex-direction: column;
  }
  
  .btn-login, .btn-signup {
    width: 100%;
    text-align: center;
  }
  
  .why-section, .tools-section {
    padding: 48px 0;
  }
  
  .why-left h2, .tools-section h2 {
    font-size: 24px;
  }
  
  .join-card h3 {
    font-size: 20px;
  }

  .join-card {
    padding: 24px 16px;
  }
  
  .cta-section h3 {
    font-size: 22px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-signup-cta, .btn-explore-cta {
    width: 100%;
  }

  .page-content {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .page-content h1 {
    font-size: 32px;
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }

  .footer {
    padding: 20px 16px;
  }

  .footer p {
    font-size: 12px;
  }

  .tool-card {
    padding: 16px;
  }

  .tool-card h4 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 28px 20px 36px;
  }

  .hero-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .hero-description {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .btn-primary, .btn-outline, .btn-purple, .btn-hero-outline {
    padding: 8px 8px;
    font-size: 10px;
  }

  .nav-container {
    padding: 0 12px;
    height: 56px;
  }

  .logo {
    font-size: 18px;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }

  .why-left h2, .tools-section h2 {
    font-size: 20px;
  }

  .cta-section h3 {
    font-size: 20px;
  }

  .hs-num { font-size: 20px; }
  .hs-lbl { font-size: 9px; letter-spacing: 0.06em; }
  .hs-stat { padding: 18px 6px; }
}

.cart-bell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: white;
  cursor: pointer;
  text-decoration: none;
  margin-right: 6px;
  transition: background 0.2s, transform 0.2s;
}

.cart-bell:hover {
  background: rgba(255,255,255,0.28);
  transform: scale(1.08);
}

.cart-bell:active {
  transform: scale(0.95);
}

.cart-bell svg {
  width: 19px;
  height: 19px;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #7e57c2;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 20px;
  min-width: 8px;
  text-align: center;
  line-height: 1.2;
}

.notification-bell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: white;
  cursor: pointer;
  text-decoration: none;
  margin-right: 6px;
  transition: background 0.2s, transform 0.2s;
}

.notification-bell:hover {
  background: rgba(255,255,255,0.28);
  transform: scale(1.08);
}

.notification-bell:active {
  transform: scale(0.95);
}

.notification-bell svg {
  width: 19px;
  height: 19px;
}

.notification-bell .notif-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  line-height: 14px;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
}

.mobile-notifications-link {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.mobile-notif-badge {
  background: #ef4444;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 20px;
  text-align: center;
  line-height: 16px;
  margin-left: auto;
}

.user-menu-wrapper {
  position: relative;
}

.user-avatar-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  font-family: 'Outfit', sans-serif;
}

.user-avatar-btn:hover {
  background: rgba(255,255,255,0.3);
}

.user-avatar-btn svg {
  width: 18px;
  height: 18px;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  min-width: 220px;
  overflow: hidden;
  display: none;
  z-index: 200;
}

.user-dropdown.show {
  display: block;
}

.user-dropdown-header {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
}

.user-dropdown-header strong {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #1e293b;
  font-size: 14px;
  word-break: break-all;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 2px;
}

.user-dropdown-header span {
  font-size: 12px;
  color: #94a3b8;
}

.user-dropdown a,
.user-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  color: #374151;
  font-size: 14px;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: background 0.2s;
}

.user-dropdown a:hover,
.user-dropdown button:hover {
  background: #f8f9fa;
}

.user-dropdown .logout-item {
  color: #dc2626;
  border-top: 1px solid #f1f5f9;
}

.mobile-user-info {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 8px;
}

.mobile-user-email {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

.mobile-logout-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.2) !important;
  padding: 12px !important;
  border-radius: 50px;
  margin-top: 16px;
}

.mobile-logout-btn svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  min-height: 18px;
  max-width: 18px;
  max-height: 18px;
  flex-shrink: 0;
}

.global-back-wrap {
  position: relative;
  height: 0;
  overflow: visible;
  z-index: 90;
}
.global-back-btn {
  position: absolute;
  top: 72px;
  left: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.global-back-btn:hover {
  background: #f1f0fb;
  box-shadow: 0 4px 14px rgba(126,87,194,0.15);
  transform: scale(1.08);
}
.global-back-btn svg {
  width: 18px;
  height: 18px;
  color: #7e57c2;
}
@media (max-width: 768px) {
  .global-back-btn {
    left: 10px;
    top: 66px;
    width: 32px;
    height: 32px;
  }
  .global-back-btn svg {
    width: 16px;
    height: 16px;
  }
}


/* ═══════════════════════════
   NEW SITE FOOTER
═══════════════════════════ */

/* Footer CSS variables */
:root {
  --ft-1:#141834; --ft-2:#1a2045; --ft-3:#222a58; --ft-4:#28305e; --ft-5:#2a2a5c; --ft-6:#2e2860;
  --t-white:#ffffff; --t-bright:#eef0fa; --t-light:#c8cde5; --t-body:#a3aacf;
  --t-secondary:#8890b8; --t-muted:#6b74a0; --t-dim:#525c88; --t-faint:#3f4870;
  --lk-color:#c5b3e8;
  --border-1:rgba(96,104,184,0.06); --border-2:rgba(96,104,184,0.10); --border-3:rgba(96,104,184,0.16);
  --gold:#C8922A; --gold-h:#E8B84B;
  --green:#34d399; --blue:#60a5fa; --red:#ef4444; --lav:#b39ddb;
  --font-h:'DM Serif Display',Georgia,serif;
  --font-b:'Outfit',-apple-system,BlinkMacSystemFont,sans-serif;
  --ease:cubic-bezier(0.16,1,0.3,1);
  --spring:cubic-bezier(0.34,1.56,0.64,1);
}

.ft {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 8% 12%, rgba(59,79,168,0.09), transparent 60%),
    radial-gradient(ellipse 50% 45% at 92% 80%, rgba(148,112,188,0.07), transparent 55%),
    radial-gradient(ellipse 35% 30% at 50% 45%, rgba(96,104,184,0.04), transparent 45%),
    linear-gradient(155deg, var(--ft-1) 0%, var(--ft-2) 18%, var(--ft-3) 35%, var(--ft-4) 50%, var(--ft-5) 68%, var(--ft-6) 82%, var(--ft-1) 100%);
  font-family: var(--font-b);
}

/* Accent line */
.ft-accent { height: 2px; background: linear-gradient(90deg, #3b4fa8, #6068b8, #9470bc); position: relative; overflow: hidden; }
.ft-accent::after {
  content: ''; position: absolute; top: 0; left: -160px; width: 160px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: ft-shim 5s ease-in-out infinite;
}
@keyframes ft-shim { 0% { left: -160px; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { left: calc(100% + 160px); opacity: 0; } }

/* Orbs */
.ft-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; will-change: transform; }
.ft-orb:nth-child(2) { width: 700px; height: 700px; top: -30%; left: -12%; background: radial-gradient(circle, rgba(59,79,168,0.08), transparent 65%); animation: ft-dr 28s ease-in-out infinite alternate; }
.ft-orb:nth-child(3) { width: 550px; height: 550px; bottom: -22%; right: -6%; background: radial-gradient(circle, rgba(148,112,188,0.06), transparent 60%); animation: ft-dr 24s ease-in-out infinite alternate-reverse; }
.ft-orb:nth-child(4) { width: 350px; height: 350px; top: 35%; left: 42%; background: radial-gradient(circle, rgba(96,104,184,0.04), transparent 55%); animation: ft-dr 20s ease-in-out infinite alternate; }
@keyframes ft-dr { 0% { transform: translate(0,0) scale(1); } 33% { transform: translate(18px,-12px) scale(1.02); } 66% { transform: translate(-12px,18px) scale(.98); } 100% { transform: translate(10px,-8px) scale(1.01); } }

/* Grid */
.ft-grd {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: linear-gradient(rgba(96,104,184,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(96,104,184,0.015) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(ellipse 55% 50% at 50% 50%, black 25%, transparent 70%);
}

.ft-in { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* Hero */
.ft-hero { display: grid; grid-template-columns: 1fr; gap: 0; align-items: start; padding: 72px 0 56px; }
.ft-brand { display: flex; flex-direction: column; gap: 24px; }

.ft-logo { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; width: fit-content; transition: transform .5s var(--spring); }
.ft-logo:hover { transform: translateY(-2px); }
.ft-logo-m {
  width: 52px; height: 52px; border-radius: 16px; flex-shrink: 0;
  background: linear-gradient(135deg, #3b4fa8, #6068b8, #9470bc);
  display: flex; align-items: center; justify-content: center; position: relative;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 6px 24px rgba(59,79,168,0.22);
}
.ft-logo-m::before { content: ''; position: absolute; inset: 0; border-radius: 16px; background: linear-gradient(155deg, rgba(255,255,255,0.12), transparent 50%); }
.ft-logo:hover .ft-logo-m { box-shadow: 0 0 0 1px rgba(255,255,255,0.10) inset, 0 10px 36px rgba(59,79,168,0.30); transform: rotate(-3deg) scale(1.04); }
.ft-logo-m svg { width: 26px; height: 26px; fill: #fff; position: relative; z-index: 1; }
.ft-logo-t { display: flex; flex-direction: column; gap: 2px; }
.ft-logo-n { font-family: var(--font-h); font-size: 1.65rem; color: #fff; line-height: 1; letter-spacing: -0.03em; }
.ft-logo-n i { color: var(--lk-color); font-style: italic; opacity: .72; }
.ft-logo-s { font-size: 0.62rem; color: var(--t-muted); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

.ft-desc { font-size: 0.92rem; font-weight: 400; color: var(--t-body); line-height: 1.75; max-width: 440px; }
.ft-note { font-size: 0.8rem; font-weight: 400; color: var(--t-secondary); font-style: italic; }
.ft-note a { color: var(--t-secondary); text-decoration: none; transition: color .3s; }
.ft-note a:hover { color: var(--t-light); }

.ft-trust {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: 14px;
  background: rgba(59,79,168,0.05); border: 1px solid var(--border-1); max-width: 460px;
}
.ft-trust-i {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(59,79,168,0.06); border: 1px solid var(--border-1);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.ft-trust-t { font-size: 0.74rem; font-weight: 400; color: var(--t-muted); line-height: 1.6; }

/* Socials */
.ft-soc { display: flex; gap: 7px; }
.ft-soc a {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px; background: rgba(59,79,168,0.06); border: 1px solid var(--border-1);
  color: var(--t-muted); text-decoration: none; transition: all .45s var(--ease); position: relative; overflow: hidden;
}
.ft-soc a::before { content: ''; position: absolute; inset: 0; border-radius: 11px; opacity: 0; transition: opacity .4s; }
.ft-soc a:nth-child(1)::before { background: linear-gradient(135deg, rgba(255,0,0,.07), transparent 70%); }
.ft-soc a:nth-child(2)::before { background: linear-gradient(135deg, rgba(0,136,204,.07), transparent 70%); }
.ft-soc a:nth-child(3)::before { background: linear-gradient(135deg, rgba(59,79,168,.08), transparent 70%); }
.ft-soc a:nth-child(4)::before { background: linear-gradient(135deg, rgba(148,112,188,.08), transparent 70%); }
.ft-soc a:hover { color: var(--t-white); border-color: var(--border-2); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(59,79,168,0.12); }
.ft-soc a:hover::before { opacity: 1; }
.ft-soc svg { width: 15px; height: 15px; fill: currentColor; position: relative; z-index: 1; }

/* CTA card */
.ft-cta {
  width: 350px; flex-shrink: 0; padding: 28px 24px; border-radius: 20px;
  background: linear-gradient(145deg, rgba(59,79,168,0.07), rgba(96,104,184,0.04), rgba(148,112,188,0.03));
  border: 1px solid var(--border-1); display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden; transition: all .5s var(--ease);
}
.ft-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent); }
.ft-cta::after { content: ''; position: absolute; top: 0; right: 0; width: 180px; height: 180px; background: radial-gradient(circle at top right, rgba(59,79,168,0.06), transparent 70%); pointer-events: none; }
.ft-cta:hover { border-color: var(--border-2); box-shadow: 0 20px 60px rgba(59,79,168,0.08); transform: translateY(-2px); }
.ft-cta-pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 11px; border-radius: 999px; width: fit-content;
  background: rgba(59,79,168,0.08); border: 1px solid rgba(96,104,184,0.12);
  font-size: 0.62rem; font-weight: 700; color: rgba(156,164,210,0.85); text-transform: uppercase; letter-spacing: .08em;
}
.ft-cta-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: ft-dp 2.5s ease-in-out infinite; }
@keyframes ft-dp { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.6); } }
.ft-cta-h { font-family: var(--font-h); font-size: 1.3rem; color: var(--t-white); line-height: 1.3; letter-spacing: -0.02em; position: relative; z-index: 1; }
.ft-cta-h em { color: var(--lk-color); font-style: italic; }
.ft-cta-p { font-size: 0.82rem; font-weight: 400; color: var(--t-body); line-height: 1.55; position: relative; z-index: 1; }
.ft-cta-btns { display: flex; gap: 8px; position: relative; z-index: 1; }
.ft-b {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 11px;
  font-family: var(--font-b); font-size: 0.82rem; font-weight: 600; text-decoration: none; border: none; cursor: pointer;
  transition: all .4s var(--ease); position: relative; overflow: hidden;
}
.ft-b svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s; }
.ft-b:hover svg { transform: translateX(3px); }
.ft-b--p { background: linear-gradient(135deg, #3b4fa8, #6068b8, #9470bc); color: #fff; box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 4px 18px rgba(59,79,168,0.22); }
.ft-b--p::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.10), transparent 50%); opacity: 0; transition: opacity .3s; }
.ft-b--p:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,255,255,0.10) inset, 0 12px 40px rgba(59,79,168,0.28); }
.ft-b--p:hover::before { opacity: 1; }
.ft-b--g { background: rgba(59,79,168,0.05); border: 1px solid var(--border-1); color: var(--t-body); }
.ft-b--g:hover { background: rgba(96,104,184,0.08); border-color: var(--border-2); color: var(--t-white); transform: translateY(-2px); }

/* Separator */
.ft-sep { height: 1px; background: var(--border-1); }

/* Columns */
.ft-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; padding: 48px 0; }
.ft-col { display: flex; flex-direction: column; gap: 18px; padding: 0 40px; border-right: 1px solid var(--border-1); }
.ft-col:first-child { padding-left: 0; }
.ft-col:last-child { padding-right: 0; border-right: none; }
.ft-col-h { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 2px; }
.ft-col-h-left { display: flex; align-items: center; gap: 8px; }
.ft-col-h-ln { width: 14px; height: 1.5px; background: rgba(96,104,184,0.20); border-radius: 1px; }
.ft-col-h-t { font-size: 0.65rem; font-weight: 700; color: var(--t-muted); text-transform: uppercase; letter-spacing: .13em; }
.ft-col-chev { display: none; width: 18px; height: 18px; flex-shrink: 0; fill: none; stroke: var(--t-faint); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .35s var(--ease); }
.ft-col.open .ft-col-chev { transform: rotate(180deg); }
.ft-col-ls { list-style: none; display: flex; flex-direction: column; gap: 4px; }

/* Source cards */
.ft-src {
  display: flex; align-items: center; gap: 12px; padding: 13px 14px; border-radius: 13px;
  background: rgba(59,79,168,0.04); border: 1px solid var(--border-1);
  transition: all .45s var(--ease); cursor: default; position: relative; overflow: hidden;
}
.ft-src::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .45s; }
.ft-src:nth-child(1)::before { background: linear-gradient(135deg, rgba(16,185,129,0.04), transparent 60%); }
.ft-src:nth-child(2)::before { background: linear-gradient(135deg, rgba(59,130,246,0.04), transparent 60%); }
.ft-src:nth-child(3)::before { background: linear-gradient(135deg, rgba(148,112,188,0.04), transparent 60%); }
.ft-src:hover { border-color: var(--border-2); transform: translateY(-2px) translateX(3px); box-shadow: 0 6px 20px rgba(0,0,0,0.10); }
.ft-src:hover::before { opacity: 1; }
.ft-src-i { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; transition: transform .45s var(--spring); }
.ft-src:hover .ft-src-i { transform: scale(1.10) rotate(-3deg); }
.ft-src-i--g { background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.08); }
.ft-src-i--b { background: rgba(59,130,246,0.06); border: 1px solid rgba(59,130,246,0.08); }
.ft-src-i--p { background: rgba(148,112,188,0.06); border: 1px solid rgba(148,112,188,0.08); }
.ft-src-inf { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.ft-src-n { font-size: 0.82rem; font-weight: 500; color: var(--t-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ft-src-s { font-size: 0.64rem; font-weight: 400; color: var(--t-muted); }

.ft-bdg { display: inline-flex; align-items: center; gap: 4px; padding: 3px 9px; border-radius: 999px; font-size: 0.56rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; flex-shrink: 0; }
.ft-bdg-d { width: 4px; height: 4px; border-radius: 50%; animation: ft-dp 2.5s ease-in-out infinite; }
.ft-bdg--g { background: rgba(16,185,129,0.06); color: var(--green); border: 1px solid rgba(16,185,129,0.12); }
.ft-bdg--g .ft-bdg-d { background: var(--green); }
.ft-bdg--b { background: rgba(59,130,246,0.06); color: var(--blue); border: 1px solid rgba(59,130,246,0.12); }
.ft-bdg--b .ft-bdg-d { background: var(--blue); }
.ft-bdg--p { background: rgba(148,112,188,0.06); color: var(--lav); border: 1px solid rgba(148,112,188,0.12); }
.ft-bdg--p .ft-bdg-d { background: var(--lav); }

/* Nav links in footer columns */
.ft-lnk {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 14px; border-radius: 10px;
  font-size: 0.87rem; font-weight: 400; color: var(--t-body); text-decoration: none;
  transition: all .32s var(--ease); position: relative;
}
.ft-lnk::before { content: ''; position: absolute; left: 0; top: 22%; bottom: 22%; width: 0; background: #6068b8; border-radius: 0 2px 2px 0; transition: width .32s var(--ease); opacity: .55; }
.ft-lnk:hover { color: var(--t-white); background: rgba(59,79,168,0.07); padding-left: 20px; font-weight: 500; }
.ft-lnk:hover::before { width: 2.5px; }
.ft-lnk svg { width: 14px; height: 14px; fill: currentColor; opacity: .28; flex-shrink: 0; transition: all .3s; }
.ft-lnk:hover svg { opacity: .65; transform: scale(1.06); }

/* Donate link */
.ft-lnk--d { color: var(--gold); font-weight: 600; background: rgba(200,146,42,0.03); border: 1px solid rgba(200,146,42,0.08); margin-top: 4px; }
.ft-lnk--d::before { display: none; }
.ft-lnk--d:hover { color: var(--gold-h); background: rgba(200,146,42,0.06); border-color: rgba(232,184,75,0.15); padding-left: 13px; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(200,146,42,0.05); }
.ft-lnk--d .ft-h { display: inline-flex; font-size: 0.82rem; color: var(--red); animation: ft-hb 2.5s ease-in-out infinite; }
@keyframes ft-hb { 0%, 100% { transform: scale(1); } 30% { transform: scale(1.16); } 60% { transform: scale(.94); } }

/* Community card */
.ft-comm {
  padding: 16px; border-radius: 16px;
  background: linear-gradient(145deg, rgba(59,79,168,0.06), rgba(96,104,184,0.03));
  border: 1px solid var(--border-1); display: flex; flex-direction: column; gap: 10px;
  transition: all .4s var(--ease);
}
.ft-comm:hover { border-color: var(--border-2); box-shadow: 0 8px 24px rgba(59,79,168,0.06); }
.ft-comm-h { font-size: 0.7rem; font-weight: 700; color: var(--t-muted); text-transform: uppercase; letter-spacing: .1em; }
.ft-comm-a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 11px;
  background: rgba(59,79,168,0.04); border: 1px solid var(--border-1);
  text-decoration: none; transition: all .35s var(--ease);
}
.ft-comm-a:hover { background: rgba(59,79,168,0.08); border-color: var(--border-2); transform: translateX(3px); }
.ft-comm-i { width: 32px; height: 32px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ft-comm-i svg { width: 16px; height: 16px; fill: currentColor; }
.ft-comm-i--tg { background: rgba(0,136,204,0.08); border: 1px solid rgba(0,136,204,0.12); color: #60a5fa; }
.ft-comm-t { display: flex; flex-direction: column; gap: 1px; }
.ft-comm-n { font-size: 0.82rem; font-weight: 500; color: var(--t-light); }
.ft-comm-s { font-size: 0.65rem; color: var(--t-muted); }

/* Stats */
.ft-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border-1); border-radius: 16px; overflow: hidden; border: 1px solid var(--border-1); }
.ft-stat { display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 24px 14px; background: var(--ft-1); transition: background .4s; }
.ft-stat:hover { background: var(--ft-2); }
.ft-stat-n { font-family: var(--font-h); font-size: 1.7rem; color: var(--t-bright); letter-spacing: -0.03em; line-height: 1; }
.ft-stat-n .p { font-size: 1rem; color: var(--lk-color); opacity: .7; }
.ft-stat-l { font-size: 0.7rem; font-weight: 500; color: var(--t-muted); text-transform: uppercase; letter-spacing: .08em; }

/* Bottom bar */
.ft-bot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0 20px; border-top: 1px solid var(--border-2); gap: 12px; flex-wrap: wrap;
}
.ft-bot-ls { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ft-bot-a {
  font-size: 0.8rem; font-weight: 500; color: var(--t-secondary);
  text-decoration: none; letter-spacing: 0.01em; position: relative; padding-bottom: 1px; transition: color .3s;
}
.ft-bot-a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--t-light); transition: width .3s var(--ease); }
.ft-bot-a:hover { color: var(--t-light); }
.ft-bot-a:hover::after { width: 100%; }
.ft-bot-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(136,144,184,0.35); flex-shrink: 0; }
.ft-bot-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0; }
.ft-copy { font-size: 0.75rem; font-weight: 500; color: var(--t-secondary); letter-spacing: 0.01em; }
.ft-copy--center { text-align: center; width: 100%; padding-bottom: 28px; font-size: 0.68rem; color: var(--t-secondary); opacity: .85; }
.ft-dev { font-size: 0.68rem; font-weight: 400; color: var(--t-secondary); letter-spacing: 0.01em; font-style: italic; text-align: center; padding-bottom: 2px; width: 100%; opacity: .9; text-decoration: none; display: inline-block; transition: color .3s; }
.ft-dev a { color: var(--t-secondary); text-decoration: none; transition: color .3s; }
.ft-dev:hover, .ft-dev a:hover { color: #b0b8d8; text-decoration: underline; }
.ft-dev-tag { font-style: normal; font-family: monospace; font-size: 0.70rem; color: var(--t-secondary); opacity: 1; }
.ft-emp {
  font-size: 0.8rem; font-weight: 500; color: var(--t-body); font-style: italic;
  display: flex; align-items: center; gap: 6px; letter-spacing: 0.01em;
}
.ft-emp svg { width: 13px; height: 13px; fill: var(--red); opacity: .75; flex-shrink: 0; }

/* Inner-page footer */
.ft-inner { position:relative; overflow:hidden; font-family:var(--font-b);
  background: radial-gradient(ellipse 70% 55% at 8% 12%,rgba(59,79,168,0.09),transparent 60%), radial-gradient(ellipse 50% 45% at 92% 80%,rgba(148,112,188,0.07),transparent 55%), linear-gradient(155deg,var(--ft-1) 0%,var(--ft-2) 18%,var(--ft-3) 35%,var(--ft-4) 50%,var(--ft-5) 68%,var(--ft-6) 82%,var(--ft-1) 100%);
}
.ft-inner .ft-accent { height:2px; background:linear-gradient(90deg,#3b4fa8,#6068b8,#9470bc); position:relative; overflow:hidden; }
.ft-inner .ft-accent::after { content:''; position:absolute; top:0; left:-180px; width:180px; height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.45),transparent); animation:ftShim 5s ease-in-out infinite; }
@keyframes ftShim { 0%{left:-180px;opacity:0} 10%{opacity:1} 90%{opacity:1} 100%{left:calc(100% + 180px);opacity:0} }
.ft-inner .ft-inner-wrap { position:relative; z-index:1; max-width:1240px; margin:0 auto; padding:0 40px; }
.ft-inner .ft-body { display:flex; flex-direction:column; align-items:center; text-align:center; padding:20px 0 12px; gap:10px; }
.ft-inner .ft-findus-row { display:flex; flex-direction:column; align-items:center; gap:8px; }
.ft-inner .ft-findus { font-size:0.6rem; font-weight:700; color:var(--t-faint); text-transform:uppercase; letter-spacing:.14em; white-space:nowrap; }
.ft-inner .ft-soc { display:flex; align-items:center; gap:8px; }
.ft-inner .ft-soc-a { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:10px; background:rgba(96,104,184,0.07); border:1px solid rgba(96,104,184,0.12); color:var(--t-secondary); text-decoration:none; transition:all .3s var(--ease); }
.ft-inner .ft-soc-a:hover { color:var(--t-light); background:rgba(96,104,184,0.14); border-color:rgba(96,104,184,0.22); transform:translateY(-2px); }
.ft-inner .ft-soc-a svg { width:17px; height:17px; fill:currentColor; }
.ft-inner .ft-links { display:flex; align-items:center; justify-content:center; gap:6px; flex-wrap:wrap; }
.ft-inner .ft-lnk-s { font-size:0.78rem; font-weight:400; color:var(--t-muted); text-decoration:none; transition:color .3s; padding:2px 4px; }
.ft-inner .ft-lnk-s:hover { color:var(--t-light); }
.ft-inner .ft-lnk-s--d { color:var(--gold); font-weight:500; }
.ft-inner .ft-lnk-s--d:hover { color:var(--gold-h); }
.ft-inner .ft-dot { width:3px; height:3px; border-radius:50%; background:rgba(136,144,184,0.3); flex-shrink:0; }
.ft-inner .ft-strip { border-top:1px solid var(--border-2); padding:10px 0 14px; display:flex; flex-direction:column; align-items:center; gap:4px; }
.ft-inner .ft-strip .ft-copy { font-size:0.78rem; font-weight:400; color:var(--t-secondary); }
.ft-inner .ft-strip .ft-dev { font-size:0.65rem; color:var(--t-secondary); font-style:italic; opacity:.9; }
.ft-inner .ft-strip .ft-dev-tag { font-style:normal; font-family:monospace; opacity:1; }
.ft-inner .ft-strip .ft-dev a { color:var(--t-secondary); text-decoration:none; transition:color .3s; }
.ft-inner .ft-strip .ft-dev a:hover { color:#b0b8d8; text-decoration:underline; }
.ft-top { position:fixed; bottom:24px; right:20px; z-index:999; width:38px; height:38px; border-radius:12px; border:none; cursor:pointer; background:linear-gradient(135deg,#3b4fa8,#6068b8,#9470bc); box-shadow:0 4px 16px rgba(59,79,168,0.30); display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transform:translateY(10px) scale(.9); transition:opacity .4s var(--ease),transform .4s var(--ease); }
.ft-top.show { opacity:1; pointer-events:auto; transform:none; }
.ft-top:hover { transform:translateY(-2px); box-shadow:0 10px 28px rgba(59,79,168,0.38); }
.ft-top svg { width:15px; height:15px; fill:none; stroke:#fff; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; }
@media (max-width:600px) {
  .ft-inner .ft-inner-wrap { padding:0 20px; }
  .ft-inner .ft-soc { gap:16px; flex-wrap:wrap; }
}


/* Animations */
.ft-rv { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.ft-rv.v { opacity: 1; transform: none; }
.ft-rv-1 { transition-delay: .05s; } .ft-rv-2 { transition-delay: .10s; } .ft-rv-3 { transition-delay: .15s; } .ft-rv-4 { transition-delay: .20s; }

/* Responsive */
@media (max-width: 1060px) {
  .ft-hero { grid-template-columns: 1fr; gap: 32px; }
  .ft-cta { width: 100%; max-width: 460px; }
}
@media (max-width: 840px) {
  .ft-cols { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .ft-col:nth-child(1) { grid-column: 1/-1; padding: 0 0 28px !important; border-right: none; border-bottom: 1px solid var(--border-1); }
  .ft-col:nth-child(2) { padding-left: 0 !important; padding-top: 0; }
  .ft-col:nth-child(3) { padding-right: 0 !important; padding-top: 0; }
}
@media (max-width: 600px) {
  .ft-in { padding: 0 18px; }
  .ft-hero { padding: 48px 0 20px; gap: 24px; }
  .ft-logo-n { font-size: 1.4rem; }
  .ft-desc { max-width: 100%; }
  .ft-trust { max-width: 100%; }
  .ft-cols { grid-template-columns: 1fr; gap: 0; padding: 10px 0; }
  .ft-col { padding: 0 !important; border-right: none !important; border-bottom: 1px solid var(--border-1); gap: 0; }
  .ft-col:last-child { border-bottom: none; }
  .ft-col-h { cursor: pointer; padding: 13px 4px; user-select: none; -webkit-tap-highlight-color: transparent; }
  .ft-col-chev { display: block; }
  .ft-col-ls { max-height: 0; overflow: hidden; padding-bottom: 0; transition: max-height .4s var(--ease), padding-bottom .3s; }
  .ft-col.open .ft-col-ls { max-height: 600px; padding-bottom: 13px; }
  .ft-stats { grid-template-columns: 1fr; border-radius: 12px; }
  .ft-stat { padding: 18px 12px; }
  .ft-stat-n { font-size: 1.4rem; }
  .ft-bot { flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 20px 0 32px; }
  .ft-bot-ls, .ft-bot-right { justify-content: center; align-items: center; }
}

/* ---- Universal Lock Icon Toggle System ---- */
.lock-icon-unlocked { display: block; }
.lock-icon-locked   { display: none;  }
.in-cart .lock-icon-unlocked { display: none;  }
.in-cart .lock-icon-locked   { display: block; }
/* ------------------------------------------- */
