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

:root {
  --primary: #a16207;
  --primary-dark: #854d0e;
  --secondary: #1e1a17;
  --accent: #fbbf24;
  --text: #2b2521;
  --text-light: #78716c;
  --background: #f8f5ef;
  --light-bg: #f3ede2;
  --border: #e7dcc8;
  --success: #10b981;
  --warning: #d97706;
  --error: #ef4444;
  --shadow: 0 10px 24px -14px rgb(30 26 23 / 0.22), 0 8px 16px -16px rgb(30 26 23 / 0.16);
  --shadow-lg: 0 24px 48px -20px rgb(30 26 23 / 0.28), 0 10px 24px -16px rgb(30 26 23 / 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgb(251 191 36 / 0.08), transparent 30%),
    radial-gradient(circle at top left, rgb(161 98 7 / 0.05), transparent 28%),
    linear-gradient(180deg, #f8f5ef 0%, #fcfaf6 14%, #ffffff 100%);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  background:
    radial-gradient(circle at top left, rgb(251 191 36 / 0.08), transparent 18%),
    linear-gradient(135deg, #3b2f2f 0%, #2b2320 46%, #1e1a17 100%);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 16px;
}

.logo a {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.logo i {
  color: var(--accent);
  font-size: 2rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 12px;
  background: rgb(255 255 255 / 0.08);
  color: white;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  flex-wrap: wrap;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, background 0.3s;
  font-size: 1rem;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  color: #1e1a17;
  font-weight: 700;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 56%, #a16207 100%);
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #f5b51d 0%, #c96d09 56%, #8a5409 100%);
}

.search-bar {
  display: flex;
  gap: 8px;
  flex: 1;
  max-width: 420px;
}

.search-bar input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid rgb(251 191 36 / 0.18);
  border-radius: 10px;
  font-size: 0.95rem;
  outline: none;
  background: rgb(255 255 255 / 0.96);
}

.search-bar button {
  padding: 10px 18px;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 56%, #a16207 100%);
  color: #1e1a17;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
  white-space: nowrap;
}

.search-bar button:hover {
  background: linear-gradient(135deg, #f5b51d 0%, #c96d09 56%, #8a5409 100%);
}

.breadcrumbs {
  padding: 20px 0;
  font-size: 0.92rem;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
}

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

.breadcrumbs .separator {
  margin: 0 8px;
  color: #94a3b8;
}

.ad-container {
  max-width: 1200px;
  margin: 34px auto;
  padding: 20px;
  background: var(--light-bg);
  border-radius: 16px;
  text-align: center;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border);
}

.ad-label {
  color: var(--text-light);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.ad-placeholder {
  color: var(--text-light);
  font-style: italic;
}

.tool-header {
  background:
    radial-gradient(circle at top right, rgb(251 191 36 / 0.22), transparent 26%),
    linear-gradient(135deg, #3b2f2f 0%, #2a211f 52%, #1e1a17 100%);
  color: white;
  padding: 40px;
  border-radius: 24px;
  margin: 20px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  box-shadow: var(--shadow-lg);
}

.tool-title-section {
  flex: 1 1 620px;
}

.tool-brand-head {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.tool-hero-brand {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
}

.tool-brand-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tool-hero-brand img,
.alternative-icon img,
.related-card-brand img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.tool-hero-brand.is-fallback,
.alternative-icon.is-fallback,
.related-card-brand.is-fallback {
  color: #f5f5f4;
}

.logo-fallback-text {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.tool-title-section h1 {
  font-size: 2.5rem;
  line-height: 1.16;
  margin-bottom: 14px;
}

.tool-subtitle {
  font-size: 1.1rem;
  max-width: 760px;
  opacity: 0.95;
}

.tool-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.tool-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.16);
  backdrop-filter: blur(8px);
  font-size: 0.94rem;
}

.tool-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  min-width: 280px;
  max-width: 320px;
}

.visit-btn {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 56%, #a16207 100%);
  color: #1e1a17;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 12px 22px rgb(30 26 23 / 0.22);
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.visit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgb(30 26 23 / 0.24);
}

.tool-verdict-card {
  background: rgb(251 191 36 / 0.1);
  border: 1px solid rgb(251 191 36 / 0.18);
  border-radius: 20px;
  padding: 20px;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.18);
}

.tool-verdict-card h3 {
  font-size: 1.02rem;
  margin-bottom: 12px;
}

.tool-verdict-card p {
  margin: 0 0 14px;
  color: rgb(255 255 255 / 0.92);
  font-size: 0.95rem;
}

.verdict-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.verdict-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: white;
  font-size: 0.93rem;
}

.verdict-list i {
  color: #bfdbfe;
  margin-top: 3px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.tool-article {
  background: linear-gradient(180deg, #fffdfa 0%, #f9f3e9 100%);
  padding: 38px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgb(226 232 240 / 0.8);
}

.table-of-contents {
  margin-bottom: 30px;
  border: 1px solid var(--border);
  background: var(--light-bg);
  border-radius: 18px;
  padding: 22px;
}

.table-of-contents h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--secondary);
}

.table-of-contents ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.table-of-contents a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.table-of-contents a:hover {
  text-decoration: underline;
}

.tool-article h2 {
  font-size: 1.8rem;
  margin: 42px 0 18px;
  color: var(--secondary);
}

.tool-article h2:first-of-type {
  margin-top: 0;
}

.tool-article h3 {
  font-size: 1.24rem;
  margin: 28px 0 12px;
  color: var(--secondary);
}

.tool-article p {
  margin-bottom: 18px;
  color: #334155;
  font-size: 1.04rem;
  overflow-wrap: anywhere;
}

.tool-article ul,
.tool-article ol {
  margin: 18px 0 22px 24px;
}

.tool-article li {
  margin-bottom: 10px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0 12px;
}

.feature-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  background: linear-gradient(180deg, #fffdfa 0%, #f7efe1 100%);
}

.feature-card h3 {
  margin-top: 0;
  font-size: 1.06rem;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
  overflow-wrap: anywhere;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.pricing-table th {
  background: var(--primary);
  color: white;
  text-align: left;
  padding: 14px 16px;
  font-size: 0.96rem;
}

.pricing-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--border);
  background: #fffdfa;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover td {
  background: #f8f1e4;
}

.pricing-table .popular td {
  background: rgb(251 191 36 / 0.12);
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.pros-box,
.cons-box {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid;
}

.pros-box {
  background: rgb(16 185 129 / 0.08);
  border-color: rgb(16 185 129 / 0.25);
}

.cons-box {
  background: rgb(239 68 68 / 0.08);
  border-color: rgb(239 68 68 / 0.22);
}

.pros-box h3,
.cons-box h3 {
  margin: 0 0 14px;
}

.pros-box ul,
.cons-box ul {
  list-style: none;
  margin: 0;
}

.pros-box li,
.cons-box li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid rgb(15 23 42 / 0.06);
}

.pros-box li:last-child,
.cons-box li:last-child {
  border-bottom: 0;
}

.pros-box li::before,
.cons-box li::before {
  position: absolute;
  left: 0;
  top: 10px;
  font-weight: 700;
}

.pros-box li::before {
  content: "✓";
  color: var(--success);
}

.cons-box li::before {
  content: "✗";
  color: var(--error);
}

.sidebar {
  display: grid;
  gap: 18px;
  align-self: start;
  position: sticky;
  top: 92px;
}

.sidebar-widget {
  background: linear-gradient(180deg, #fffdfa 0%, #f9f3e9 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  min-width: 0;
  overflow-wrap: anywhere;
}

.sidebar-widget h3 {
  font-size: 1.08rem;
  color: var(--secondary);
  margin-bottom: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.info-list,
.feature-list-widget {
  list-style: none;
}

.info-list li,
.feature-list-widget li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.info-list li:last-child,
.feature-list-widget li:last-child {
  border-bottom: 0;
}

.info-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.info-value {
  font-weight: 700;
  color: var(--secondary);
}

.info-value.free {
  color: var(--success);
}

.info-value.freemium {
  color: var(--primary);
}

.info-value.paid {
  color: var(--warning);
}

.big-rating {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.rating-stars-large {
  color: var(--warning);
  letter-spacing: 3px;
  margin: 10px 0 8px;
}

.rating-caption {
  color: var(--text-light);
  font-size: 0.92rem;
}

.alternative-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 12px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.alternative-item:last-child {
  margin-bottom: 0;
}

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

.alternative-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%);
  color: white;
  font-weight: 700;
  overflow: hidden;
}

.alternative-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.alternative-info p {
  font-size: 0.86rem;
  color: var(--text-light);
  margin: 0;
  overflow-wrap: anywhere;
}

.related-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.related-card-brand {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(161, 98, 7, 0.14), rgba(251, 191, 36, 0.18));
  border: 1px solid rgba(161, 98, 7, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.related-card-mode {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--primary);
}

.share-row {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.share-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--light-bg);
  text-decoration: none;
}

.share-row a:hover {
  background: #ebdfc8;
}

.related-tools {
  margin: 60px 0 30px;
}

.related-tools h2 {
  font-size: 1.8rem;
  margin-bottom: 22px;
  color: var(--secondary);
}

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

.related-card {
  background: linear-gradient(180deg, #fffdfa 0%, #f9f3e9 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

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

.related-card h4 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.related-card p {
  font-size: 0.93rem;
  color: var(--text-light);
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}

.related-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 0.86rem;
}

.related-category {
  background: var(--light-bg);
  color: var(--primary);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.related-rating {
  color: var(--warning);
  font-weight: 700;
}

.review-box {
  background: linear-gradient(180deg, #fffdfa 0%, #f9f3e9 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 56px;
}

.review-box h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.comment-form textarea {
  width: 100%;
  min-height: 140px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  font: inherit;
  resize: vertical;
  margin-bottom: 14px;
}

.comment-form button,
.button-soft {
  padding: 12px 20px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 56%, #a16207 100%);
  color: #1e1a17;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.comment-form button:hover,
.button-soft:hover {
  background: linear-gradient(135deg, #f5b51d 0%, #c96d09 56%, #8a5409 100%);
}

.footer {
  background:
    radial-gradient(circle at top left, rgb(251 191 36 / 0.08), transparent 18%),
    linear-gradient(135deg, #2f2522 0%, #241d1b 46%, #1e1a17 100%);
  color: white;
  padding: 56px 0 22px;
  margin-top: 50px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer h4 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer p,
.footer li,
.footer a {
  color: #d6d3d1;
}

.footer ul {
  list-style: none;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 56%, #a16207 100%);
  color: #1e1a17;
  box-shadow: 0 18px 34px rgba(30, 26, 23, 0.22);
  cursor: pointer;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(30, 26, 23, 0.28);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.footer-social-row,
.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-social-row {
  margin-top: 16px;
}

.footer-social-row a,
.share-actions a,
.share-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.share-panel p {
  margin-bottom: 14px;
}

.share-actions button:hover,
.share-actions a:hover,
.footer-social-row a:hover {
  background: rgba(251, 191, 36, 0.14);
}

.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1201;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(251, 191, 36, 0.18);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(59, 47, 47, 0.96), rgba(30, 26, 23, 0.96));
  box-shadow: 0 24px 70px rgba(30, 26, 23, 0.32);
  backdrop-filter: blur(16px);
}

.cookie-consent__content {
  max-width: 760px;
}

.cookie-consent__title {
  margin: 0 0 6px;
  color: #f5f5f4;
  font-size: 1rem;
  font-weight: 700;
}

.cookie-consent__text {
  margin: 0;
  color: #d6d3d1;
  line-height: 1.65;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-consent__link,
.cookie-consent__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.cookie-consent__link {
  color: #fbbf24;
}

.cookie-consent__btn {
  border: 1px solid rgba(251, 191, 36, 0.18);
  cursor: pointer;
}

.cookie-consent__btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #f5f5f4;
}

.cookie-consent__btn--primary {
  background: linear-gradient(135deg, #fbbf24, #a16207);
  color: #1e1a17;
}

@media (max-width: 768px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}

.footer li + li {
  margin-top: 10px;
}

.footer a {
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #334155;
  color: #94a3b8;
  font-size: 0.9rem;
  margin-top: 28px;
}

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

  .sidebar {
    position: static;
  }

  .tool-actions {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .nav-container {
    align-items: center;
    padding: 14px 18px;
  }

  .logo {
    margin-right: auto;
  }

  .logo a {
    font-size: 1.3rem;
  }

  .logo-mark {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .logo i {
    font-size: 1.7rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu,
  .search-bar,
  .nav-cta {
    display: none;
    width: 100%;
  }

  .nav-container.menu-open .nav-menu,
  .nav-container.menu-open .search-bar,
  .nav-container.menu-open .nav-cta {
    display: flex;
  }

  .nav-container.menu-open {
    row-gap: 14px;
    align-items: stretch;
  }

  .nav-menu {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: 18px;
    background: rgb(255 255 255 / 0.05);
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgb(255 255 255 / 0.03);
  }

  .search-bar {
    max-width: 100%;
    flex-direction: column;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .search-bar input,
  .search-bar button {
    width: 100%;
  }

  .tool-header {
    padding: 28px 22px;
  }

  .tool-brand-head {
    margin-bottom: 14px;
  }

  .tool-hero-brand {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .tool-brand-kicker {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .tool-title-section h1 {
    font-size: 2rem;
  }

   .tool-subtitle,
   .tool-meta-item,
   .tool-article,
   .tool-article li,
   .sidebar-widget,
   .related-card,
   .review-box {
    overflow-wrap: anywhere;
   }

  .tool-article {
    padding: 24px 20px;
  }

  .table-of-contents ul,
  .feature-grid,
  .pros-cons-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav-container {
    padding: 12px 14px;
  }

  .breadcrumbs {
    font-size: 0.82rem;
  }

  .tool-title-section h1 {
    font-size: 1.72rem;
  }

  .tool-header {
    padding: 22px 16px;
    gap: 20px;
  }

  .tool-title-section,
  .tool-actions {
    flex-basis: 100%;
  }

  .tool-brand-head {
    gap: 12px;
    align-items: flex-start;
  }

  .tool-brand-kicker {
    min-height: 34px;
    font-size: 0.84rem;
  }

  .tool-meta {
    gap: 8px;
  }

  .tool-meta-item {
    width: 100%;
    justify-content: center;
  }

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

  .tool-article,
  .sidebar-widget,
  .review-box {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cookie-consent {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__actions {
    width: 100%;
  }

  .cookie-consent__link,
  .cookie-consent__btn {
    flex: 1 1 140px;
  }
}
