.elementor-9317 .elementor-element.elementor-element-d0e7ba5{--display:flex;--margin-top:0px;--margin-bottom:80px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for container, class: .elementor-element-d0e7ba5 */:root {
  --page-bg: #f7f7f7;
  --panel: #ffffff;
  --panel-soft: #fff1eb;
  --text: #1f1f1f;
  --muted: #666666;
  --line: #e8e1dd;
  --primary: #ff824a;
  --primary-dark: #e5652a;
  --accent: #ff824a;
  --danger: #c64732;
  --warning: #d97928;
  --success: #ff824a;
  --shadow: 0 20px 60px rgba(31, 31, 31, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

button,
input,
select {
  font: inherit;
}

.seo-score-page {
  min-height: 100vh;
  padding: 32px 16px;
}

.seo-calculator {
  width: min(1120px, 100%);
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.calculator-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #fff1eb 100%);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.15;
}

h3 {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.intro {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.score-preview {
  display: grid;
  place-items: center;
  width: 128px;
  aspect-ratio: 1;
  border: 10px solid rgba(255, 130, 74, 0.22);
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
}

.score-preview span {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  position: relative;
  top: 15px;
}

.score-preview small {
  color: var(--muted);
  font-weight: 700;
}

.audit-form {
  padding: 28px 32px 32px;
}

.question-list {
  display: grid;
  gap: 16px;
}

.question-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.question-title {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0;
  width: 100%;
  font-weight: 700;
}

.question-text {
  margin: 0;
}

.category-pill {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--panel-soft);
  color: #9d421c;
  font-size: 0.78rem;
  font-weight: 700;
}

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

.option {
  position: relative;
}

.option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option span {
  display: grid;
  min-height: 44px;
  place-items: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf7;
  color: var(--text);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.option input:checked + span {
  border-color: var(--primary);
  background: var(--primary);
  color: #1f1f1f;
}

.option input:focus-visible + span {
  outline: 3px solid rgba(255, 130, 74, 0.28);
  outline-offset: 2px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

.button {
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.button.primary {
  background: var(--primary);
  color: #1f1f1f;
}

.button.primary:hover {
  background: var(--primary-dark);
}

.button.secondary {
  background: #ffffff;
  border-color: var(--line);
  color: var(--text);
}

.button.secondary:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.results {
  padding: 32px;
  border-top: 1px solid var(--line);
  background: #fffaf7;
}

.result-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 24px;
}

.score-ring {
  display: grid;
  place-items: center;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 58%, transparent 60%),
    conic-gradient(var(--primary) var(--score-angle, 0deg), #f0e5df 0deg);
}

.score-ring strong {
  font-size: 2.6rem;
  line-height: 1;
}

.score-ring span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  bottom: 10px;
}

.result-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
}

.result-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.breakdown-list {
  display: grid;
  gap: 14px;
}

.breakdown-row {
  display: grid;
  gap: 7px;
}

.breakdown-label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
}

.meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #f0e5df;
}

.meter span {
  display: block;
  width: var(--meter-width, 0%);
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
}

.recommendations {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.recommendations li {
  color: var(--muted);
}

@media (max-width: 760px) {
  .seo-score-page {
    padding: 0;
  }

  .seo-calculator {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .calculator-header,
  .result-summary,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .calculator-header,
  .audit-form,
  .results {
    padding: 22px 16px;
  }

  .score-preview,
  .score-ring {
    width: 118px;
  }

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

  .question-title {
    display: grid;
  }

  .category-pill {
    width: fit-content;
  }

  .form-actions {
    justify-content: stretch;
  }

  .button {
    flex: 1 1 160px;
  }
}/* End custom CSS */