/* Thematic components and sections */

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; gap: 16px; padding: 16px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-color); border-radius: var(--radius-24); box-shadow: var(--shadow-elev-2), var(--shadow-inset); }
.hero-copy .sub { font-size: 1.05rem; }
.hero-copy .bullets { color: #c8cde0; font-weight: 500; }
.hero .actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.converter { margin-top: 16px; padding: 12px; display: grid; gap: 10px; }
.converter .row { display: grid; gap: 6px; align-items: center; grid-template-columns: 1fr; }
.converter .result { grid-template-columns: auto 1fr; align-items: center; }
.converter .label { color: var(--color-text-2); }
.converter [data-skeleton] { opacity: 0.7; }
.converter label svg { display: inline-block; width: 18px; height: 18px; margin-right: 6px; vertical-align: -3px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.35)); }
.converter .inr-icon { display: inline-flex; align-items: center; gap: 8px; }
.converter .inr-icon svg { width: 20px; height: 20px; }
.hero-visual { display: grid; place-items: center; }
.hero-svg { width: 100%; max-width: 560px; filter: drop-shadow(0 20px 60px rgba(0,0,0,.6)); }

/* Floating symbol cloud (rails + assets) */
.symbol-cloud { position: absolute; inset: 0; pointer-events: none; opacity: .7; }
.symbol { position: absolute; display: grid; place-items: center; padding: 6px 10px; border-radius: 9999px; background: rgba(255,255,255,0.04); border: 1px solid var(--border-color); box-shadow: var(--shadow-elev-1), var(--shadow-inset); font-weight: 600; color: var(--color-text-1); }
.symbol svg { width: 22px; height: 22px; }
.symbol.upi { top: 8%; right: 6%; animation: cloudFloat 14s ease-in-out infinite alternate; }
.symbol.imps { top: 24%; right: 12%; animation: cloudFloat 16s ease-in-out infinite alternate-reverse; }
.symbol.inr { bottom: 10%; right: 8%; animation: cloudFloat 15s ease-in-out infinite alternate; }
.symbol.usdt { top: 16%; right: 24%; animation: cloudFloat 17s ease-in-out infinite alternate; }
.symbol.eth { bottom: 22%; right: 18%; animation: cloudFloat 18s ease-in-out infinite alternate-reverse; }
.symbol.btc { top: 36%; right: 2%; animation: cloudFloat 20s ease-in-out infinite alternate; }

@keyframes cloudFloat { from { transform: translateY(0) translateX(0); } to { transform: translateY(-10px) translateX(8px); } }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; } }

/* Floating mini chips in hero */
.hero .float-chips { position: absolute; inset: 0; pointer-events: none; opacity: .6; }
.hero .float-chips .chip { position: absolute; }
.hero .float-chips .chip.upi { top: 8%; left: 8%; animation: float-orbs 16s ease-in-out infinite alternate; }
.hero .float-chips .chip.imps { bottom: 12%; left: 14%; animation: float-orbs 14s ease-in-out infinite alternate-reverse; }
.hero .float-chips .chip.rupay { top: 18%; right: 12%; animation: float-orbs 15s ease-in-out infinite alternate; }

/* Trust */
.trust-container { display: grid; gap: 14px; justify-items: center; }
.trust-title { color: var(--color-text-2); font-weight: 600; letter-spacing: .2px; position: relative; }
.trust-title::after { content: ""; display: block; height: 2px; width: 180px; margin: 8px auto 0; border-radius: 9999px; background-image: var(--gradient-brand); opacity: .65; filter: blur(.2px); }
.trust-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; padding: 8px; margin: 0; justify-content: center; }
.trust .chip { position: relative; padding: 10px 14px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.03); border: 1px solid var(--border-color); box-shadow: var(--shadow-elev-1), var(--shadow-inset); transition: transform .18s ease, box-shadow .18s ease; }
.trust .chip::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: var(--gradient-brand); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .5; pointer-events: none; }
.trust .chip:hover { transform: translateY(-2px); box-shadow: 0 0 0 2px rgba(255,255,255,0.06), var(--shadow-elev-1); }
.trust .chip .icon-3d { width: 32px; height: 32px; font-size: 16px; border-radius: 10px; }

/* Features */
.features .card { min-height: 148px; }
.features .card h3 { margin-top: 6px; }

/* Timeline (Premium style) */
.timeline-grid { display: grid; gap: 18px; }
.how-wrap { position: relative; border-radius: var(--radius-24); padding-top: 18px; isolation: isolate; }
.how-rail { position: absolute; inset: 18px 0 auto 0; height: 120px; z-index: 0; pointer-events: none; }
.how-rail svg { width: 100%; height: 100%; display: block; filter: drop-shadow(0 12px 28px rgba(0,0,0,.4)); opacity: .9; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; position: relative; z-index: 1; }
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(5, minmax(180px, 1fr)); }
}
@media (max-width: 799.9px) {
  .steps { grid-auto-flow: column; grid-auto-columns: 80%; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; }
  .steps > li { scroll-snap-align: start; }
}
.step-card { display: grid; gap: 8px; align-content: start; padding: 14px; border: 1px solid var(--border-color); border-radius: var(--radius-20); background: rgba(255,255,255,0.04); box-shadow: var(--shadow-elev-1), var(--shadow-inset); min-height: 180px; }
.step-head { display: flex; align-items: center; gap: 10px; }
.badge { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background-image: var(--gradient-brand); color: #0b1220; font-weight: 700; box-shadow: var(--shadow-elev-1); }
.illus { width: 100%; height: 84px; display: grid; place-items: center; border-radius: var(--radius-16); background: rgba(255,255,255,0.03); border: 1px solid var(--border-color); }
.illus svg { width: 100%; max-width: 220px; height: 72px; filter: drop-shadow(0 12px 28px rgba(0,0,0,.35)); }

/* Security */
.security-grid { display: grid; gap: 16px; padding: 16px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-color); border-radius: var(--radius-24); box-shadow: var(--shadow-elev-2), var(--shadow-inset); overflow: visible; }
.security-list { display: grid; gap: 8px; padding-left: 18px; }
@media (min-width: 900px) {
  .security-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .security-grid .visual { order: -1; }
}

.security-box.ai-border::before { z-index: 0; pointer-events: none; }
.security-visual { position: relative; }
.security-visual .security-wave { position: absolute; inset: -10% -10% auto -10%; opacity: .35; filter: blur(2px); }
.security-list .chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: var(--radius-pill); border: 1px solid var(--border-color); background: rgba(255,255,255,0.04); }

/* Pricing (used on charges page) */
.plan { display: grid; gap: 8px; background: rgba(255,255,255,0.04); }
.plan .price { font-size: 1.5rem; font-weight: 700; color: #ffffff; }
.plan .features { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; color: var(--color-text-2); }
.plan.popular { position: relative; background: rgba(255,255,255,0.06); }
.plan .ribbon { position: absolute; right: 16px; top: -10px; padding: 6px 10px; border-radius: var(--radius-pill); background-image: var(--gradient-brand); color: #0b1220; font-weight: 700; box-shadow: var(--shadow-elev-1); filter: blur(0.2px); }

/* Footer */
.site-footer { 
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Footer Top Section */
.footer-top {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  height: 40px;
}
.logo-text {
  font-size: 28px;
  font-weight: 700;
  color: white;
  font-family: 'Inter', sans-serif;
}

.footer-tagline {
  font-size: 18px;
  color: #e2e8f0;
  margin: 0;
  font-weight: 500;
}

/* Footer Navigation */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav-column h4 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 20px 0;
  font-family: 'Inter', sans-serif;
}

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

.footer-nav-column ul li {
  margin-bottom: 12px;
}

.footer-nav-column ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.footer-nav-column ul li a:hover {
  color: white;
}

/* Footer Payment Section */
.footer-payment-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods {
  display: flex;
  gap: 20px;
  align-items: center;
}

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

.payment-method img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.payment-method span {
  font-size: 12px;
  color: #cbd5e1;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

/* Security Badge */
.security-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #374151;
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.security-text {
  display: flex;
  flex-direction: column;
}

.security-title {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.security-subtitle {
  font-size: 12px;
  color: #cbd5e1;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
}

.copyright p {
  color: white;
  font-size: 14px;
  margin: 0 0 15px 0;
  font-family: 'Inter', sans-serif;
}

.disclaimer p {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 25px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Inter', sans-serif;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

.social-icon.facebook {
  background: #1877f2;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.telegram {
  background: #0088cc;
}

.social-icon.twitter {
  background: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 30px;
  }
  
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-payment-section {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  
  .payment-methods {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .logo-text {
    font-size: 24px;
  }
  
  .footer-tagline {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .payment-methods {
    gap: 10px;
  }
  
  .payment-method img {
    width: 35px;
    height: 35px;
  }
  
  .social-icon {
    width: 35px;
    height: 35px;
  }
}


@media(max-width : 767px){
  .hero-grid {
    gap: 0;
}
.hero .actions {
    display: grid;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 12px;
}
}