.elementor-430 .elementor-element.elementor-element-b4def01{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:30px;--padding-bottom:30px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-12ce79e */.hero {
  padding: 80px 2rem 72px;
  text-align: center;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.hero h1 {
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto 1.25rem;
}
.hero h1 .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 400;
}

/* ANALYZER CARD */
.analyzer-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.analyzer-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.analyzer-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.url-input {
  flex: 1;
  height: 48px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  padding: 0 1rem;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  background: var(--bg-soft);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}
.url-input::placeholder { color: var(--text-light); }
.url-input:focus { border-color: var(--blue); background: #fff; }
.analyze-btn {
  height: 48px;
  padding: 0 1.5rem;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(8,120,189,0.35);
  transition: opacity 0.15s, transform 0.1s;
}
.analyze-btn:hover { opacity: 0.9; }
.analyze-btn:active { transform: scale(0.98); }
.analyze-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.analyzer-note {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}
.trust-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-icon {
  width: 16px; height: 16px;
  background: var(--gradient);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* LOADING */
.loading {
  display: none;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  align-items: center;
  gap: 1rem;
}
.spinner {
  width: 22px; height: 22px;
  border: 2.5px solid var(--border);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-info { flex: 1; }
.loading-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.loading-sub { font-size: 12px; color: var(--text-muted); }
.loading-bar-track {
  height: 3px;
  background: var(--border);
  border-radius: 10px;
  margin-top: 10px;
  overflow: hidden;
}
.loading-bar-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 10px;
  width: 0%;
  transition: width 1.4s ease;
}

/* RESULTS */
.results { display: none; margin-top: 2rem; }

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.results-url {
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: 500;
}
.reanalyze-btn {
  font-size: 13px;
  color: var(--blue);
  background: none;
  border: 1.5px solid var(--blue);
  padding: 5px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: background 0.15s;
}
.reanalyze-btn:hover { background: var(--blue-light); }

/* SCORE GRID */
.score-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 1.75rem;
}
.score-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.15s;
}
.score-card:hover { transform: translateY(-2px); }
.score-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.score-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.score-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.score-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
}
.badge-good { background: var(--green-light); color: var(--green-dark); }
.badge-ok   { background: var(--amber-light); color: var(--amber-dark); }
.badge-bad  { background: var(--red-light);   color: var(--red-dark); }

/* SECTION */
.section { margin-bottom: 1.75rem; }
.section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title-dot {
  width: 4px; height: 16px;
  background: var(--gradient);
  border-radius: 2px;
}

/* VITALS */
.vital-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  margin-bottom: 8px;
}
.vital-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.vital-name { font-size: 13px; font-weight: 500; color: var(--text); }
.vital-value { font-size: 13px; font-weight: 700; }
.vital-track {
  height: 5px;
  background: var(--bg-section);
  border-radius: 10px;
  overflow: hidden;
}
.vital-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

/* ISSUES */
.issue-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: border-color 0.15s;
}
.issue-item:hover { border-color: #cbd5e1; }
.issue-indicator {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.ind-red { background: var(--red); }
.ind-amber { background: var(--amber); }
.ind-blue { background: var(--blue); }
.issue-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.issue-desc { font-size: 12px; color: var(--text-muted); line-height: 1.55; }
.issue-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: auto;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tag-critical { background: var(--red-light); color: var(--red-dark); }
.tag-warning  { background: var(--amber-light); color: var(--amber-dark); }
.tag-info     { background: var(--blue-light); color: var(--blue-dark); }

/* QUICK WINS */
.wins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
}
.win-item {
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.win-check {
  width: 18px; height: 18px;
  background: var(--gradient);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* CTA BOX */
.cta-box {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -60px; right: 80px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-content { flex: 1; min-width: 220px; position: relative; z-index: 1; }
.cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.cta-headline {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.2;
}
.cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}
.cta-actions { display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; }
.cta-btn-primary {
  background: #fff;
  color: var(--blue-dark);
  border: none;
  border-radius: 9px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.cta-btn-primary:hover { opacity: 0.92; }
.cta-btn-secondary {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 9px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  text-align: center;
}
.cta-btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* FOOTER */
footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
}
.footer-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.footer-logo span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-text { font-size: 13px; color: var(--text-muted); }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1rem; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; font-weight: 500; }
.footer-links a:hover { color: var(--blue); }

/* MAIN WRAPPER */
.main { max-width: 720px; margin: 0 auto; padding: 2.5rem 1.5rem 4rem; }

/* RESPONSIVE */
@media (max-width: 600px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .hero { padding: 50px 1.25rem 48px; }
  .analyzer-card { padding: 1.25rem; }
  .input-row { flex-direction: column; }
  .analyze-btn { width: 100%; justify-content: center; }
  .score-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-box { flex-direction: column; }
  .cta-actions { width: 100%; }
  .cta-btn-primary, .cta-btn-secondary { width: 100%; }
  .main { padding: 1.5rem 1rem 3rem; }
}/* End custom CSS */