/* ========================================
   SEOTOOLZBUNDLE.COM — Complete Stylesheet
   ======================================== */

/* ============================================
   1. CSS VARIABLES & ROOT
   ============================================ */

:root {
  --primary: #6c63ff;
  --primary-dark: #5a52d5;
  --secondary: #ff6584;
  --dark: #0f0f1a;
  --dark-2: #1a1a2e;
  --dark-3: #16213e;
  --gray: #f4f6f9;
  --text: #333;
  --text-light: #666;
  --white: #ffffff;
  --success: #28a745;
  --border: #e0e0e0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(108, 99, 255, 0.25);
  --radius: 12px;
  --transition: all 0.3s ease;
}

/* ============================================
   2. RESET & BASE STYLES
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
}

/* ============================================
   3. CONTAINER
   ============================================ */

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

/* ============================================
   4. SECTIONS
   ============================================ */

.section {
  padding: 80px 0;
}

.section-gray {
  background: var(--gray);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   5. BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  border: 2px solid var(--white);
}

.btn-white:hover {
  background: var(--gray);
  border-color: var(--gray);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ============================================
   6. HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(15, 15, 26, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(108, 99, 255, 0.15);
}

.header-spacer {
  height: 65px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 65px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.logo-text strong {
  color: var(--primary);
  font-weight: 800;
  margin-left: 2px;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-block;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.header-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.header-actions .btn {
  padding: 9px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.header-actions .btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.header-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.header-actions .btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

.header-actions .btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(108, 99, 255, 0.4);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  z-index: 1001;
  transition: transform 0.2s ease;
}

.hamburger:hover {
  transform: scale(1.1);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 65px;
  left: 0;
  right: 0;
  background: rgba(15, 15, 26, 0.99);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu.open {
  display: block;
  max-height: 600px;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0 20px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-nav-link i {
  width: 18px;
  color: var(--primary);
  font-size: 0.9rem;
}

.mobile-nav-link:hover {
  color: white;
}

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 20px;
}

.mobile-menu-cta .btn {
  padding: 11px 16px;
  font-size: 0.9rem;
  border-radius: 8px;
  text-align: center;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.mobile-menu-cta .btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.mobile-menu-cta .btn-primary {
  background: var(--primary);
  color: white;
}

.mobile-menu-cta .btn-primary:hover {
  background: var(--primary-dark);
}

/* ============================================
   7. HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(108, 99, 255, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 101, 132, 0.15) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(108, 99, 255, 0.2);
  border: 1px solid rgba(108, 99, 255, 0.4);
  color: #a09cf7;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 20px 30px;
  backdrop-filter: blur(10px);
}

.stat {
  text-align: center;
  padding: 0 24px;
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}

.stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   8. TRUST BAR
   ============================================ */

.trust-bar {
  background: var(--dark-2);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-bar p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

.trust-logos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-logos span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============================================
   9. WHY SECTION
   ============================================ */

.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   10. TOOLS SECTION
   ============================================ */

.tools-section {
  background: var(--gray);
}

.tools-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--border);
  background: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  color: var(--text);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}

.tool-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.tool-logo {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.tool-logo svg {
  width: 44px;
  height: 44px;
}

.tool-info h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.tool-price {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
}

.tool-price del {
  color: var(--text-light);
  text-decoration: line-through;
}

.tool-price strong {
  color: var(--success);
  font-weight: 700;
}

.tool-badge {
  position: absolute;
  top: -8px;
  right: 12px;
  background: var(--secondary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

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

/* ============================================
   11. PRICING SECTION
   ============================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, #6c63ff08, #ffffff);
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.plan-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.plan-price {
  margin-bottom: 8px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.amount {
  font-size: 4rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.period {
  font-size: 0.9rem;
  color: var(--text-light);
}

.plan-inr {
  font-size: 0.82rem;
  color: var(--success);
  font-weight: 600;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  margin-bottom: 28px;
  text-align: left;
}

.plan-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li i.fa-check {
  color: var(--success);
}

.plan-features li i.fa-times {
  color: #ccc;
}

.plan-features li.disabled {
  color: #bbb;
}

.money-back {
  text-align: center;
  margin-top: 36px;
  color: var(--text-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.money-back i {
  color: var(--success);
}

/* ============================================
   12. STATS SECTION
   ============================================ */

.stats-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}

.counter-box {
  color: white;
}

.counter-box i {
  font-size: 2.5rem;
  margin-bottom: 12px;
  opacity: 0.8;
}

.counter {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.counter-box span {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   13. TESTIMONIALS
   ============================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.stars {
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.testimonial-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 0.9rem;
}

.reviewer span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============================================
   14. FAQ SECTION
   ============================================ */

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  font-family: inherit;
}

.faq-question:hover {
  background: var(--gray);
}

.faq-question i {
  transition: var(--transition);
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: white;
}

.faq-answer p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer:not([hidden]) {
  display: block;
}

/* ============================================
   15. CTA SECTION
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   16. FOOTER
   ============================================ */

.footer {
  background: var(--dark);
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 280px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
}

.footer-links h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: var(--primary);
  transition: var(--transition);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ============================================
   17. FLOATING BUTTONS
   ============================================ */

.float-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  z-index: 999;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

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

.float-btn.whatsapp {
  background: #25D366;
  bottom: 140px;
}

.float-btn.telegram {
  background: #0088cc;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.4);
  transition: var(--transition);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.back-to-top.visible {
  display: flex;
}

/* ============================================
   18. TOOL PAGE STYLES
   ============================================ */

.breadcrumb {
  background: var(--gray);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumb ul {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.breadcrumb li {
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: #999;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Tool Hero */
.tool-hero {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
  padding: 80px 0;
  color: white;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.price-highlight {
  color: #28a745;
  background: rgba(40, 167, 69, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.8;
}

/* Price Comparison */
.price-comparison {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 28px;
  border-radius: 12px;
  margin-bottom: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  justify-content: center;
}

.price-box {
  flex: 1;
  min-width: 150px;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
}

.price-box.original {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-box.group-buy {
  background: rgba(40, 167, 69, 0.15);
  border: 2px solid #28a745;
}

.price-box .label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.price-box .price {
  font-size: 2.2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 4px;
}

.price-box .price span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.price-box .savings {
  font-size: 0.85rem;
  color: #28a745;
  font-weight: 700;
  margin-top: 8px;
}

.price-arrow {
  font-size: 1.5rem;
  color: #28a745;
  font-weight: 700;
}

/* Hero Buttons */
.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Trust Signals */
.trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  justify-content: center;
}

.trust-signals span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-signals i {
  color: #28a745;
}

/* Hero Image */
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-showcase {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* What You Get */
.what-you-get h2 {
  text-align: center;
}

.section-intro {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Compare Table */
.compare-table {
  overflow-x: auto;
  margin-top: 40px;
}

.compare-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare-table th {
  background: var(--dark);
  color: white;
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
}

.compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.compare-table tbody tr:hover {
  background: var(--gray);
}

.compare-table .highlight {
  color: var(--primary);
  font-weight: 700;
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.step-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Related Tools */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.related-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.related-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.related-card .tool-badge {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.related-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.related-card p {
  font-size: 0.85rem;
  color: var(--success);
  font-weight: 600;
}

/* CTA Section Tool Page */
.cta-section h2 {
  font-size: 2.2rem;
}

.cta-subtext {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
}

/* ============================================
   19. ANIMATIONS
   ============================================ */

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

/* ============================================
   20. RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .nav-link {
    padding: 8px 10px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    gap: 12px;
  }

  .nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .logo-icon svg {
    width: 32px;
    height: 32px;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 10px;
    padding: 16px;
  }

  .stat {
    padding: 0 12px;
  }

  .stat strong {
    font-size: 1.4rem;
  }

  .stat-divider {
    display: none;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Tool Page Mobile */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .price-comparison {
    flex-direction: column;
    gap: 12px;
  }

  .price-arrow {
    transform: rotate(90deg);
  }

  .steps-grid,
  .features-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-spacer {
    height: 60px;
  }

  .header-inner {
    height: 60px;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .logo-icon svg {
    width: 30px;
    height: 30px;
  }

  .section {
    padding: 50px 0;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .hero {
    min-height: 80vh;
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .tool-card {
    padding: 16px;
    flex-direction: column;
    text-align: center;
  }

  .tool-info {
    text-align: center;
  }

  .pricing-card {
    padding: 24px 16px;
  }

  .amount {
    font-size: 3rem;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .faq-list {
    max-width: 100%;
  }

  .hero-stats {
    padding: 12px;
  }

  .stat {
    padding: 0 8px;
  }

  .stat strong {
    font-size: 1.2rem;
  }

  .compare-table {
    font-size: 0.85rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px 14px;
  }

  .breadcrumb ul {
    font-size: 0.75rem;
  }
}

/* ============================================
   21. UTILITY CLASSES
   ============================================ */

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

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

/* ============================================
   PRICING PAGE SPECIFIC STYLES
   ============================================ */

.pricing-hero {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
  padding: 60px 0;
  color: white;
  text-align: center;
}

.pricing-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.pricing-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* Billing Toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.billing-toggle label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
}

.billing-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.toggle-text {
  color: #28a745;
  font-weight: 700;
  font-size: 0.9rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Pricing Section */
.pricing-section {
  background: white;
}

.section-header-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 50px;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

.pricing-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, #6c63ff08, #ffffff);
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.plan-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.plan-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.plan-price {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 8px;
}

.amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.period {
  font-size: 0.9rem;
  color: var(--text-light);
  align-self: flex-end;
  padding-bottom: 8px;
}

.plan-inr {
  font-size: 0.85rem;
  color: var(--success);
  font-weight: 600;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--border);
  flex-grow: 1;
}

.plan-features {
  margin-bottom: 28px;
  text-align: left;
  flex-grow: 1;
}

.plan-features li {
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li i.fa-check {
  color: var(--success);
  font-weight: 700;
}

.plan-features li i.fa-times {
  color: #ccc;
}

.plan-features li.disabled {
  color: #bbb;
}

.cta-text {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 8px;
}

/* Money Back */
.money-back {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
  border: 2px solid rgba(40, 167, 69, 0.2);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.money-back i {
  color: var(--success);
  font-size: 1.5rem;
}

/* Compare Table */
.compare-table {
  overflow-x: auto;
  margin-top: 40px;
}

.compare-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare-table th {
  background: var(--dark);
  color: white;
  padding: 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
}

.compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.compare-table tbody tr:hover {
  background: var(--gray);
}

.compare-table .highlight {
  color: var(--primary);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-hero h1 {
    font-size: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .compare-table {
    font-size: 0.8rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px;
  }

  .money-back {
    padding: 24px;
    font-size: 0.9rem;
  }

  .plan-price {
    flex-direction: row;
  }

  .amount {
    font-size: 2.5rem;
  }
}

/* ============================================
   TOOLS PAGE SPECIFIC STYLES
   ============================================ */

.tools-hero {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
  padding: 60px 0;
  color: white;
  text-align: center;
}

.tools-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.tools-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

/* Search Box */
.tools-search {
  margin-top: 40px;
}

.search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 14px 20px;
  max-width: 500px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.search-box:focus-within {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.15);
}

.search-box i {
  color: rgba(255, 255, 255, 0.5);
  margin-right: 12px;
  font-size: 1.1rem;
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  outline: none;
  font-family: inherit;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Filter Section */
.tools-filter-section {
  background: var(--white);
  padding: 30px 0;
}

.filter-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--border);
  background: white;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.filter-btn:hover {
  border-color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* Tools Directory */
.tools-directory {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.tool-item {
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tool-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.tool-item-header {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.tool-item-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tool-item-info {
  flex: 1;
}

.tool-item-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  margin: 0 0 4px 0;
}

.tool-item-info h3 a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}

.tool-item-info h3 a:hover {
  color: var(--primary);
}

.tool-category {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.tool-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tool-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.tool-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px;
  background: var(--gray);
  border-radius: 8px;
  flex-wrap: wrap;
}

.original-price {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.group-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.savings {
  font-size: 0.75rem;
  background: var(--success);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* No Results */
.no-results {
  grid-column: 1 / -1;
  padding: 60px 20px;
  color: var(--text-light);
}

.no-results i {
  font-size: 4rem;
  color: #ccc;
  margin-bottom: 20px;
  display: block;
}

.no-results h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .tools-hero h1 {
    font-size: 1.8rem;
  }

  .tools-directory {
    grid-template-columns: 1fr;
  }

  .search-box {
    max-width: 100%;
  }

  .filter-buttons {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* ============================================
   FAQ PAGE SPECIFIC STYLES
   ============================================ */

.faq-hero {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
  padding: 60px 0;
  color: white;
  text-align: center;
}

.faq-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.faq-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Category Buttons */
.faq-categories {
  background: white;
  padding: 30px 0;
}

.category-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.category-btn {
  padding: 10px 20px;
  border: 2px solid var(--border);
  background: white;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.category-btn:hover {
  border-color: var(--primary);
}

.category-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.faq-item.active {
  border-color: var(--primary);
  background: linear-gradient(135deg, #6c63ff08, #ffffff);
}

/* FAQ Question */
.faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.faq-question:hover {
  background: var(--gray);
}

.faq-item.active .faq-question {
  background: var(--white);
}

.faq-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.faq-text {
  flex: 1;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
  display: none;
  padding: 0 24px 24px;
  background: white;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  margin-bottom: 16px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ol,
.faq-answer ul {
  margin: 15px 0;
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 8px;
}

.faq-answer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-hero h1 {
    font-size: 1.8rem;
  }

  .faq-question {
    padding: 18px;
    gap: 12px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .faq-icon {
    font-size: 1.2rem;
  }

  .category-buttons {
    gap: 8px;
  }

  .category-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */

.contact-hero {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
  padding: 60px 0;
  color: white;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Contact Methods Grid */
.contact-methods {
  background: white;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.method-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.method-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.method-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 16px;
}

.method-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.method-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.6;
}

.method-response {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* Form Wrapper */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-header {
  text-align: center;
  margin-bottom: 36px;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.form-header p {
  font-size: 1rem;
  color: var(--text-light);
}

/* Form Groups */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  display: block;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: white;
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.form-checkbox label {
  margin: 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Form Message -->
.form-message {
  padding: 16px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-message.success {
  background: rgba(40, 167, 69, 0.1);
  color: var(--success);
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.form-message.error {
  background: rgba(220, 38, 38, 0.1);
  color: #DC2626;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.info-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.info-card ul {
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  padding-left: 20px;
}

.info-card ul li {
  margin-bottom: 6px;
}

/* Quick Fixes Grid */
.quick-fixes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.quick-fix-card {
  background: white;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
}

.quick-fix-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.quick-fix-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-fix-card h4 i {
  color: var(--primary);
  font-size: 1.1rem;
}

.quick-fix-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 1.8rem;
  }

  .form-wrapper {
    padding: 24px;
  }

  .form-header h2 {
    font-size: 1.5rem;
  }

  .methods-grid,
  .info-grid,
  .quick-fixes-grid {
    grid-template-columns: 1fr;
  }

  .method-card,
  .info-card,
  .quick-fix-card {
    padding: 20px;
  }
}

/* ============================================
   LEGAL PAGES SPECIFIC STYLES
   ============================================ */

.legal-hero {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
  padding: 60px 0;
  color: white;
  text-align: center;
}

.legal-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.legal-hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Legal Content */
.legal-content {
  background: white;
}

.legal-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
}

.legal-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 40px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 10px;
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 20px;
  margin-bottom: 12px;
}

.legal-text p {
  margin-bottom: 16px;
}

.legal-text ul,
.legal-text ol {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-text li {
  margin-bottom: 10px;
}

.legal-text strong {
  color: var(--primary);
  font-weight: 700;
}

.legal-text em {
  font-style: italic;
  color: var(--text-light);
}

.legal-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.legal-text table thead {
  background: var(--primary);
  color: white;
}

.legal-text table th,
.legal-text table td {
  padding: 14px 16px;
  text-align: left;
  border: 1px solid var(--border);
}

.legal-text table tbody tr:hover {
  background: var(--gray);
}

.legal-text a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.2s;
}

.legal-text a:hover {
  color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .legal-hero h1 {
    font-size: 1.8rem;
  }

  .legal-text {
    font-size: 0.9rem;
  }

  .legal-text h2 {
    font-size: 1.3rem;
    margin-top: 30px;
  }

  .legal-text table {
    font-size: 0.85rem;
  }

  .legal-text table th,
  .legal-text table td {
    padding: 10px 12px;
  }
}

/* ========== PRICING TABS (UPDATED) ========== */

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.pricing-tab-btn {
  padding: 0.75rem 2rem;
  border: 2px solid #e5e7eb;
  background: #fff;
  color: #6c63ff;
  border-radius: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.pricing-tab-btn:hover {
  border-color: #6c63ff;
  background: #f9f7ff;
}

.pricing-tab-btn.active {
  background: #6c63ff;
  color: #fff;
  border-color: #6c63ff;
  box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

.pricing-tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.pricing-tab-content.active {
  display: block;
}

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

/* ========== PRICING CARD SINGLE (FOR TABS) ========== */

.pricing-card-single {
  max-width: 500px;
  margin: 0 auto;
  padding: 2.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  background: #fff;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card-single:hover {
  border-color: #6c63ff;
  box-shadow: 0 12px 24px rgba(108, 99, 255, 0.15);
}

.pricing-card-single.featured {
  border-color: #6c63ff;
  background: linear-gradient(135deg, #ffffff 0%, #f9f7ff 100%);
  box-shadow: 0 12px 24px rgba(108, 99, 255, 0.2);
  position: relative;
}

.plan-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #6c63ff 0%, #a78bfa 100%);
  color: #fff;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.plan-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1rem;
}

.plan-price {
  margin-bottom: 0.5rem;
}

.plan-price .currency {
  font-size: 1.25rem;
  color: #6b7280;
}

.plan-price .amount {
  font-size: 3rem;
  font-weight: 900;
  color: #1f2937;
}

.plan-price .period {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

.plan-price-usd {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.plan-desc {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* ========== PRICING CARDS UPDATES ========== */

.plan-preview-tools {
  margin: 1.5rem 0;
  padding: 1rem;
  background: #f9f7ff;
  border-radius: 0.75rem;
  border-left: 4px solid #6c63ff;
  text-align: left;
}

.preview-label {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.preview-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.preview-list li {
  padding: 0.4rem 0;
  color: #4b5563;
  font-size: 0.95rem;
}

.preview-list i {
  color: #6c63ff;
  margin-right: 0.5rem;
  font-size: 0.85rem;
}

.plan-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.view-tools-btn {
  width: 100%;
  text-align: center;
}

/* ========== MODAL STYLES ========== */

.tools-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.tools-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease-out;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #1f2937;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b7280;
  transition: color 0.2s ease;
  padding: 0.5rem;
}

.modal-close:hover {
  color: #1f2937;
}

.modal-body {
  padding: 2rem;
}

.tools-grid-modal {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.tool-item-modal {
  padding: 1rem;
  background: #f9f7ff;
  border-radius: 0.5rem;
  border-left: 3px solid #6c63ff;
  color: #4b5563;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.tool-item-modal:hover {
  background: #f3ebff;
  transform: translateX(4px);
}

.tool-item-modal i {
  color: #6c63ff;
  margin-right: 0.75rem;
  font-weight: 600;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
  .pricing-tabs {
    gap: 0.5rem;
  }

  .pricing-tab-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .pricing-card-single {
    padding: 1.5rem;
  }

  .plan-price .amount {
    font-size: 2.5rem;
  }

  .modal-content {
    width: 95%;
    max-height: 90vh;
  }

  .modal-header {
    padding: 1.5rem;
  }

  .modal-header h3 {
    font-size: 1.25rem;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .tools-grid-modal {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }

  .tool-item-modal {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .pricing-tabs {
    gap: 0.3rem;
  }

  .pricing-tab-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .pricing-card-single {
    padding: 1rem;
  }

  .plan-name {
    font-size: 1.5rem;
  }

  .plan-price .amount {
    font-size: 2rem;
  }

  .tools-grid-modal {
    grid-template-columns: 1fr;
  }

  .plan-preview-tools {
    margin: 1rem 0;
  }
}





/* ========== TOOLS COUNT BADGE ========== */

.tools-count {
  display: inline-block;
  background: #f0f9ff;
  color: #0369a1;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 1rem 0;
  border: 1px solid #cffafe;
}

.tools-count.featured {
  background: #fef3c7;
  color: #92400e;
  border-color: #fcd34d;
}

.tools-count i {
  margin-right: 0.5rem;
}

/* ========== TOP TOOLS SECTION ========== */

.top-tools {
  text-align: left;
  margin: 1.5rem 0;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  border-left: 3px solid #6c63ff;
}

.top-tools strong {
  display: block;
  margin-bottom: 0.75rem;
  color: #1f2937;
  font-size: 0.95rem;
}

.top-tools ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-tools li {
  padding: 0.35rem 0;
  color: #4b5563;
  font-size: 0.9rem;
}

.top-tools i {
  color: #10b981;
  margin-right: 0.5rem;
  font-weight: 600;
}

/* ========== MODAL STYLES ========== */

.tools-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.tools-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease-out;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #1f2937;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b7280;
  transition: color 0.2s ease;
  padding: 0.5rem;
}

.modal-close:hover {
  color: #1f2937;
}

.modal-body {
  padding: 2rem;
}

.tools-grid-modal {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.tool-item-modal {
  padding: 1rem;
  background: #f9f7ff;
  border-radius: 0.5rem;
  border-left: 3px solid #6c63ff;
  color: #4b5563;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.tool-item-modal:hover {
  background: #f3ebff;
  transform: translateX(4px);
}

.tool-item-modal i {
  color: #6c63ff;
  margin-right: 0.75rem;
  font-weight: 600;
}

/* ========== PLAN CTA ========== */

.plan-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.view-tools-btn {
  background: #fff;
  border: 2px solid #6c63ff;
  color: #6c63ff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.view-tools-btn:hover {
  background: #f9f7ff;
  transform: translateY(-2px);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
  .tools-count {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  .top-tools {
    padding: 0.75rem;
  }

  .top-tools strong {
    font-size: 0.9rem;
  }

  .top-tools li {
    font-size: 0.85rem;
  }

  .modal-content {
    width: 95%;
  }

  .tools-grid-modal {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .tools-count {
    font-size: 0.8rem;
  }

  .top-tools li {
    font-size: 0.8rem;
  }

  .tools-grid-modal {
    grid-template-columns: 1fr;
  }
}




