/*
Theme Name: UltraBlog Pro
Author: Praveen – ITWebInfo
Version: 1.0.0
Description: Premium SEO-focused WordPress Blog Theme
*/

/* RESET (ALWAYS FIRST) */
@import url('assets/css/reset.css');

/* CORE DESIGN SYSTEM */
@import url('assets/css/variables.css');
@import url('assets/css/base.css');
/*@import url('assets/css/layouts.css');*/

/* STRUCTURE */
@import url('assets/css/header.css');
@import url('assets/css/footer.css');
@import url('assets/css/sidebar.css');

/* COMPONENTS */
@import url('assets/css/components.css');
@import url('assets/css/blog.css');
@import url('assets/css/about.css');
@import url('assets/css/toc.css');
@import url('assets/css/comments.css');
@import url('assets/css/related-posts.css');

/* EXTRAS */
@import url('assets/css/animations.css');
@import url('assets/css/responsive.css');

/* PREMIUM FEATURES */
@import url('assets/css/dark-mode.css');
@import url('assets/css/color-presets.css');
@import url('assets/css/gutenberg.css');
@import url('assets/css/woocommerce.css');
@import url('assets/css/whitelabel.css');





/* ================= HERO ================= */
.hero-global {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f0f4ff, #dbe4ff);
  animation: fadeIn 1s ease forwards;
}

.hero-global h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.hero-global p.hero-sub {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero-actions .btn-primary {
  background: #4f46e5;
  color: #fff;
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hero-actions .btn-primary:hover {
  background: #3730a3;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.hero-actions .btn-outline {
  border: 2px solid #4f46e5;
  color: #4f46e5;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hero-actions .btn-outline:hover {
  background: #4f46e5;
  color: #fff;
  transform: translateY(-2px);
}

/* Hero badges */
.hero-badges {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-badges li {
  background: #e0e7ff;
  color: #4f46e5;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hero-badges li:hover {
  background: #4f46e5;
  color: #fff;
  transform: scale(1.05);
}

/* ================= TOOL CATEGORIES ================= */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.category-grid a {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.category-grid a h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.category-grid a p {
  font-size: 0.95rem;
  color: #555;
}

.category-grid a:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  background: #4f46e5;
  color: #fff;
}

/* ================= SOCIAL PROOF ================= */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.proof-grid div {
  background: #f0f4ff;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.proof-grid div:hover {
  transform: translateY(-5px);
  background: #4f46e5;
  color: #fff;
}

/* ================= FAQ ================= */
.faq details {
  background: #f0f4ff;
  margin: 1rem 0;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq details[open] {
  background: #4f46e5;
  color: #fff;
  transform: translateY(-2px);
}

.faq summary {
  font-weight: 600;
  font-size: 1.05rem;
}

.faq p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeIn {
  0% {opacity:0; transform: translateY(30px);}
  100% {opacity:1; transform: translateY(0);}
}
 
/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #eee;
}

/* ===== MAIN MENU ===== */
.main-menu > li {
  position: relative;
}

.main-menu > li > a {
  font-weight: 600;
  padding: 12px 0;
  transition: color .3s;
}

.main-menu > li:hover > a {
  color: #4f46e5;
}

/* ===== SUB MENU FIX ===== */
.main-menu .sub-menu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
}

.main-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li a {
  padding: 10px 14px;
  display: block;
  border-radius: 8px;
  font-size: 14px;
}

.sub-menu li a:hover {
  background: #f4f5ff;
  color: #4f46e5;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 991px) {
  .main-menu .sub-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 15px;
  }
}


/* ================= HERO ================= */
.hero-global {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.hero-container {
  width: 100%;
}

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

/* CONTENT */
.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: #eaf0ff;
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-content h1 span {
  color: #2563eb;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 28px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
}

.btn-outline {
  border: 1px solid #c7d2fe;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  color: #1e3a8a;
}

/* FEATURES */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-size: 14px;
  color: #334155;
  list-style: none;
  padding: 0;
}

/* VISUAL */
.hero-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tool-pill {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-visual {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

section {
  padding: 70px 0;
}

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

.section-intro {
  max-width: 700px;
  margin: 12px auto 0;
  color: #555;
  font-size: 1.05rem;
}

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

.stat-card {
  background: #f8f9fb;
  border-radius: 16px;
  padding: 28px 20px;
}

.stat-card strong {
  font-size: 2rem;
  display: block;
  color: #111;
}

.stat-card span {
  color: #666;
}

/* ================= POPULAR TOOLS ================= */
.tool-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.tool-list a {
  padding: 12px 18px;
  border-radius: 999px;
  background: #f1f3f6;
  text-decoration: none;
  font-weight: 500;
  color: #111;
  transition: 0.3s;
}

.tool-list a:hover {
  background: #111;
  color: #fff;
}

/* ================= GLOBAL ACCESS ================= */
.global-access {
  background: #fafafa;
  text-align: center;
}

/* ================= COMPARISON ================= */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.compare-card {
  background: #f8f9fb;
  border-radius: 20px;
  padding: 30px;
}

.compare-card.highlight {
  background: linear-gradient(135deg, #111, #333);
  color: #fff;
}

.compare-card h3 {
  margin-bottom: 16px;
}

.compare-card ul {
  list-style: none;
  padding: 0;
}

.compare-card li {
  margin-bottom: 10px;
}

/* ================= CTA ================= */
.final-cta {
  text-align: center;
  background: linear-gradient(135deg, #111, #222);
  color: #fff;
}

.final-cta p {
  margin: 12px 0 24px;
}

.btn-primary {
  background: #ff5a00;
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

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

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}

.tool-directory {
  background: #f9fafb;
  padding: 80px 0;
}

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

.dir-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.dir-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.dir-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.dir-card p {
  font-size: .95rem;
  color: #555;
  margin-bottom: 12px;
}

.tool-count {
  display: inline-block;
  font-size: .85rem;
  color: #777;
  margin-bottom: 16px;
}

.dir-link {
  display: inline-block;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.dir-link:hover {
  text-decoration: underline;
}
/* FAQ */
.faq-section {
  background: #f8fafc;
  padding: 90px 0;
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.faq-grid details {
  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.faq-grid summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid p {
  margin-top: 12px;
  color: #555;
  line-height: 1.6;
}

/* INTERNAL LINKS */
.internal-links {
  background: #ffffff;
  padding: 70px 0;
  border-top: 1px solid #eee;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.link-grid a {
  background: #f3f4f6;
  padding: 12px 14px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  transition: background .2s ease;
}

.link-grid a:hover {
  background: #e5e7eb;
}

.btn-radius-h {
    padding: 14px 32px !important;
    border-radius: 999px  !important;
    text-decoration: none  !important;
    font-weight: 600  !important;
}

 /* TRUST STRIP */
.trust-strip {
  background: #ffffff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 18px 0;
}

.trust-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}

.trust-icon {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 768px) {
  .trust-list {
    gap: 16px;
  }

  .trust-list li {
    font-size: 13px;
  }
} 

/* ================= PRICING HERO ================= */

.pricing-hero {
  padding: 90px 0;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

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

/* CONTENT */
.pricing-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin: 16px 0;
  font-weight: 800;
}

.hero-sub {
  font-size: 1.1rem;
  color: #555;
  max-width: 560px;
}

.hero-badge {
  display: inline-block;
  background: #eef4ff;
  color: #2563eb;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-points {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.pricing-points li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #333;
}

/* ACTIONS */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

/* VISUAL CARD */
.pricing-hero-visual {
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  position: relative;
  text-align: center;
}

.card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #16a34a;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.price {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 10px 0;
}

.price span {
  font-size: 0.9rem;
  color: #666;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pricing-card ul li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.btn-block {
  display: block;
  width: 100%;
  margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .pricing-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.pricing-hero,
.pricing-compare,
.pricing-faq,
.pricing-cta,
.trust-strip {
  padding: 80px 0;
}

.pricing-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}

@media (max-width: 900px) {
  .pricing-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  animation: float 4s ease-in-out infinite;
}

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

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 16px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

/* ===== TRUST SECTION ===== */
.trust-section {
  background: #f9fafb;
  padding: 80px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.trust-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.trust-card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

.trust-card span {
  color: #555;
  font-size: 15px;
}

/* ===== FAQ ===== */
.pricing-faq {
  padding: 90px 0;
}

.faq-list details {
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
}

.faq-list summary {
  font-weight: 600;
  cursor: pointer;
}







/*--------------------------------------------------
  GLOBAL STYLES
--------------------------------------------------*/
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #0f172a;
  color: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
  text-align: center;
}

a { text-decoration: none; transition: all 0.3s ease; }
a:hover { opacity: 0.85; }

/*--------------------------------------------------
  HERO SECTIONS
--------------------------------------------------*/
.hero, .th-hero {
  position: relative;
  padding: 90px 15px 70px;
  text-align: center;
  background: linear-gradient(135deg,#2563eb,#020617);
  color: #fff;
  overflow: hidden;
}

.hero .badge, .th-hero .badge {
  display: inline-block;
  background: #ffffff22;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero h1, .th-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero .subtitle, .th-hero p, .th-subheadline {
  color: #cbd5f5;
  font-size: 17px;
  max-width: 720px;
  margin: 0 auto 30px;
}

.hero-btns, .th-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-main, .th-btn-primary {
  background: #fff;
  color: #2563eb;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
}

.btn-outline, .th-btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
}

.btn-main:hover, .btn-outline:hover, .th-btn-primary:hover, .th-btn-outline:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/*--------------------------------------------------
  SEARCH BAR
--------------------------------------------------*/
.search, .th-form-wrapper {
  text-align: center;
  padding: 40px 0;
}

.search form {
  max-width: 700px;
  margin: auto;
  display: flex;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 10px 35px rgba(0,0,0,.15);
  overflow: hidden;
}

.search input, .th-form-wrapper input, .th-form-wrapper textarea, .th-form-wrapper select {
  flex: 1;
  border: none;
  padding: 12px 20px;
  font-size: 15px;
  border-radius: 8px;
  outline: none;
}

.search button {
  background: #22c55e;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
}

/*--------------------------------------------------
  SECTIONS
--------------------------------------------------*/
.section, .th-section {
  padding: 80px 20px;
  text-align: center;
}

.dark { background: #020617; }
.light { background: #fff; color: #111; }

.section h2, .th-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #22c55e;
}

.section-desc, .th-section .section-desc {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 50px;
}

/*--------------------------------------------------
  GRIDS & CARDS
--------------------------------------------------*/
.grid, .features-grid, .tools-grid, .th-cards-3, .th-cards-4, .th-pricing-grid, .th-grid {
  display: grid;
  gap: 25px;
  margin-top: 40px;
}

.grid { grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); max-width: 1100px; margin: auto; }
.features-grid { grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); margin-bottom: 40px; }
.tools-grid { grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); }
.th-cards-3 { grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); }
.th-cards-4 { grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); }
.th-pricing-grid { grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); }

.card, .feature, .feature-card, .th-card, .th-price-card {
  background: #111827;
  padding: 25px;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,.05);
}

.card:hover, .feature-card:hover, .th-card:hover, .th-price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(34,197,94,0.3);
}

.card a, .tools-grid a {
  display: block;
  padding: 22px;
  font-weight: 600;
  color: #111;
}

.card small {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #666;
  font-weight: 400;
}

/*--------------------------------------------------
  TOOL LIST
--------------------------------------------------*/
.tool-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
  gap: 12px;
  justify-items: center;
}

.tool-list li a {
  color: #fff;
  text-decoration: none;
  background: #2a2a2a;
  padding: 10px 15px;
  border-radius: 8px;
  display: block;
  transition: all 0.3s ease;
}

.tool-list li a:hover {
  background: #22c55e;
  color: #000;
  transform: translateY(-2px);
}

/*--------------------------------------------------
  FEATURE CARDS (WHY TASKHUG / BENEFITS)
--------------------------------------------------*/
.feature-card h3 { font-size: 20px; margin-bottom: 10px; color: #22c55e; }
.feature-card p { font-size: 14px; color: #cbd5f5; line-height: 1.6; text-align: left; }

/*--------------------------------------------------
  CTA SECTIONS
--------------------------------------------------*/
.cta, .th-cta-section {
  text-align: center;
  padding: 100px 20px;
  background: #2563eb;
  color: #fff;
}

/*--------------------------------------------------
  ADS & TRUST
--------------------------------------------------*/
.ads-slot { text-align: center; padding: 30px; background: #000; }
.tools-trust, .th-trust { font-size: 14px; color: #777; margin-top: 25px; display: flex; gap: 25px; justify-content: center; }

/*--------------------------------------------------
  EMOTION / TEXT BLOCKS
--------------------------------------------------*/
.emotion {
  max-width: 700px;
  margin: 40px auto;
  font-size: 16px;
  color: #cbd5f5;
}

/*--------------------------------------------------
  TABLES
--------------------------------------------------*/
.th-table-wrap { overflow-x: auto; margin-top: 40px; }
th, td { padding: 14px; border: 1px solid #e2e8f0; text-align: center; }
th { background: #f1f5f9; color: #111; }

/*--------------------------------------------------
  RESPONSIVE
--------------------------------------------------*/
@media(max-width: 992px) {
  .hero h1, .th-hero h1 { font-size: 32px; }
  .features-grid, .tools-grid, .grid, .th-cards-3, .th-cards-4, .th-pricing-grid, .th-grid { grid-template-columns: 1fr; }
  .search input { width: 100%; }
}






/* FORM */
.th-contact{font-family:Inter,Arial;background:#f8fafc;} .th-container{max-width:900px;margin:auto;text-align:center} .th-breadcrumb{margin-bottom:20px;font-size:14px;color:#cbd5e1} .th-breadcrumb a{color:#fff;text-decoration:none} .th-hero{position:relative;padding:120px 20px; background:linear-gradient(135deg,#0f172a,#1e293b,#2563eb); color:#fff;text-align:center} .th-overlay{position:absolute;inset:0; background:radial-gradient(circle at 20% 30%,rgba(255,255,255,.1),transparent 60%)} .th-hero h1{font-size:44px;margin-bottom:20px} .th-hero p{font-size:18px;opacity:.9;margin-bottom:35px} .th-cta{display:flex;justify-content:center;gap:20px;flex-wrap:wrap} .th-trust{margin-top:25px;display:flex;gap:25px;justify-content:center;font-size:14px;opacity:.85} .th-btn-primary{background:#fff;color:#2563eb;padding:14px 28px;border-radius:10px;font-weight:600;text-decoration:none;display:inline-block} .th-btn-outline{border:2px solid #fff;color:#fff;padding:14px 28px;border-radius:10px;text-decoration:none} .full{width:100%} .th-section{padding:80px 0} .th-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;max-width:1100px;margin:auto} .th-card{background:#fff;padding:35px;border-radius:16px;box-shadow:0 15px 40px rgba(0,0,0,.06)} .th-card input,.th-card textarea,.th-card select{width:100%;margin-bottom:15px;padding:14px;border:1px solid #e2e8f0;border-radius:10px} .th-success{background:#dcfce7;padding:15px;border-radius:8px;margin-bottom:15px} .th-error{background:#fee2e2;padding:15px;border-radius:8px;margin-bottom:15px} .th-privacy{font-size:13px;color:#64748b;margin-top:10px} @media(max-width:992px){ .th-grid{grid-template-columns:1fr} .th-hero h1{font-size:32px} }


.th-card {
    background: #2e56d3 !important;
  }

section.section.dark .grid .card {
    background: #22c55e !important;
}


