body.hpdeadline-page.hpdeadline-page .hpdeadline {
  --bg: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e5e7eb;
  --primary: #1953d6;
  --primary-dark: #1e4fc3;
  --soft: #eff6ff;
  --shadow:
    0 1px 2px rgba(15, 23, 42, 0.05), 0 10px 28px rgba(15, 23, 42, 0.07);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.1), transparent 34rem),
    linear-gradient(180deg, #fff 0%, #f8fafc 34rem, #fff 100%);
  color: var(--text);
  font-family:
    "Inter",
    "Open Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.65;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline * {
  box-sizing: border-box;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__hero {
  position: relative;
  overflow: hidden;
  margin-top: -100px;
  padding: 118px 0 64px;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__hero::before {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  top: 64px;
  width: min(42vw, 520px);
  height: 520px;
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(239, 246, 255, 0.52)),
    repeating-linear-gradient(135deg, rgba(25, 83, 214, 0.13) 0 1px, transparent 1px 18px);
  box-shadow: 0 34px 80px rgba(25, 83, 214, 0.12);
  transform: rotate(4deg);
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 44px;
  align-items: center;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.44rem 0.78rem 0.48rem;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__badge::before {
  content: "";
  width: 0.75em;
  height: 0.75em;
  border-radius: 999px;
  background: currentColor;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__eyebrow {
  margin: 16px 0 12px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__eyebrow--light {
  color: #84caff;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline h1,
body.hpdeadline-page.hpdeadline-page .hpdeadline h2,
body.hpdeadline-page.hpdeadline-page .hpdeadline h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.06;
  letter-spacing: 0;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline h1 {
  max-width: 13ch;
  font-size: clamp(2.55rem, 5.1vw, 4.9rem);
  font-weight: 900;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline h2 {
  max-width: 17ch;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 850;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline h3 {
  font-size: 1.18rem;
  font-weight: 850;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline p {
  margin: 0;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__lead {
  max-width: 780px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
  line-height: 1.72;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__lead strong {
  color: var(--text);
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__button:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__button--primary {
  background: linear-gradient(135deg, #1953d6 0%, #2f76ff 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(25, 83, 214, 0.22);
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__button--primary:hover,
body.hpdeadline-page.hpdeadline-page .hpdeadline__button--primary:focus {
  color: #fff !important;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__button--light {
  border-color: var(--border);
  background: #fff;
  color: #334155;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__button--secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__hero-card,
body.hpdeadline-page.hpdeadline-page .hpdeadline__card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.98);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 24px;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__hero-card {
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  padding: 28px;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__hero-card::before {
  content: "";
  display: block;
  aspect-ratio: 16 / 10;
  margin-bottom: 24px;
  border-radius: 22px;
  background:
    url("https://studerahp.se/wp-content/uploads/2026/04/dashboard-preview.webp") center / calc(100% - 16px) auto no-repeat,
    #fff;
  box-shadow: inset 0 0 0 1px rgba(191, 219, 254, 0.7);
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__fact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__fact-list div {
  padding: 14px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  background: #f8fafc;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__fact-list strong {
  display: block;
  color: var(--primary);
  font-size: 1.08rem;
  font-weight: 900;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__fact-list span {
  color: #334155;
  font-weight: 700;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__quicklinks {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.88);
  border-block: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(14px);
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__quicklinks .hpdeadline__container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  padding-top: 12px;
  white-space: nowrap;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__quicklinks a {
  padding: 0.52rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__section {
  padding: 76px 0;
  scroll-margin-top: 90px;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__section--soft {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.7), rgba(248, 250, 252, 0.88));
  border-block: 1px solid rgba(226, 232, 240, 0.75);
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__section-stack {
  margin-top: 28px;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__grid {
  display: grid;
  gap: 22px;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__card p {
  margin-top: 10px;
  color: #475569;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__notice {
  align-self: start;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

body.hpdeadline-page.hpdeadline-page .hpdeadline table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline th,
body.hpdeadline-page.hpdeadline-page .hpdeadline td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline th {
  background: #f8fafc;
  color: #334155;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline td {
  color: #475569;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline tr:last-child td {
  border-bottom: 0;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__source {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__source a {
  color: var(--primary);
  font-weight: 850;
  text-decoration: none;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__source a:hover {
  text-decoration: underline;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__checklist {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__checklist li {
  position: relative;
  padding: 12px 0 12px 38px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  color: #334155;
  font-weight: 650;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #dcfce7;
  box-shadow: inset 0 0 0 7px #dcfce7, inset 0 0 0 10px #067647;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__step {
  display: flex;
  flex-direction: column;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__step span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--primary);
  font-weight: 950;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__faq details {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__faq details:first-of-type {
  margin-top: 28px;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__faq details + details {
  margin-top: 12px;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__faq summary {
  align-items: center;
  column-gap: 16px;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  list-style: none;
  padding: 20px 24px;
  color: #0f172a;
  font-weight: 850;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__faq summary::-webkit-details-marker {
  display: none;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__faq summary::after {
  content: "+";
  color: var(--primary);
  display: block;
  font-size: 1.3rem;
  line-height: 1;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__faq details[open] summary::after {
  content: "-";
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__faq details p {
  padding: 0 24px 22px;
  color: var(--muted);
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__cta {
  margin-top: 28px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 26px;
  background: linear-gradient(135deg, #0f172a 0%, #172554 100%);
  color: #fff;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__cta h2 {
  max-width: 18ch;
  color: #fff;
}

body.hpdeadline-page.hpdeadline-page .hpdeadline__cta p {
  max-width: 60ch;
  margin-top: 14px;
  color: #dbeafe;
}

@media (max-width: 980px) {
  body.hpdeadline-page.hpdeadline-page .hpdeadline__hero::before {
    right: -35vw;
    width: 80vw;
    opacity: 0.5;
  }

  body.hpdeadline-page.hpdeadline-page .hpdeadline__hero-grid,
  body.hpdeadline-page.hpdeadline-page .hpdeadline__grid--2,
  body.hpdeadline-page.hpdeadline-page .hpdeadline__grid--3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.hpdeadline-page.hpdeadline-page .hpdeadline__container {
    padding: 0 18px;
  }

  body.hpdeadline-page.hpdeadline-page .hpdeadline__hero {
    margin-top: 0;
    padding: 72px 0 46px;
  }

  body.hpdeadline-page.hpdeadline-page .hpdeadline h1 {
    font-size: clamp(2.25rem, 11vw, 3.45rem);
    line-height: 1.08;
  }

  body.hpdeadline-page.hpdeadline-page .hpdeadline__buttons {
    flex-direction: column;
  }

  body.hpdeadline-page.hpdeadline-page .hpdeadline__button {
    width: 100%;
  }

  body.hpdeadline-page.hpdeadline-page .hpdeadline__quicklinks {
    display: none;
  }

  body.hpdeadline-page.hpdeadline-page .hpdeadline__section {
    padding: 56px 0;
  }
}
