:root {
  --primary: #0ea5e9 !important;
  --primary-dark: #0284c7 !important;
  --primary-light: #7dd3fc !important;
  --secondary: #0c4a6e !important;
  --accent: #f59e0b !important;
  --text: #0f172a !important;
  --light-text: #64748b !important;
  --background: #f3f8fb !important;
  --card: #ffffff !important;
  --line: rgba(15, 23, 42, 0.08) !important;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.06) !important;
  --shadow-lg: 0 22px 50px rgba(14, 165, 233, 0.16) !important;
  --radius: 18px !important;
  --header-bg: rgba(255, 255, 255, 0.78) !important;
  --footer-bg: #082f49 !important;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system, sans-serif !important;
  color: var(--text) !important;
  background-color: var(--background) !important;
  background-image:
    radial-gradient(1200px 520px at -10% -20%, rgba(14, 165, 233, 0.16), transparent 55%),
    radial-gradient(900px 420px at 110% -10%, rgba(245, 158, 11, 0.12), transparent 50%),
    linear-gradient(180deg, #f7fbff 0%, #f3f8fb 40%, #eef6fa 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(14, 165, 233, 0.22);
  color: var(--text);
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.03em;
  color: var(--text);
}

/* Header */
header {
  background: var(--header-bg) !important;
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04) !important;
}

header .fa-file-pdf,
header .fa-file-image,
header .text-3xl {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
}

header .text-xl.font-bold {
  letter-spacing: -0.04em;
}

.navlink {
  position: relative;
  color: #334155 !important;
  font-weight: 600;
  transition: color 0.2s ease;
}

.navlink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.25s ease;
}

.navlink:hover,
.navlink.active {
  color: var(--primary) !important;
}

.navlink:hover::after,
.navlink.active::after {
  width: 100%;
}

#mobile-menu a {
  border-radius: 12px;
  font-weight: 600;
}

#mobile-menu a:hover {
  background: rgba(14, 165, 233, 0.08) !important;
  color: var(--primary);
}

/* Buttons */
.btn-primary,
.contact-form button,
.downloadbutton {
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 50%, #0284c7 100%) !important;
  color: #fff !important;
  border: 0;
  border-radius: 14px !important;
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover,
.contact-form button:hover,
.downloadbutton:hover {
  background: linear-gradient(135deg, #7dd3fc 0%, #0ea5e9 45%, #0369a1 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(2, 132, 199, 0.36);
  filter: brightness(1.04);
}

.btn-primary:disabled,
.btn-primary[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
  filter: none;
}

a.bg-white.border {
  border-radius: 14px !important;
  border-color: rgba(15, 23, 42, 0.12) !important;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

a.bg-white.border:hover {
  border-color: rgba(14, 165, 233, 0.4) !important;
  background: #fff !important;
  transform: translateY(-2px);
}

/* Tailwind color remaps */
.text-blue-500,
.text-green-500 {
  color: var(--primary) !important;
}

.bg-blue-500,
.bg-green-500 {
  background-color: var(--primary) !important;
}

.bg-blue-100,
.bg-green-100 {
  background-color: rgba(14, 165, 233, 0.12) !important;
}

.hover\:text-blue-500:hover,
.text-blue-500.hover\:underline:hover {
  color: var(--primary-dark) !important;
}

.from-blue-500,
.from-green-500 {
  --tw-gradient-from: #0ea5e9 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(14, 165, 233, 0)) !important;
}

.to-blue-600,
.to-green-600 {
  --tw-gradient-to: #f59e0b !important;
}

/* Tool page heroes match the homepage light look */
section.py-12.bg-gradient-to-r,
section.bg-gradient-to-r {
  position: relative;
  overflow: visible;
  background: transparent !important;
  background-image: none !important;
  color: var(--text) !important;
  box-shadow: none !important;
  padding-top: 4.5rem !important;
  padding-bottom: 1.25rem !important;
}

section.bg-gradient-to-r::before {
  display: none !important;
}

section.bg-gradient-to-r > * {
  position: relative;
  z-index: 1;
}

section.bg-gradient-to-r h1,
section.bg-gradient-to-r.text-white h1 {
  color: var(--text) !important;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 4vw, 3rem) !important;
}

section.bg-gradient-to-r p,
section.bg-gradient-to-r.text-white p,
section.bg-gradient-to-r .text-xl {
  color: var(--light-text) !important;
}

.section-container,
header > .container,
footer > .container {
  width: 100%;
  max-width: 1280px !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  counter-reset: legal-section;
}

.legal-content > .section:first-of-type:not(:has(h2)) {
  background: linear-gradient(165deg, rgba(14, 165, 233, 0.08), rgba(245, 158, 11, 0.06));
  border: 1px solid rgba(14, 165, 233, 0.14);
  border-radius: 22px;
  padding: 1.35rem 1.5rem;
}

.legal-content > .section:has(h2) {
  position: relative;
  margin-bottom: 1.25rem;
  padding: 1.35rem 1.4rem 1.4rem 5.4rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.legal-content > .section:has(h2)::before {
  content: "";
  position: absolute;
  left: 2.35rem;
  top: 4.15rem;
  bottom: 1.4rem;
  width: 2px;
  border-radius: 99px;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.35), rgba(245, 158, 11, 0.08));
}

.legal-content .section h2 {
  counter-increment: legal-section;
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0.85rem !important;
  padding-left: 0;
  font-size: 1.28rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
  color: #0f172a !important;
  line-height: 1.3;
}

.legal-content .section h2::before {
  content: counter(legal-section, decimal-leading-zero);
  position: absolute;
  left: 1.15rem;
  top: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #0ea5e9, #0369a1);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.28);
}

@media (max-width: 640px) {
  .legal-content > .section:has(h2) {
    padding: 4.4rem 1.15rem 1.2rem 1.15rem;
  }

  .legal-content > .section:has(h2)::before {
    display: none;
  }

  .legal-content .section h2::before {
    left: 1.15rem;
    top: 1.1rem;
  }
}

/* Homepage conversion panel */
.hero-convert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(14, 165, 233, 0.12);
  box-shadow: 0 24px 50px rgba(14, 165, 233, 0.12);
}

.hero-convert-card {
  width: 120px;
  min-height: 148px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: linear-gradient(160deg, #38bdf8 0%, #0284c7 100%);
  box-shadow: 0 16px 32px rgba(2, 132, 199, 0.28);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-convert-card i {
  font-size: 2.4rem;
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.hero-convert-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0ea5e9;
  background: rgba(14, 165, 233, 0.12);
}

.hero-convert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 10px;
}

.hero-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #0f172a !important;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-chip i {
  color: #0ea5e9;
  width: 16px;
  text-align: center;
}

.hero-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 10px 22px rgba(14, 165, 233, 0.12);
}

@media (max-width: 640px) {
  .hero-convert {
    padding: 20px;
  }

  .hero-convert-grid {
    grid-template-columns: repeat(2, minmax(90px, 1fr));
  }
}

/* Homepage hero */
.hero-shape {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 0;
  background: radial-gradient(closest-side, rgba(14, 165, 233, 0.22), transparent 70%) !important;
  clip-path: none !important;
  width: 62% !important;
  opacity: 1 !important;
  filter: blur(8px);
}

/* Cards and grids */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem !important;
}

.tool-item,
.card,
.testimonial-card,
.contact-info {
  border-radius: var(--radius) !important;
  border: 1px solid rgba(14, 165, 233, 0.08) !important;
  box-shadow: var(--shadow) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(8px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.tool-item:hover,
.card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.28) !important;
  box-shadow: var(--shadow-lg) !important;
  background: #fff !important;
}

.tool-item i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary) !important;
}

/* Feature icons */
.bg-blue-100.p-3.rounded-full,
.bg-blue-100.rounded-full,
.w-16.h-16.bg-blue-100,
.w-16.h-16.bg-green-100 {
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.16), rgba(245, 158, 11, 0.12)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Upload + workflow */
.file-upload-container {
  border: 2px dashed rgba(14, 165, 233, 0.28) !important;
  border-radius: 20px !important;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(245, 158, 11, 0.08)) border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.file-upload-container:hover {
  border-color: var(--primary) !important;
  box-shadow: 0 16px 40px rgba(14, 165, 233, 0.1);
  transform: translateY(-2px);
}

.bg-gray-50.rounded-lg,
.bg-gray-50.p-6.rounded-lg {
  background: rgba(255, 255, 255, 0.72) !important;
  border: 1px solid var(--line);
  border-radius: 20px !important;
  box-shadow: var(--shadow);
}

.progress-bar {
  height: 8px !important;
  border-radius: 99px !important;
  background: #e8eaf3 !important;
  overflow: hidden;
}

.progress-bar-inner {
  background: linear-gradient(90deg, var(--primary), var(--accent)) !important;
  border-radius: 99px;
}

.step-circle {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: #e8eaf3 !important;
  color: #475569 !important;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.04);
}

.step-circle.active {
  background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.28);
}

.step-container:not(:last-child)::after {
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.35), rgba(245, 158, 11, 0.25)) !important;
}

/* FAQ */
.faq-button {
  background: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-button:hover {
  background: rgba(14, 165, 233, 0.04);
  color: var(--primary);
}

.border.border-gray-200.rounded-lg {
  border-color: var(--line) !important;
  border-radius: 16px !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.faq-answer {
  background: #f0f9ff !important;
}

/* Forms */
.contact-form input,
.contact-form textarea {
  border-radius: 14px !important;
  border-color: #e2e8f0 !important;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.contact-info i {
  color: var(--primary) !important;
}

/* About page */
.tools-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.tools-list a.tool-item,
.tools-list li {
  background: #fff !important;
  border: 1px solid var(--line);
  border-radius: 16px !important;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.tools-list a.tool-item:hover,
.tools-list li:hover {
  background: #e0f2fe !important;
  color: var(--primary);
}

.section h2 {
  color: var(--primary) !important;
}

/* Footer */
footer.bg-gray-800,
footer {
  background:
    radial-gradient(700px 240px at 10% 0%, rgba(14, 165, 233, 0.22), transparent 60%),
    radial-gradient(500px 200px at 90% 100%, rgba(245, 158, 11, 0.12), transparent 55%),
    var(--footer-bg) !important;
  color: #e2e8f0 !important;
}

footer h1,
footer h2,
footer h3,
footer h4 {
  letter-spacing: -0.02em;
  color: #ffffff !important;
}

footer p,
footer li {
  color: #cbd5e1 !important;
}

footer a {
  color: #cbd5e1 !important;
  transition: color 0.2s ease, transform 0.2s ease;
}

footer a:hover {
  color: #ffffff !important;
}

footer .border-gray-700 {
  border-color: rgba(255, 255, 255, 0.18) !important;
}

footer .text-gray-400 {
  color: #cbd5e1 !important;
}

footer .flex.space-x-4 a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

footer .flex.space-x-4 a:hover {
  background: var(--primary);
  color: #fff !important;
}

section.bg-white {
  background: transparent !important;
}

section.bg-gray-50 {
  background: rgba(255, 255, 255, 0.38) !important;
  backdrop-filter: blur(10px);
}

textarea,
input[type="text"],
input[type="email"],
input[type="number"],
select {
  border-radius: 12px;
}

/* Images */
img.rounded-lg,
img.shadow-lg {
  border-radius: 24px !important;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12) !important;
}

.rounded-lg {
  border-radius: 16px !important;
}

.tool-article-section {
  background: rgba(255, 255, 255, 0.42);
}

.tool-article-section h2 {
  letter-spacing: -0.03em;
}

.tool-article {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #475569;
}

.tool-article-section a.font-medium {
  color: #0ea5e9;
  text-decoration: none;
}

.tool-article-section a.font-medium:hover {
  text-decoration: underline;
}

/* Focus */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* About page — unique layout */
.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.about-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.about-hero-panel {
  background: linear-gradient(165deg, #0c4a6e 0%, #0369a1 55%, #0ea5e9 100%);
  color: #fff;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 24px 50px rgba(2, 132, 199, 0.28);
}

.about-hero-panel p {
  color: rgba(255, 255, 255, 0.88) !important;
  line-height: 1.7;
}

.about-hero-panel strong {
  color: #fff;
}

.about-stat {
  text-align: center;
  padding: 1.25rem 1rem;
}

.about-stat b {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  letter-spacing: -0.04em;
  color: var(--text);
}

.about-stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--light-text);
  font-weight: 600;
}

.about-value {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-value-num {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}

.about-audience {
  border-radius: 22px;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-audience i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.12);
  color: var(--primary) !important;
  margin-bottom: 1rem;
}

.about-timeline {
  border-left: 2px solid rgba(14, 165, 233, 0.25);
  padding-left: 1.5rem;
}

.about-timeline li {
  position: relative;
  padding-bottom: 1.5rem;
}

.about-timeline li::before {
  content: "";
  position: absolute;
  left: -1.7rem;
  top: 0.45rem;
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.18);
}

.about-quote {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.45;
  color: var(--text);
}

/* Homepage polish */
.about-kicker.justify-center::before {
  display: none;
}

.home-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 1.5rem;
}

.home-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(14, 165, 233, 0.18);
  font-size: 0.82rem;
  font-weight: 700;
  color: #0369a1;
}

.home-trust i {
  color: var(--primary);
  font-size: 0.75rem;
}

.hero-convert {
  position: relative;
}

.hero-convert::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 32px;
  background: radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.18), transparent 55%);
  z-index: -1;
  filter: blur(6px);
}

.tools-group {
  margin-bottom: 2.25rem;
}

.tools-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0369a1;
}

.tools-group-title i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.12);
  color: var(--primary);
}

.home-feature {
  height: 100%;
  padding: 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.home-feature .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.16), rgba(245, 158, 11, 0.1));
}

.home-quote {
  height: 100%;
  padding: 1.75rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}

.home-quote-mark {
  font-size: 3.4rem;
  line-height: 0.6;
  color: rgba(14, 165, 233, 0.28);
  font-family: Georgia, serif;
  margin-bottom: 0.75rem;
}

.home-quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.25rem;
}

.home-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #0369a1);
}

.home-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.home-guide-card {
  padding: 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.home-guide-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.home-guide-card h3 i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.12);
  color: var(--primary);
}

.home-cta-wrap {
  padding: 0 1rem 4rem;
}

/* Site-wide interlinks */
.site-links {
  padding: 3.5rem 0 2rem;
}

.site-links-block {
  margin-bottom: 1.75rem;
  padding: 1.25rem 1.35rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(14, 165, 233, 0.16);
  color: #0f172a !important;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

a.site-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.12);
  color: var(--primary) !important;
}

.site-chip.is-current {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  border-color: transparent;
  color: #fff !important;
}

@media (max-width: 768px) {
  .home-guide-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header {
    background: rgba(255, 255, 255, 0.92) !important;
  }

  .tools-grid {
    gap: 0.75rem !important;
  }

  .about-hero-panel {
    padding: 1.5rem;
  }
}
