/* ============================================================
   designbyaleeza.com — Global Stylesheet
   Tech-forward dark mode, editorial precision
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --bg:          #0d0d0d;
  --bg-alt:      #121212;
  --surface:     #1a1a1a;
  --surface-2:   #222222;
  --border:      #2a2a2a;
  --border-hover:#3d3d3d;
  --text:        #f0f0f0;
  --text-muted:  #8a8a8a;
  --text-dim:    #555;
  --accent:      #007BFF;
  --accent-glow: rgba(0, 123, 255, 0.18);
  --accent-dim:  rgba(0, 123, 255, 0.08);
  --green:       #00c98d;
  --amber:       #f5a623;
  --red:         #ff4d4d;
  --font-display:'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --radius:      10px;
  --radius-lg:   18px;
  --transition:  0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:      0 4px 24px rgba(0,0,0,0.45);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.6);
  --max-w:       1180px;
  --nav-h:       70px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 99px; }

/* ── Typography Helpers ── */
.display-font { font-family: var(--font-display); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
}

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition);
  backdrop-filter: blur(0px);
}

.nav.scrolled {
  background: rgba(13,13,13,0.92);
  border-color: var(--border);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  color: var(--accent);
}

.nav-logo-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 1px;
  box-shadow: 0 0 8px var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--accent);
  color: #fff !important;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
  font-family: var(--font-display);
}

.nav-cta:hover {
  background: #0066d6;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.35);
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(13,13,13,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  z-index: 998;
  padding: 24px 28px 32px;
  flex-direction: column;
  gap: 20px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--text-muted);
  transition: color var(--transition);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:hover { color: var(--text); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: #0066d6;
  box-shadow: 0 0 24px rgba(0,123,255,0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-hover);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-ghost:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px rgba(0,123,255,0.3);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

/* ── Tool Cards ── */
.tool-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.tool-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px var(--accent-glow);
}

.tool-card:hover::before { opacity: 1; }

.card-icon {
  width: 52px; height: 52px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.tool-card:hover .card-icon {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  position: relative;
  z-index: 1;
}

.badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-display);
  transition: all var(--transition);
}

.badge-accent {
  background: var(--accent-dim);
  border-color: rgba(0,123,255,0.3);
  color: var(--accent);
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  flex: 1;
}

.card-footer {
  margin-top: auto;
  padding-top: 4px;
  position: relative;
  z-index: 1;
}

/* ── Star Rating ── */
.stars {
  display: flex;
  gap: 3px;
}

.star {
  font-size: 18px;
  color: var(--text-dim);
}

.star.filled { color: var(--amber); }
.star.half { color: var(--amber); }

/* ── Category Badge Filter ── */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 9px 20px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.chip:hover {
  border-color: var(--accent);
  color: var(--text);
  background: var(--accent-dim);
}

.chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 16px rgba(0,123,255,0.3);
}

/* ── Search Input ── */
.search-wrap {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 18px;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  font-size: 16px;
  outline: none;
  transition: all var(--transition);
}

.search-input::placeholder { color: var(--text-dim); }

.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim), 0 8px 24px rgba(0,0,0,0.3);
  background: var(--surface-2);
}

/* ── Grid Layouts ── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tools-grid-wide {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

/* ── Footer ── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-family: var(--font-display);
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col ul a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-bottom span { color: var(--accent); }

/* ── Newsletter ── */
.newsletter-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,123,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 32px auto 0;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-input::placeholder { color: var(--text-dim); }
.newsletter-input:focus { border-color: var(--accent); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,123,255,0.15), transparent 70%);
  top: -100px; right: -100px;
}

.hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,201,141,0.08), transparent 70%);
  bottom: 50px; left: -80px;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,42,42,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,42,42,0.4) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,123,255,0.25);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
  margin-bottom: 28px;
}

.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,123,255,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 5px rgba(0,123,255,0); }
}

.hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-item { }

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
}

.stat-num span { color: var(--accent); }

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Section Headers ── */
.section-header {
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-top: 12px;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  font-weight: 300;
}

/* ── Form Styles (Contact) ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.form-input {
  padding: 15px 18px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: all var(--transition);
  width: 100%;
}

.form-input::placeholder { color: var(--text-dim); }

.form-input:focus {
  border-color: var(--accent);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-input:hover:not(:focus) {
  border-color: var(--border-hover);
}

textarea.form-input {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Article ── */
.article-header {
  padding: calc(var(--nav-h) + 56px) 0 64px;
  border-bottom: 1px solid var(--border);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.article-h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.article-summary {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
  max-width: 680px;
}

.article-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.article-body {
  padding: 64px 0;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.article-content h2 {
  font-size: 26px;
  margin: 48px 0 20px;
  color: var(--text);
}

.article-content h2:first-child { margin-top: 0; }

.article-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

blockquote.verdict {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  margin: 36px 0;
  position: relative;
}

blockquote.verdict::before {
  content: '"';
  position: absolute;
  top: -10px; left: 24px;
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  font-family: var(--font-display);
  opacity: 0.5;
}

blockquote.verdict p {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text-muted);
  transition: border-color var(--transition);
}

.features-list li:hover { border-color: var(--accent); }

.feature-check {
  color: var(--green);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Pros/Cons Table */
.pros-cons-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 14px;
}

.pros-cons-table th {
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pros-cons-table th:first-child {
  background: rgba(0,201,141,0.1);
  color: var(--green);
  border-radius: var(--radius) 0 0 0;
}

.pros-cons-table th:last-child {
  background: rgba(255,77,77,0.1);
  color: var(--red);
  border-radius: 0 var(--radius) 0 0;
}

.pros-cons-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-muted);
}

.pros-cons-table td:first-child { border-right: 1px solid var(--border); }

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

.pros-cons-table tbody tr {
  background: var(--surface);
  transition: background var(--transition);
}

.pros-cons-table tbody tr:hover { background: var(--surface-2); }

/* Pricing Box */
.pricing-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 32px 0;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: var(--surface-2); }

.pricing-row.featured {
  background: var(--accent-dim);
  border-color: rgba(0,123,255,0.2);
}

.pricing-plan {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}

.pricing-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
}

.pricing-features {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 28px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-card h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-display);
  margin-bottom: 16px;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.rating-row:last-child { border-bottom: none; }

.rating-bar-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-bar {
  width: 80px;
  height: 5px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
}

/* ── About Timeline ── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 56px;
  bottom: 56px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  position: relative;
}

.timeline-icon {
  flex-shrink: 0;
  width: 72px; height: 72px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all var(--transition);
  position: relative;
  z-index: 2;
}

.timeline-item:hover .timeline-icon {
  border-color: var(--accent);
  background: var(--accent-dim);
  box-shadow: 0 0 24px var(--accent-glow);
}

.timeline-step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(0,123,255,0.15) 0%, rgba(0,123,255,0.05) 100%);
  border: 1px solid rgba(0,123,255,0.25);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
}

.cta-banner h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 14px; }
.cta-banner p { font-size: 17px; color: var(--text-muted); margin-bottom: 36px; font-weight: 300; }

/* ── Success Message ── */
.success-msg {
  display: none;
  background: rgba(0,201,141,0.1);
  border: 1.5px solid rgba(0,201,141,0.35);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.success-msg.show { display: block; }

.success-icon {
  width: 64px; height: 64px;
  background: rgba(0,201,141,0.15);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.success-msg h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--green);
}

.success-msg p { color: var(--text-muted); font-size: 15px; }

/* ── No Results ── */
.no-results {
  display: none;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
  grid-column: 1 / -1;
}

.no-results.show { display: block; }

.no-results-icon { font-size: 48px; margin-bottom: 16px; }

.no-results h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text);
}

/* ── About Page Specific ── */
.about-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  border-bottom: 1px solid var(--border);
}

.about-hero h1 { font-size: clamp(42px, 6vw, 72px); margin-bottom: 24px; }
.about-hero p {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  font-weight: 300;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.value-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.value-card h3 { font-size: 18px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── Explore Hero ── */
.explore-hero {
  padding: calc(var(--nav-h) + 64px) 0 56px;
  border-bottom: 1px solid var(--border);
}

/* ── Contact Hero ── */
.contact-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { font-size: 38px; margin-bottom: 18px; }
.contact-info p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-muted);
  transition: border-color var(--transition);
  margin-bottom: 12px;
}

.contact-detail:hover { border-color: var(--accent); color: var(--text); }

.contact-detail-icon {
  width: 36px; height: 36px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,123,255,0.25);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* ── Page title ── */
.page-title-section {
  padding: calc(var(--nav-h) + 64px) 0 64px;
}

/* ── Responsive Media Queries ── */
@media (max-width: 1024px) {
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .tools-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-section { padding: 40px 24px; }

  .article-layout { grid-template-columns: 1fr; }

  .timeline::before { left: 29px; }
  .timeline-icon { width: 58px; height: 58px; font-size: 22px; }

  .cta-banner { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 42px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .article-actions { flex-direction: column; align-items: flex-start; }
}
