:root {
  /* Brand Colors */
  --primary-blue: #0B3C5D;
  --secondary-blue: #1F5F8B;
  --dark-navy: #082d47;
  --cta-gradient: linear-gradient(135deg, #0B3C5D 0%, #1F5F8B 100%);
  --light-blue: #EAF4FB;
  --primary-orange: #FF6B00;
  --secondary-orange: #FFA64D;
  --white: #FFFFFF;
  
  /* Text Colors */
  --text-dark: #0B3C5D; /* Headings should be dark blue */
  --text-body: #444444;
  --text-muted: #666666;
  
  /* UI Elements */
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(11, 60, 93, 0.1);
  --shadow-lg: 0 8px 40px rgba(11, 60, 93, 0.15);
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary-blue);
  font-weight: 700;
}

h1 { font-size: 40px; line-height: 1.2; }
h2 { font-size: 32px; line-height: 1.3; }
h3 { font-size: 24px; }

p { font-size: 16px; }

a {
  text-decoration: none !important;
  transition: all 0.2s;
}

/* Navbar Customization */
.navbar {
  background-color: var(--primary-blue);
  padding: 1rem 2rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white) !important;
}

.navbar-brand span {
  color: var(--primary-orange);
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  font-size: 15px;
  margin: 0 10px;
}

.nav-link:hover {
  color: var(--secondary-orange) !important;
}

.nav-cta {
  background-color: var(--primary-orange);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
}

.nav-cta:hover {
  background-color: var(--secondary-orange);
  transform: translateY(-1px);
}

/* Hero Sections */
.hero {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white) !important;
}

.hero h1, 
.hero h2, 
.hero h3, 
.hero h4, 
.hero p,
.hero .lead,
.hero .checklist li {
  color: var(--white) !important;
}

.hero-image-wrapper img {
  max-width: 100%;
  height: auto;
}

.hero-blue {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white) !important;
}

.hero-blue h1, 
.hero-blue h2, 
.hero-blue h3, 
.hero-blue h4, 
.hero-blue p,
.hero-blue .lead {
  color: var(--white) !important;
}

.hero-tools {
  padding: 60px 0;
  background: var(--cta-gradient) !important;
  color: var(--white) !important;
}

.hero-tools h1,
.hero-tools h2,
.hero-tools h3,
.hero-tools h4,
.hero-tools p,
.hero-tools .lead {
  color: var(--white) !important;
}

/* Buttons */
.btn-orange {
  background-color: var(--primary-orange);
  color: var(--white) !important;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-orange::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: rotate(45deg);
  transition: 0.5s;
}

.btn-orange:hover::after {
  left: 100%;
}

.btn-orange:hover {
  background-color: #e66000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

/* Cards */
.bg-primary-blue {
  background-color: var(--primary-blue);
}

.bg-dark-navy {
  background-color: var(--dark-navy) !important;
}

.bg-cta-gradient {
  background: var(--cta-gradient) !important;
  color: var(--white) !important;
}

.bg-cta-gradient h1, 
.bg-cta-gradient h2, 
.bg-cta-gradient h3, 
.bg-cta-gradient h4, 
.bg-cta-gradient p {
  color: var(--white) !important;
}

.bg-primary-orange {
  background-color: var(--primary-orange) !important;
  color: var(--white) !important;
}

.bg-primary-orange h1,
.bg-primary-orange h2,
.bg-primary-orange h3,
.bg-primary-orange h4,
.bg-primary-orange p,
.bg-primary-orange span {
  color: var(--white) !important;
}

/* Pain Point Items */
.pain-point-item {
  transition: all 0.3s;
}

.pain-point-item img {
  margin-bottom: 1.5rem;
}

/* Testimonial Card */
.testimonial-card {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--primary-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
  background: var(--white);
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: 0 4px 15px rgba(11, 60, 93, 0.05);
  transition: all 0.3s ease;
  border-radius: 12px;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(11, 60, 93, 0.1);
  border-color: rgba(11, 60, 93, 0.15);
}

/* Tool Cards (Tools Page) */
.tool-card {
  background: var(--white);
  border: 1px solid rgba(11, 60, 93, 0.08);
  border-radius: 12px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(11, 60, 93, 0.05);
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(11, 60, 93, 0.1);
  border-color: rgba(11, 60, 93, 0.15);
}

.tool-logo-wrapper {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.tool-logo-wrapper img {
  max-height: 100%;
  max-width: 100%;
}

.tool-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  flex-grow: 1;
}

.tool-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-body);
}

.tool-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

.tool-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  flex-grow: 1;
}

.tool-features-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-body);
}

.tool-features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-weight: bold;
}

.btn-learn-more {
  background-color: var(--primary-orange);
  color: var(--white) !important;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  text-align: center;
}

.btn-learn-more:hover {
  background-color: var(--dark-navy);
  color: var(--white);
  transform: translateY(-2px);
}

.tip-banner {
  background-color: #FFF5ED;
  border-left: 4px solid var(--primary-orange);
  color: var(--primary-blue) !important;
  padding: 15px 25px;
  border-radius: 6px;
  text-align: left;
  max-width: 100%;
  margin-top: 30px;
}

.tip-banner p {
  color: var(--primary-blue) !important;
  font-size: 15px;
}

.step-label {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 40px;
}

.step-label span {
  color: var(--primary-orange);
}

.tools-intro {
  max-width: 800px;
  margin: 0 auto 60px;
}

/* Comparison Table Styles */
.comparison-table-wrapper {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(11, 60, 93, 0.1);
}

.comparison-table-wrapper .table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.comparison-table-wrapper thead th {
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  border: none;
  vertical-align: middle;
}

.comparison-table-wrapper .feature-col {
  background-color: var(--primary-orange);
  width: 30%;
}

.comparison-table-wrapper .tool-col {
  background-color: var(--primary-blue);
  width: 35%;
}

.comparison-table-wrapper tbody td {
  padding: 18px 20px;
  font-size: 15px;
  color: var(--text-body);
  border-bottom: 1px solid rgba(11, 60, 93, 0.05);
  vertical-align: middle;
}

.comparison-table-wrapper tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table-wrapper tbody tr:nth-child(even) {
  background-color: rgba(11, 60, 93, 0.02);
}

.comparison-table-wrapper .text-success {
  color: #28a745 !important;
  font-weight: 600;
}

.testimonial-card strong {
  color: var(--primary-blue);
  font-weight: 700;
}

.quote-icon {
  position: absolute;
  opacity: 0.5;
}

.quote-left {
  top: 15px;
  left: 15px;
}

.quote-right {
  bottom: 15px;
  right: 15px;
}

.testimonial-content {
  padding: 10px 0;
}

/* Utilities */
.max-width-600 {
  max-width: 600px;
}

.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Custom Card adjustments */
.custom-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s;
  box-shadow: var(--shadow);
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.bg-light-blue {
  background-color: var(--light-blue);
}

/* Dashboard Mockup Style */
.dashboard-mockup {
  background: var(--white);
  border-radius: 12px;
  padding: 15px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 60, 93, 0.1);
}

.dashboard-mockup img {
  width: 100%;
  border-radius: 8px;
}

/* Tool Hero Specifics */
.apollo-hero { background: linear-gradient(135deg, #0B3C5D 0%, #1F5F8B 100%); }
.mailreach-hero { background: linear-gradient(135deg, #101828 0%, #1D2939 100%); }
.snov-hero { background: linear-gradient(135deg, #4F46E5 0%, #3730A3 100%); }
.pipedrive-hero { background: linear-gradient(135deg, #064E3B 0%, #059669 100%); }
.linkedin-hero { background: linear-gradient(135deg, #0A66C2 0%, #004182 100%); }

.feature-tag {
  display: inline-block;
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary-orange);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Checklist items */
.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 900;
}

/* Footer */
footer {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 60px 0 30px;
}

footer a {
  color: rgba(255, 255, 255, 0.8) !important;
}

footer a:hover {
  color: var(--primary-orange) !important;
}

.site-footer {
  background: linear-gradient(135deg, #06162E 0%, #082d47 100%);
  padding: 0;
}

.footer-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  font-size: 18px;
  transition: all 0.25s ease;
}

.footer-social-btn:hover {
  background: var(--primary-orange);
  transform: translateY(-2px);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.65) !important;
  font-weight: 600;
  font-size: 14px;
}

.footer-bottom-links a:hover {
  color: var(--white) !important;
}

.case-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(11, 60, 93, 0.06);
  border: 1px solid rgba(11, 60, 93, 0.05);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.case-card .case-tag {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}

.case-card.agency { border-left: 5px solid var(--primary-orange); }
.case-card.freelancer { border-left: 5px solid var(--primary-blue); }
.case-card.consultant { border-left: 5px solid #28a745; }

.case-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.case-stat-box {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.case-stat-box .stat-val {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-orange);
  line-height: 1.2;
}

.case-stat-box .stat-label {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-card-simple {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(11, 60, 93, 0.08);
  height: 100%;
}

.stat-card-simple .h2 {
  color: var(--primary-orange);
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 5px;
}

.stat-card-simple p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0;
}

.case-checklist {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.case-checklist li {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-body);
}

.case-checklist li::before {
  content: "✓";
  color: var(--primary-orange);
  font-weight: bold;
  margin-right: 10px;
}

.real-results-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.real-results-tag i {
  color: var(--primary-orange);
  margin-right: 5px;
}

/* Blog Page Styles */
.blog-hero {
  background: linear-gradient(rgba(240, 244, 255, 0.9), rgba(240, 244, 255, 0.9)), url('../images/blog-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: var(--dark-navy);
}

.search-container {
  max-width: 600px;
  margin: 30px auto 0;
  display: flex;
  background: var(--white);
  padding: 5px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.search-container input {
  border: none;
  padding: 12px 20px;
  flex-grow: 1;
  border-radius: 6px;
  outline: none;
}

.search-container button {
  background: var(--primary-orange);
  color: var(--white);
  border: none;
  padding: 10px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.search-container button:hover {
  background: #e67e22;
}

.category-nav {
  background: #f8faff;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 15px 0;
  overflow-x: auto;
  white-space: nowrap;
}

.category-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-right: 25px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.category-link:hover, .category-link.active {
  background: rgba(11, 60, 93, 0.05);
  color: var(--primary-orange);
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card .category-tag {
  background: var(--primary-blue);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
}

.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--primary-blue);
}

.blog-card .date {
  font-size: 12px;
  color: #999;
  margin-bottom: 12px;
  display: block;
}

.blog-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.btn-read-guide {
  background: var(--primary-orange);
  color: var(--white);
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-read-guide:hover {
  background: #e67e22;
  color: var(--white);
}

/* Sidebar Styles */
.sidebar-widget {
  background: #fcfdfe;
  border: 1px solid rgba(11, 60, 93, 0.05);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
}

.sidebar-widget h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-blue);
  border-bottom: 2px solid var(--primary-orange);
  padding-bottom: 10px;
  display: inline-block;
}

.popular-guides-list {
  list-style: none;
  padding: 0;
}

.popular-guides-list li {
  margin-bottom: 12px;
  padding-left: 15px;
  position: relative;
}

.popular-guides-list li::before {
  content: "•";
  color: var(--primary-orange);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.popular-guides-list a {
  color: #444;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.popular-guides-list a:hover {
  color: var(--primary-orange);
}

.top-tools-sidebar {
  list-style: none;
  padding: 0;
}

.top-tool-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 8px;
  margin-bottom: 10px;
  text-decoration: none;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.top-tool-item:hover {
  border-color: var(--primary-orange);
  background: #fff9f5;
}

.top-tool-item i {
  color: var(--primary-orange);
  margin-right: 10px;
}

.faq-widget p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.faq-widget .question {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

/* Blog Post Single Template Styles */
.blog-post-hero {
  background: #f8faff;
  padding: 60px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.post-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.post-meta-item i {
  color: var(--primary-orange);
}

.post-updated-badge {
  background: #fcfdfe;
  border: 1px solid rgba(11, 60, 93, 0.1);
  padding: 5px 15px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-blue);
}

/* Quick Answer Box (AEO) */
.quick-answer-box {
  background-color: #FFF9F2;
  border: 1px solid #FFE5CC;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  position: relative;
}

.quick-answer-box h2 {
  font-size: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.best-for-list {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-top: 20px;
  flex-wrap: wrap;
}

.best-for-list li {
  background: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #FFE5CC;
  display: flex;
  align-items: center;
  gap: 8px;
}

.best-for-list li i {
  color: #28a745;
}

/* Table of Contents */
.toc-widget {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid rgba(11, 60, 93, 0.08);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(11, 60, 93, 0.03);
}

.toc-widget h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 15px;
  border-bottom: none;
  padding-bottom: 0;
  display: block;
  position: relative;
}

.toc-widget h4::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-orange);
  margin-top: 8px;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.toc-list li {
  margin-bottom: 15px;
}

.toc-list a {
  color: #444;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
}

.toc-list a:hover {
  color: var(--primary-orange);
  padding-left: 5px;
}

/* Pros & Cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.pros-box, .cons-box {
  padding: 20px;
  border-radius: 12px;
  height: 100%;
}

.pros-box {
  background: #F0FDF4;
  border: 1px solid #DCFCE7;
}

.cons-box {
  background: #FEF2F2;
  border: 1px solid #FEE2E2;
}

.pros-box h4, .cons-box h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.pros-box h4 { color: #166534; }
.cons-box h4 { color: #991B1B; }

/* Sticky CTA Footer */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.1);
  padding: 15px 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-bar .btn-primary {
  background: var(--primary-orange) !important;
  border-color: var(--primary-orange) !important;
}

.sticky-cta-bar .btn-primary:hover {
  background: var(--secondary-orange) !important;
  border-color: var(--secondary-orange) !important;
}

.comparison-mini-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-mini-table th, .comparison-mini-table td {
  padding: 10px;
  border: 1px solid #eee;
  text-align: center;
}

.comparison-mini-table th {
  background: #f8faff;
  font-weight: 700;
}

/* About Page Specific Styles - Rich Formatting */
.about-hero {
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.2) 100%), url('../images/Sales team.png');
  background-size: cover;
  background-position: center;
  padding: 140px 0;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.about-hero h1 {
  font-size: 64px;
  font-weight: 800;
  color: #0B3C5D;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1.5px;
}

.about-hero h1 span {
  font-weight: 500;
  color: #4A5568;
  display: block;
  font-size: 38px;
  margin-top: 15px;
  letter-spacing: -0.5px;
}

.about-hero .lead {
  font-size: 20px;
  color: #4A5568;
  max-width: 550px;
  margin-bottom: 45px;
  line-height: 1.6;
}

.stats-grid-card {
  background: var(--white);
  border-radius: 32px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(11, 60, 93, 0.08);
  border: 1px solid rgba(11, 60, 93, 0.05);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 35px;
  padding: 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: #F8FAFF;
  transform: translateX(10px);
}

.stat-item:last-child { margin-bottom: 0; }

.stat-icon-circle {
  width: 64px;
  height: 64px;
  background: #EAF4FB;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B3C5D;
  font-size: 28px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon-circle {
  background: #0B3C5D;
  color: var(--white);
  transform: rotate(-5deg);
}

.stat-info h4 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #FF6B00;
}

.stat-info p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #2D3748;
}

.stat-info span {
  font-size: 13px;
  color: #718096;
  line-height: 1.5;
  display: block;
}

.what-we-do-box {
  background: linear-gradient(135deg, #F0F4FF 0%, #FFFFFF 100%);
  border-radius: 32px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 60, 93, 0.08);
}

.what-we-do-box h3 {
  font-size: 28px;
  font-weight: 800;
  color: #0B3C5D;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.what-we-do-box h4 {
  font-size: 26px;
  font-weight: 700;
  color: #1A202C;
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.4;
}

.rich-checklist li {
  font-size: 17px;
  font-weight: 600;
  color: #2D3748;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.rich-checklist li:hover {
  background: var(--white);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.rich-checklist li i {
  color: #38A169;
  margin-right: 15px;
  font-size: 20px;
}

.tool-logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  background: var(--white);
  padding: 30px 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.02);
}

.tool-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  color: #0B3C5D;
  font-size: 16px;
  transition: all 0.3s ease;
}

.tool-logo-item:hover {
  transform: translateY(-5px);
}

.tool-logo-item img {
  height: 32px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.tool-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.approach-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(11, 60, 93, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

.approach-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(11, 60, 93, 0.1);
  border-color: #FF6B00;
}

.approach-card h4 {
  font-size: 42px;
  font-weight: 800;
  color: #FF6B00;
  margin-bottom: 15px;
}

.approach-card p {
  font-size: 17px;
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 8px;
}

.approach-card span {
  font-size: 14px;
  color: #718096;
  font-weight: 500;
}

.diff-col {
  padding: 50px;
  border-radius: 32px;
  height: 100%;
  transition: all 0.3s ease;
}

.diff-col.others {
  background: #F7FAFC;
  border: 1px solid #E2E8F0;
}

.diff-col.ours {
  background: var(--white);
  box-shadow: 0 30px 60px rgba(11, 60, 93, 0.1);
  border: 2px solid #EAF4FB;
  position: relative;
}

.diff-col.ours::after {
  content: 'BEST CHOICE';
  position: absolute;
  top: -15px;
  right: 30px;
  background: #FF6B00;
  color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.blueprint-cta {
  background: #06162E;
  padding: 120px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.blueprint-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(49, 130, 206, 0.1) 0%, transparent 50%);
}

.blueprint-cta h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--white);
  line-height: 1.2;
}

.blueprint-cta .lead {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 50px;
  line-height: 1.7;
}

.cta-form-box {
  background: rgba(255, 255, 255, 0.07);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.cta-form-box input {
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 18px 25px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-form-box input:focus {
  border-color: #FF6B00;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.2);
  outline: none;
}

.blueprint-mockup img {
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  transition: all 0.5s ease;
}

.blueprint-mockup:hover img {
  transform: perspective(1000px) rotateY(-5deg) rotateX(0deg);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
}

.contact-hero {
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 0.9) 55%, rgba(255, 255, 255, 0.2) 100%), url('../images/Sales team.png');
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.contact-hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -1.2px;
}

.contact-hero .lead {
  font-size: 18px;
  color: #4A5568;
  max-width: 520px;
  margin-bottom: 34px;
  line-height: 1.6;
}

.contact-surface {
  background: linear-gradient(180deg, #FFFFFF 0%, #F6FAFF 100%);
}

.contact-card {
  background: var(--white);
  border: 1px solid rgba(11, 60, 93, 0.08);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 45px rgba(11, 60, 93, 0.08);
}

.contact-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.contact-card-head h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0B3C5D;
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EAF4FB;
  color: #0B3C5D;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-email {
  display: inline-block;
  font-weight: 800;
  font-size: 16px;
  color: #FF6B00 !important;
  margin-bottom: 12px;
  word-break: break-word;
}

.contact-support-card .rich-checklist li {
  padding: 10px 12px;
}

.contact-form-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 100%);
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid rgba(11, 60, 93, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 600;
  background: rgba(248, 250, 255, 0.9);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #FF6B00;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.15);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.contact-guidance {
  background: linear-gradient(135deg, #EFF4FF 0%, #FFFFFF 100%);
  border: 1px solid rgba(11, 60, 93, 0.08);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 18px 45px rgba(11, 60, 93, 0.06);
}

.contact-guidance-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0B3C5D;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-bottom-cta {
  background: #06162E;
  padding: 90px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 30%, rgba(255, 107, 0, 0.14) 0%, transparent 55%),
              radial-gradient(circle at 80% 70%, rgba(49, 130, 206, 0.14) 0%, transparent 55%);
  pointer-events: none;
}

.contact-bottom-cta .container {
  position: relative;
  z-index: 1;
}

.contact-bottom-cta h2,
.contact-bottom-cta p {
  color: var(--white);
}

.contact-cta-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 26px;
  backdrop-filter: blur(10px);
}

.contact-bottom-cta .form-control {
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 16px 18px;
  font-weight: 600;
}

.contact-bottom-cta .form-control:focus {
  border-color: #FF6B00;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.18);
}

.contact-cta-list li {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.contact-cta-list li i {
  color: #38A169;
}

.text-orange { color: #FF6B00 !important; }
.text-primary-orange { color: var(--primary-orange) !important; }
.rounded-8 { border-radius: 8px !important; }

.home-hero {
  background: linear-gradient(135deg, #06162E 0%, #082d47 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px circle at 20% 20%, rgba(255, 107, 0, 0.18), transparent 55%),
    radial-gradient(700px circle at 85% 40%, rgba(31, 95, 139, 0.30), transparent 60%);
  pointer-events: none;
}

.home-hero .container {
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--white);
}

.hero-pill i {
  color: var(--primary-orange);
}

.hero-title {
  font-size: 56px;
  line-height: 1.12;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.85;
  max-width: 560px;
  color: var(--white);
}

.hero-visual {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.hero-visual-inner {
  background: var(--white);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 35px rgba(11, 60, 93, 0.12);
}

.home-feature-card {
  background: var(--white);
  border: 1px solid rgba(11, 60, 93, 0.08);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 12px 35px rgba(11, 60, 93, 0.06);
  transition: all 0.3s ease;
}

.home-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(11, 60, 93, 0.10);
  border-color: rgba(255, 107, 0, 0.35);
}

.home-feature-icon {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  background: rgba(234, 244, 251, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.home-feature-icon img {
  max-height: 56px;
  max-width: 56px;
  object-fit: contain;
}

.home-step-card {
  background: var(--white);
  border: 1px solid rgba(11, 60, 93, 0.08);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 12px 35px rgba(11, 60, 93, 0.06);
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.14);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin: 0 auto 16px;
}

.home-callout {
  background: var(--primary-orange);
  border-radius: 14px;
  color: var(--white);
  padding: 18px 22px;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(255, 107, 0, 0.22);
}

.home-form-card {
  background: var(--white);
  border: 1px solid rgba(11, 60, 93, 0.08);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 55px rgba(11, 60, 93, 0.08);
}

.home-form-card .form-control {
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 600;
  background: rgba(248, 250, 255, 0.95);
  border: 1px solid rgba(11, 60, 93, 0.12);
}

.home-form-card .form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.18);
}

.home-form-note {
  font-size: 13px;
  color: #718096;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.home-tools-grid .tool-card {
  padding: 28px;
  border-radius: 16px;
}

.home-tools-grid .tool-logo-wrapper {
  margin-bottom: 18px;
  height: 44px;
  justify-content: flex-start;
}

.home-tools-grid .tool-logo-wrapper img {
  max-height: 40px;
}

.home-tools-grid h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.home-tools-grid .btn-learn-more {
  padding: 10px 22px;
  font-size: 13px;
  border-radius: 8px;
}

.faq-accordion .accordion-item {
  border: 1px solid rgba(11, 60, 93, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(11, 60, 93, 0.04);
}

.faq-accordion .accordion-button {
  font-weight: 800;
  color: var(--primary-blue);
  background: #F8FAFF;
  padding: 18px 20px;
}

.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.16);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(255, 107, 0, 0.08);
  color: var(--primary-blue);
  box-shadow: none;
}

.faq-accordion .accordion-body {
  padding: 18px 20px;
  color: var(--text-body);
}

.home-blog .blog-card {
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 35px rgba(11, 60, 93, 0.06);
  border: 1px solid rgba(11, 60, 93, 0.06);
}

.home-blog .blog-card .category-tag {
  background: rgba(11, 60, 93, 0.08);
  color: var(--primary-blue);
}

.home-blog .blog-card h3 {
  font-size: 18px;
}

.home-cta {
  background: linear-gradient(135deg, #06162E 0%, #082d47 100%) !important;
  color: var(--white) !important;
}

.btn-outline-primary {
  color: #0B3C5D;
  border-color: #0B3C5D;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #0B3C5D;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11, 60, 93, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  .hero { padding: 60px 0; }
  .home-hero { padding: 70px 0; }
  .hero-title { font-size: 38px; }
  .contact-hero { padding: 90px 0; min-height: 520px; }
  .contact-hero h1 { font-size: 38px; }
  .contact-card { padding: 26px; border-radius: 22px; }
}

.tool-page .breadcrumb a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 700;
}

.tool-page .breadcrumb a:hover {
  color: var(--primary-orange);
}

.tool-title {
  font-size: 38px;
  font-weight: 900;
  color: var(--primary-blue);
  letter-spacing: -0.4px;
}

.tool-subtitle {
  color: var(--text-muted);
  font-weight: 600;
}

.tool-page .tool-card {
  background: var(--white);
  border: 1px solid rgba(11, 60, 93, 0.08);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(11, 60, 93, 0.06);
  height: auto;
  display: block;
}

.tool-textarea-wrap {
  position: relative;
}

.tool-textarea {
  border-radius: 14px;
  border: 1px solid rgba(11, 60, 93, 0.15);
  padding: 16px 16px 40px;
  font-weight: 600;
  min-height: 220px;
  resize: vertical;
}

.tool-textarea:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.12);
}

.tool-textarea-counter {
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-size: 12px;
  color: #667085;
  background: rgba(255, 255, 255, 0.8);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11, 60, 93, 0.08);
}

.tool-stat-card {
  background: var(--white);
  border: 1px solid rgba(11, 60, 93, 0.08);
  border-radius: 14px;
  padding: 16px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(11, 60, 93, 0.04);
}

.tool-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 10px;
}

.tool-stat-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary-blue);
  line-height: 1.1;
}

.tool-stat-unit {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-muted);
}

.tool-stat-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 6px;
}

.bg-purple-subtle {
  background: rgba(99, 102, 241, 0.12);
}

.text-purple {
  color: #6366f1;
}

.tool-keyword-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tool-keyword-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 14px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(11, 60, 93, 0.06);
  border-radius: 12px;
  background: #fcfdff;
}

.tool-keyword-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--primary-blue);
}

.tool-keyword-meta {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
  text-align: right;
  margin-bottom: 6px;
}

.tool-keyword-bar {
  height: 8px;
  background: rgba(11, 60, 93, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.tool-keyword-bar span {
  display: block;
  height: 100%;
  background: var(--primary-blue);
  border-radius: 999px;
}

.tool-step {
  background: #fcfdfe;
  border: 1px solid rgba(11, 60, 93, 0.08);
  border-radius: 14px;
  padding: 16px;
  height: 100%;
}

.tool-step-badge {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.14);
  color: var(--primary-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 10px;
}

.tool-step-title {
  font-weight: 900;
  color: var(--primary-blue);
  margin-bottom: 6px;
  font-size: 14px;
}

.tool-step-text {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0;
}

.tool-reading-card {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.08) 0%, rgba(255, 255, 255, 1) 70%);
  border-color: rgba(22, 163, 74, 0.16);
}

.tool-reading-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 163, 74, 0.14);
  color: #15803d;
}

.tool-reading-time {
  font-size: 34px;
  font-weight: 900;
  color: #15803d;
  margin-top: 6px;
}

.tool-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tool-sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border: 1px solid rgba(11, 60, 93, 0.06);
  border-radius: 12px;
  text-decoration: none;
  color: var(--primary-blue);
  font-weight: 800;
  background: #fcfdff;
  transition: all 0.2s ease;
}

.tool-sidebar-link:hover {
  border-color: rgba(255, 107, 0, 0.35);
  transform: translateY(-1px);
  color: var(--primary-blue);
}

@media (max-width: 768px) {
  .tool-title { font-size: 30px; }
  .tool-keyword-row { grid-template-columns: 1fr; }
  .tool-keyword-meta { text-align: left; }
}
