/* ============================================================
   Extra styles - Blog, Mobile Side Menu, Toast, Forms
   Loaded after styles.css
   ============================================================ */

/* ---------- MOBILE SIDE MENU OVERLAY ---------- */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0; visibility: hidden;
  transition: all 0.3s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 0;
    inset-inline-end: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-2);
    border-inline-start: 1px solid var(--border-strong);
    flex-direction: column;
    padding: 80px 20px 20px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    z-index: 100;
  }
  html[dir="rtl"] .nav-menu { transform: translateX(-100%); }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu li { width: 100%; }
  .nav-menu a {
    padding: 16px 20px;
    width: 100%;
    border-radius: 12px;
    font-size: 16px;
    border: 1px solid transparent;
  }
  .nav-menu a:hover, .nav-menu a.active {
    background: var(--gold-gradient-soft);
    border-color: var(--border-strong);
    color: var(--accent);
  }
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 24px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  max-width: 90vw;
  text-align: center;
}
.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.toast-success { border-color: rgba(80,255,120,0.5); color: #80ff90; }
.toast-error { border-color: rgba(255,80,80,0.5); color: #ff8080; }

/* ---------- BLOG GRID (Home + List) ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-gold);
}
.blog-card-image {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-3);
}
.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-card-placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  font-size: 60px;
  color: var(--accent);
  background: var(--gold-gradient-soft);
}
.blog-card-cat {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  padding: 4px 14px;
  background: var(--accent);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  display: flex; gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.blog-card-meta i { color: var(--accent); margin-inline-end: 4px; }
.blog-card-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
}
.blog-card-title a { color: var(--text); transition: color 0.2s; }
.blog-card-title a:hover { color: var(--accent); }
.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.2s;
}
.blog-card-link:hover { gap: 14px; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-hero {
  padding: calc(var(--header-h) + 60px) 0 40px;
  text-align: center;
}

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

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-elevated);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card.popular {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(184,146,78,0.05) 100%);
  border-color: var(--border-strong);
  box-shadow: 0 0 0 1px rgba(184,146,78,0.15);
}
.service-card.popular::before { transform: scaleX(1); }

.service-badge {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  padding: 4px 12px;
  background: var(--gold-gradient);
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  box-shadow: var(--shadow-gold);
}

.service-icon {
  width: 64px; height: 64px;
  background: var(--gold-gradient);
  border-radius: 18px;
  display: grid; place-items: center;
  font-size: 30px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-gold);
  transition: transform 0.4s;
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-6deg);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}
.service-tagline {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.service-features li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.service-clients {
  padding: 12px 14px;
  background: var(--accent-soft);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  border-inline-start: 3px solid var(--accent);
}
.service-clients strong { color: var(--accent); }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.package-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s;
}
.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-elevated);
}

.package-card.featured {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(184,146,78,0.1), var(--shadow-elevated);
  transform: scale(1.03);
}
.package-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.package-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--navy-900);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}

.package-tier {
  display: inline-block;
  padding: 4px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.package-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.package-price {
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  text-align: center;
}
.price-from {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.price-currency {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.package-features li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}
.package-features li.muted {
  color: var(--text-dim);
  text-decoration: line-through;
}

/* ============================================================
   WORKFLOW STEPS
   ============================================================ */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}

.workflow-step {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.4s;
}
.workflow-step:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.85;
}
.workflow-step h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.workflow-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  text-align: center;
  padding: 60px 40px;
  background: var(--gold-gradient);
  color: var(--navy-900);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  animation: ctaShine 6s linear infinite;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--navy-900);
}
.final-cta p {
  font-size: 17px;
  margin-bottom: 30px;
  opacity: 0.85;
}
.final-cta .btn-primary {
  background: var(--navy-900) !important;
  color: var(--gold-300) !important;
  border: none;
}
.final-cta .btn-primary:hover {
  background: var(--navy-950) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.cta-trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 600;
  flex-wrap: wrap;
}

/* ---------- LANG BUTTON ---------- */
.lang-btn {
  width: auto !important;
  padding: 0 14px !important;
  gap: 6px;
  display: inline-flex !important;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
}
.lang-btn i { font-size: 14px; }

/* ---------- MARKETING TOOLS ---------- */
.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  overflow: hidden;
  transition: all 0.4s;
  box-shadow: var(--shadow-soft);
}
.tool-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
}

.tool-header {
  padding: 28px 32px;
  background: var(--gold-gradient-soft);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: center;
}
.tool-icon {
  width: 64px; height: 64px;
  background: var(--gold-gradient);
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 32px;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}
.tool-header h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text);
}
.tool-header p {
  color: var(--text-muted);
  font-size: 14px;
}

.tool-body { padding: 32px; }

.tool-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.tool-inputs .form-group { display: flex; flex-direction: column; gap: 6px; }
.tool-inputs label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.tool-input {
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  transition: all 0.2s;
}
.tool-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.tool-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  padding: 24px;
  background: var(--bg-3);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.tool-result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.3s;
}
.tool-result-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.tool-result-card.highlight {
  background: var(--gold-gradient);
  color: var(--navy-900);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.tr-label {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
}
.tool-result-card.highlight .tr-label { opacity: 0.85; }
.tr-value {
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--accent);
  line-height: 1.2;
}
.tool-result-card.highlight .tr-value {
  color: var(--navy-900);
  background: none;
  -webkit-text-fill-color: var(--navy-900);
}
.tr-sub {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.tool-result-card.highlight .tr-sub {
  color: rgba(11,22,32,0.7);
}

.tool-disclaimer {
  font-size: 12px;
  color: var(--text-dim);
  padding: 12px 16px;
  background: var(--bg-3);
  border-radius: 8px;
  border-inline-start: 3px solid var(--accent);
}

@media (max-width: 700px) {
  .tool-header { padding: 20px; flex-direction: column; text-align: center; }
  .tool-body { padding: 20px; }
  .tool-inputs { grid-template-columns: 1fr; }
}

/* ---------- BOOKING MODAL ---------- */
.modal {
  position: fixed; inset: 0;
  z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.modal.open { display: flex; opacity: 1; }

.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(7,16,28,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 640px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(184,146,78,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal.open .modal-content { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  font-size: 16px;
  transition: all 0.2s;
}
.modal-close:hover {
  background: var(--gold-gradient);
  color: #0B1620;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.modal-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  background: var(--gold-gradient);
  color: var(--navy-900);
  display: grid; place-items: center;
  border-radius: 24px;
  font-size: 32px;
  box-shadow: var(--shadow-gold);
  animation: modalIconFloat 3s ease-in-out infinite;
}
@keyframes modalIconFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-6px) rotate(-5deg); }
}
.modal-header h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.modal-header p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.modal-form {
  display: flex; flex-direction: column; gap: 16px;
}
.modal-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.modal-form .form-group { display: flex; flex-direction: column; gap: 6px; }
.modal-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.modal-form input, .modal-form select, .modal-form textarea {
  padding: 12px 14px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  transition: all 0.2s;
}
.modal-form input:focus, .modal-form select:focus, .modal-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-2);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.modal-form textarea { resize: vertical; font-family: inherit; }
.modal-foot {
  text-align: center;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-dim);
}

@media (max-width: 600px) {
  .modal-content { padding: 28px 20px; }
  .modal-form .form-row { grid-template-columns: 1fr; }
  .modal-header h2 { font-size: 22px; }
}

/* ---------- CLIENT LOGOS ---------- */
.client-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.4s;
}
.client-card:hover .client-logo {
  transform: scale(1.08) rotate(-3deg);
}
.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ---------- BLOG SINGLE ---------- */
.blog-hero {
  padding: calc(var(--header-h) + 60px) 0 60px;
  text-align: center;
}
.blog-hero-cat {
  display: inline-block;
  padding: 6px 18px;
  background: var(--gold-gradient);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 20px;
}
.blog-hero-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blog-hero-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 14px;
}
.blog-hero-meta i { color: var(--accent); margin-inline-end: 6px; }
.blog-featured-image {
  max-width: 1000px;
  margin: 0 auto 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}
.blog-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* TOC sidebar */
.blog-toc {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  height: fit-content;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  max-height: calc(100vh - var(--header-h) - 40px);
  overflow-y: auto;
}
.blog-toc h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.blog-toc-list { list-style: none; padding: 0; margin: 0; }
.blog-toc-list li { margin: 4px 0; }
.blog-toc-list a {
  display: block;
  padding: 8px 12px;
  color: var(--text-muted);
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.2s;
  border-inline-start: 2px solid transparent;
}
.blog-toc-list a:hover, .blog-toc-list a.active {
  color: var(--accent);
  background: var(--gold-gradient-soft);
  border-inline-start-color: var(--accent);
}
.blog-toc-list .toc-h3 { padding-inline-start: 24px; font-size: 13px; }

/* Article content */
.blog-content {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
}
.blog-content h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 48px 0 16px;
  color: var(--accent);
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.blog-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.blog-content p { margin-bottom: 18px; }
.blog-content a {
  color: var(--accent);
  border-bottom: 1px solid var(--border-strong);
  transition: all 0.2s;
}
.blog-content a:hover {
  background: var(--gold-gradient-soft);
  border-bottom-color: var(--accent);
}
.blog-content ul, .blog-content ol {
  margin: 0 0 18px;
  padding-inline-start: 28px;
}
.blog-content li { margin-bottom: 8px; }
.blog-content blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--gold-gradient-soft);
  border-inline-start: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  font-style: italic;
  color: var(--text-muted);
}
.blog-content img {
  max-width: 100%;
  border-radius: var(--radius);
  margin: 24px 0;
  box-shadow: var(--shadow);
}
.blog-content pre {
  background: var(--bg-3);
  padding: 20px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  font-size: 14px;
  border: 1px solid var(--border);
  direction: ltr;
}
.blog-content code {
  background: var(--bg-3);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--accent);
}
.blog-content pre code { padding: 0; background: none; color: var(--text); }

/* Share buttons */
.blog-share {
  margin: 40px 0;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.blog-share-label {
  font-weight: 600;
  color: var(--text-muted);
}
.blog-share-btns {
  display: flex;
  gap: 10px;
}
.blog-share-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 18px;
  transition: all 0.3s;
}
.blog-share-btn:hover {
  background: var(--gold-gradient);
  color: #000;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* CTA */
.blog-cta {
  margin: 60px 0;
  padding: 50px 40px;
  background: var(--gold-gradient);
  color: #000;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}
.blog-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  animation: ctaShine 5s linear infinite;
}
@keyframes ctaShine {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.blog-cta > * { position: relative; z-index: 1; }
.blog-cta h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 12px;
}
.blog-cta p {
  font-size: 17px;
  margin-bottom: 24px;
  opacity: 0.9;
}
.blog-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #000;
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s;
  text-decoration: none;
}
.blog-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  color: var(--accent);
}

/* Related articles */
.blog-related {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.blog-related h3 {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--accent);
}
.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .blog-toc {
    position: static;
    max-height: none;
  }
}

/* ---------- BLOG LIST PAGE ---------- */
.blog-page-hero {
  padding: calc(var(--header-h) + 60px) 0 40px;
  text-align: center;
}
.blog-search-form {
  max-width: 500px;
  margin: 30px auto 0;
  display: flex;
  gap: 10px;
}
.blog-search-form input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  font: inherit;
}
.blog-search-form button {
  padding: 14px 28px;
  background: var(--gold-gradient);
  color: #000;
  border: none;
  border-radius: 100px;
  font-weight: 700;
  cursor: pointer;
}

.blog-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}
.blog-filter {
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.blog-filter:hover, .blog-filter.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
}

.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 50px;
}
.pagination a, .pagination span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-weight: 600;
  transition: all 0.2s;
}
.pagination a:hover {
  background: var(--gold-gradient-soft);
  border-color: var(--border-strong);
}
.pagination .current {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
}

/* ---------- ERROR PAGES ---------- */
.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 20px;
}
.error-code {
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}
.error-title {
  font-size: 32px;
  margin-bottom: 16px;
}
.error-msg {
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* ============================================================
   DESKTOP PROFESSIONAL SPACING & TYPOGRAPHY
   ============================================================ */
@media (min-width: 1024px) {
  /* Larger, more breathable sections */
  .section { padding: 110px 0; }
  .section-header { margin-bottom: 72px; }

  /* Hero refinements for desktop */
  .hero { min-height: 92vh; padding-top: calc(var(--header-h) + 60px); }
  .hero-name { font-size: clamp(48px, 5.5vw, 76px) !important; letter-spacing: -0.02em; }
  .hero-title { font-size: 19px !important; max-width: 600px; }
  .hero-tagline { font-size: 16px; max-width: 580px; }
  .hero-image-wrapper { width: 420px !important; height: 420px !important; }

  /* Better card grids on desktop */
  .expertise-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .clients-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .certs-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

/* Wider desktop - center container nicely */
@media (min-width: 1440px) {
  .container { max-width: 1320px; }
}

/* ============================================================
   LIGHT MODE - PROFESSIONAL POLISH
   ============================================================ */
[data-theme="light"] body {
  background:
    radial-gradient(circle at 15% 20%, rgba(189,158,102,0.06) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(168,133,74,0.05) 0%, transparent 40%),
    var(--bg);
}

[data-theme="light"] .bg-orb { opacity: 0.08; }

[data-theme="light"] .navbar {
  border-bottom-color: rgba(168,133,74,0.10);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
[data-theme="light"] .navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

[data-theme="light"] .hero-name {
  background: linear-gradient(135deg, #1A1A1F 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .section-title {
  background: linear-gradient(135deg, #1A1A1F 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .section-alt {
  background: linear-gradient(180deg, var(--white-warm) 0%, var(--white-cream) 50%, var(--white-warm) 100%);
}

[data-theme="light"] .stat-card,
[data-theme="light"] .expertise-card,
[data-theme="light"] .client-card,
[data-theme="light"] .cert-card,
[data-theme="light"] .blog-card,
[data-theme="light"] .timeline-card,
[data-theme="light"] .tool-card,
[data-theme="light"] .service-card,
[data-theme="light"] .package-card {
  background: var(--bg-card);
  border-color: rgba(168,133,74,0.10);
  box-shadow: var(--shadow-card-light);
}

[data-theme="light"] .stat-card:hover,
[data-theme="light"] .expertise-card:hover,
[data-theme="light"] .client-card:hover,
[data-theme="light"] .cert-card:hover,
[data-theme="light"] .blog-card:hover,
[data-theme="light"] .tool-card:hover,
[data-theme="light"] .service-card:hover {
  box-shadow: var(--shadow-card-light-hover);
  border-color: var(--border-strong);
}

[data-theme="light"] .contact-form,
[data-theme="light"] .chatbot-window,
[data-theme="light"] .modal-content {
  background: var(--bg-card);
  border-color: rgba(168,133,74,0.20);
  box-shadow: 0 30px 80px rgba(0,0,0,0.08), 0 0 0 1px rgba(168,133,74,0.05);
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea,
[data-theme="light"] .modal-form input,
[data-theme="light"] .modal-form select,
[data-theme="light"] .modal-form textarea,
[data-theme="light"] .tool-input,
[data-theme="light"] .chatbot-input-area input {
  background: var(--bg-3);
  border-color: rgba(168,133,74,0.15);
  color: var(--text);
}

[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group textarea:focus,
[data-theme="light"] .modal-form input:focus,
[data-theme="light"] .modal-form select:focus,
[data-theme="light"] .modal-form textarea:focus,
[data-theme="light"] .tool-input:focus {
  background: var(--bg-2);
  border-color: var(--accent);
}

[data-theme="light"] .icon-btn {
  background: var(--bg-2);
  border-color: rgba(168,133,74,0.18);
}
[data-theme="light"] .icon-btn:hover {
  background: var(--white-cream);
  border-color: var(--accent);
}

[data-theme="light"] .footer {
  background: var(--bg-2);
  border-top-color: rgba(168,133,74,0.10);
}

[data-theme="light"] .nav-menu a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

[data-theme="light"] .timeline::before {
  background: linear-gradient(to bottom, var(--accent) 0%, rgba(168,133,74,0.2) 100%);
}

[data-theme="light"] .timeline-dot {
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px var(--accent), 0 4px 12px rgba(168,133,74,0.25);
}

[data-theme="light"] .blog-content {
  color: var(--text);
}
[data-theme="light"] .blog-content blockquote {
  background: var(--white-cream);
  border-color: var(--accent);
}
[data-theme="light"] .blog-content pre,
[data-theme="light"] .blog-content code {
  background: var(--white-cream);
}

[data-theme="light"] .blog-toc {
  background: var(--bg-card);
  box-shadow: var(--shadow-card-light);
}

[data-theme="light"] .blog-cta {
  /* keep dark CTA in both modes for contrast */
  background: linear-gradient(135deg, var(--charcoal-50) 0%, var(--charcoal-100) 100%);
  color: var(--text-light);
}
[data-theme="light"] .blog-cta h3 { color: var(--accent); }
[data-theme="light"] .blog-cta p { color: var(--text-light-2); }
[data-theme="light"] .blog-cta-btn {
  background: var(--gold-gradient);
  color: var(--charcoal-50);
}

[data-theme="light"] .pagination a,
[data-theme="light"] .pagination span {
  background: var(--bg-card);
  border-color: rgba(168,133,74,0.15);
}

[data-theme="light"] .blog-share-btn {
  background: var(--bg-3);
  border-color: rgba(168,133,74,0.15);
}

[data-theme="light"] .floating-chat {
  box-shadow: 0 8px 24px rgba(168,133,74,0.4);
}

/* Background orbs adjusted for light */
[data-theme="light"] .bg-orb-1 { background: var(--gold-400); }
[data-theme="light"] .bg-orb-2 { background: #B47147; }
[data-theme="light"] .bg-orb-3 { background: var(--gold-500); }

/* Theme toggle button - icon visibility */
[data-theme="light"] #themeToggle {
  background: linear-gradient(135deg, #1A1A1F, #2C2C32);
  color: var(--gold-300);
  border-color: rgba(168,133,74,0.30);
}
[data-theme="light"] #themeToggle:hover {
  transform: translateY(-2px) rotate(15deg);
}

/* Smooth color scheme transition - applied only to themable elements */
body, .navbar, header, footer, section, aside, nav, ul, li, a, p, h1, h2, h3, h4, h5, h6, span:not(.placeholder-text), div:not([data-aos]):not(.hero-content):not(.hero-image) {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* SAFETY: ensure AOS elements show even if JS fails */
@media (prefers-reduced-motion: reduce) {
  [data-aos] { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   IMPROVED CONTAINER SCALING
   ============================================================ */
@media (min-width: 600px) and (max-width: 1023px) {
  .container { padding: 0 28px; }
  .section { padding: 80px 0; }
  .hero-image-wrapper { width: 340px !important; height: 340px !important; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- FLOAT-LEFT/RIGHT ADJUSTMENTS FOR RTL ---------- */
html[dir="rtl"] .floating-whatsapp { inset-inline-start: 24px; }
html[dir="rtl"] .floating-chat { inset-inline-end: 24px; }

/* ============================================================
   PROFESSIONAL MOBILE POLISH
   ============================================================ */
@media (max-width: 768px) {
  /* Container padding */
  .container { padding: 0 16px; }

  /* Hero adjustments */
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 20px);
    padding-bottom: 60px;
  }
  .hero-container {
    gap: 30px;
  }
  .hero-greeting { font-size: 14px; margin-bottom: 8px; }
  .hero-name {
    font-size: clamp(28px, 8vw, 40px) !important;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .hero-title {
    font-size: 14px !important;
    line-height: 1.6;
    margin-bottom: 14px;
  }
  .hero-tagline {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }
  .hero-social {
    justify-content: center;
    gap: 12px;
  }
  .hero-social a {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
  .hero-image-wrapper {
    width: 220px !important;
    height: 220px !important;
  }
  .hero-badge {
    padding: 8px 12px;
    font-size: 12px;
  }
  .hero-badge i { font-size: 14px; }
  .hero-badge-1 { inset-inline-start: -5px; top: 10%; }
  .hero-badge-2 { inset-inline-end: -5px; bottom: 10%; }
  .placeholder-text { font-size: 80px; }
  .hero-scroll {
    display: none;
  }

  /* Section spacing */
  .section {
    padding: 50px 0;
  }
  .section-header {
    margin-bottom: 32px;
  }
  .section-tag {
    font-size: 12px;
    padding: 5px 13px;
  }
  .section-title {
    font-size: clamp(24px, 6vw, 32px) !important;
    line-height: 1.3;
  }
  .section-divider { width: 60px; height: 3px; }

  /* About */
  .about-grid { gap: 30px; }
  .about-intro { font-size: 15px; }
  .about-extra { font-size: 14px; }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stat-card {
    padding: 20px 12px;
  }
  .stat-number { font-size: 32px !important; }
  .stat-label { font-size: 12px; }

  /* Expertise */
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .expertise-card {
    padding: 28px 24px;
  }
  .expertise-icon {
    width: 60px; height: 60px;
    font-size: 26px;
  }
  .expertise-title { font-size: 17px; }
  .expertise-desc { font-size: 13px; }

  /* Clients */
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .client-card {
    padding: 18px 12px;
  }
  .client-icon {
    width: 50px; height: 50px;
    font-size: 24px;
  }
  .client-logo {
    width: 60px;
    height: 60px;
  }
  .client-name {
    font-size: 13px;
    line-height: 1.4;
  }
  .client-category { font-size: 11px; }
  .client-flag { font-size: 14px; top: 8px; }

  /* Skills */
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .skill-head { font-size: 14px; }

  /* Certificates */
  .certs-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cert-card {
    padding: 18px;
  }
  .cert-icon {
    width: 48px; height: 48px;
    font-size: 22px;
  }
  .cert-name { font-size: 14px; }
  .cert-issuer { font-size: 12px; }

  /* Blog cards */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-card-body { padding: 18px; }
  .blog-card-title { font-size: 17px; }
  .blog-card-excerpt { font-size: 13px; }
  .blog-card-meta { font-size: 11px; gap: 10px; flex-wrap: wrap; }

  /* Contact */
  .contact-grid {
    gap: 24px;
  }
  .contact-form { padding: 24px 20px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-card {
    padding: 16px;
    gap: 12px;
  }
  .contact-icon {
    width: 44px; height: 44px;
    font-size: 18px;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .footer-rights, .footer-made { font-size: 12px; }

  /* Floating buttons - smaller on mobile */
  .floating-btn {
    width: 48px !important;
    height: 48px !important;
    font-size: 20px !important;
    bottom: 18px;
  }
  .floating-whatsapp { inset-inline-start: 16px; }
  .floating-chat { inset-inline-end: 16px; }

  /* Chatbot window */
  .chatbot-window {
    width: calc(100vw - 24px) !important;
    inset-inline-start: 12px !important;
    inset-inline-end: 12px !important;
    bottom: 76px;
    height: 70vh !important;
    max-height: 600px;
  }
  .chatbot-header { padding: 14px 16px; }
  .chatbot-header h4 { font-size: 14px; }
  .chatbot-header p { font-size: 11px; }
  .chatbot-avatar { width: 38px; height: 38px; font-size: 16px; }

  /* Booking modal */
  .modal-content {
    padding: 28px 18px !important;
    max-height: 88vh;
  }
  .modal-header h2 { font-size: 20px !important; }
  .modal-header p { font-size: 13px; }
  .modal-icon {
    width: 60px; height: 60px;
    font-size: 24px;
  }
  .modal-form .form-row {
    grid-template-columns: 1fr !important;
  }
  .modal-form input, .modal-form select, .modal-form textarea {
    font-size: 14px;
    padding: 11px 12px;
  }

  /* Tools page */
  .tool-header {
    padding: 22px 18px !important;
    flex-direction: column !important;
    text-align: center;
    gap: 14px;
  }
  .tool-header h2 { font-size: 18px !important; }
  .tool-header p { font-size: 13px; }
  .tool-icon {
    width: 56px !important;
    height: 56px !important;
    font-size: 28px !important;
  }
  .tool-body { padding: 20px 16px !important; }
  .tool-inputs {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .tool-results {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
    padding: 16px;
  }
  .tool-result-card {
    padding: 14px 10px !important;
  }
  .tr-label { font-size: 11px; }
  .tr-value { font-size: 22px !important; }

  /* Services page */
  .services-hero {
    padding: calc(var(--header-h) + 30px) 0 30px;
  }
  .services-hero p { font-size: 15px !important; }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card {
    padding: 26px 22px;
  }
  .service-card h3 { font-size: 19px; }
  .service-tagline { font-size: 13px; margin-bottom: 16px; }
  .service-features li { font-size: 13px; }
  .service-clients { font-size: 12px; padding: 10px 12px; }
  .service-icon {
    width: 56px; height: 56px;
    font-size: 26px;
  }

  /* Packages */
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .package-card.featured {
    transform: scale(1);
  }
  .package-card.featured:hover {
    transform: translateY(-8px);
  }
  .package-card {
    padding: 30px 24px;
  }
  .price-amount {
    font-size: 36px !important;
  }

  /* Workflow */
  .workflow-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .workflow-step {
    padding: 22px 16px;
  }
  .step-num { font-size: 38px; }
  .workflow-step h4 { font-size: 15px; }
  .workflow-step p { font-size: 12px; }

  /* Final CTA */
  .final-cta {
    padding: 42px 24px !important;
  }
  .final-cta h2 { font-size: 24px !important; }
  .final-cta p { font-size: 14px; margin-bottom: 22px; }
  .cta-trust {
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
  }

  /* Blog single */
  .blog-hero {
    padding: calc(var(--header-h) + 30px) 0 30px;
  }
  .blog-hero-title {
    font-size: clamp(22px, 6vw, 32px) !important;
  }
  .blog-hero-meta {
    font-size: 12px;
    gap: 14px;
  }
  .blog-layout {
    grid-template-columns: 1fr !important;
    gap: 24px;
    padding: 0 16px;
  }
  .blog-toc {
    position: static !important;
    max-height: none;
  }
  .blog-content {
    font-size: 16px;
  }
  .blog-content h2 { font-size: 22px; margin: 32px 0 12px; }
  .blog-content h3 { font-size: 18px; }
  .blog-cta {
    padding: 32px 22px !important;
  }
  .blog-cta h3 { font-size: 20px; }
  .blog-cta p { font-size: 14px; }

  /* Navbar */
  .nav-container {
    padding: 0 16px;
  }
  .logo-text { font-size: 14px; }
  .logo-mark { width: 38px; height: 38px; font-size: 15px; }
  .icon-btn {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
  .nav-actions { gap: 6px; }
  .lang-btn {
    padding: 0 10px !important;
    font-size: 11px !important;
  }
  .lang-btn span { display: none; }
  .lang-btn i { font-size: 14px; }
}

/* Small phones */
@media (max-width: 380px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  .tool-results {
    grid-template-columns: 1fr !important;
  }
  .hero-name {
    font-size: 26px !important;
  }
}
