/* ============================================================
   Bull Consult — bullconsult.net
   Global stylesheet
   ============================================================ */

:root {
  --navy: #0d1b2a;
  --navy-2: #13263c;
  --navy-3: #1b3a5c;
  --accent: #e8a33d;
  --accent-dark: #c9862a;
  --text: #2b3440;
  --text-light: #5a6673;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --border: #e3e8ee;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 16px 48px rgba(13, 27, 42, 0.14);
  --max-width: 1160px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy-3);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.4rem); }

p { margin: 0 0 1.15rem; }

.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-light);
}

.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 0.6rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--accent);
  color: var(--navy);
}

.btn--primary:hover {
  background: #f0b054;
  box-shadow: 0 10px 24px rgba(232, 163, 61, 0.35);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn--dark {
  background: var(--navy);
  color: #fff;
}

.btn--dark:hover {
  background: var(--navy-3);
  box-shadow: var(--shadow);
}

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
}

.brand span {
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.brand span em {
  font-style: normal;
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle .bar {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  display: block;
  padding: 0.55rem 0.9rem;
  color: #e6ecf3;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.main-nav .nav-cta a {
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  margin-left: 0.4rem;
}

.main-nav .nav-cta a:hover {
  background: #f0b054;
}

/* Dropdown */

.has-dropdown {
  position: relative;
}

.has-dropdown > a::after {
  content: "";
  display: inline-block;
  margin-left: 0.45rem;
  border: 5px solid transparent;
  border-top-color: currentColor;
  transform: translateY(3px);
}

.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 0;
}

.main-nav .has-dropdown:hover .dropdown,
.main-nav .has-dropdown.is-open .dropdown {
  display: flex;
}

.dropdown li {
  width: 100%;
}

.dropdown a {
  color: var(--navy) !important;
  background: none !important;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
}

.dropdown a:hover {
  background: var(--bg-soft) !important;
  color: var(--accent-dark) !important;
}

/* ---------- Hero (home) ---------- */

.hero {
  position: relative;
  background: linear-gradient(rgba(13, 27, 42, 0.82), rgba(13, 27, 42, 0.88)),
    url("../bilder/What-Are-the-Top-Challenges-Faced-by-Consultants-1-e1533591190992.jpg")
      center / cover no-repeat;
  color: #fff;
  padding: clamp(4.5rem, 10vw, 8.5rem) 0;
}

.hero h1 {
  color: #fff;
  max-width: 760px;
}

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

.hero p {
  max-width: 640px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #d4dde7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: 3.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats strong {
  display: block;
  font-size: 1.9rem;
  color: var(--accent);
}

.hero-stats span {
  color: #b9c6d4;
  font-size: 0.95rem;
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  position: relative;
  color: #fff;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(13, 27, 42, 0.93) 35%, rgba(13, 27, 42, 0.72));
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  color: #fff;
  max-width: 820px;
}

.page-hero p {
  max-width: 700px;
  color: #d4dde7;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  color: #a9b8c8;
}

.breadcrumb a {
  color: #d4dde7;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
}

/* ---------- Cards / grids ---------- */

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card .icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-3), var(--navy));
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}

.card h3 a {
  color: var(--navy);
  text-decoration: none;
}

.card h3 a:hover {
  color: var(--accent-dark);
}

.card p {
  color: var(--text-light);
  font-size: 0.98rem;
  flex-grow: 1;
}

.card .read-more {
  font-weight: 600;
  color: var(--accent-dark);
  text-decoration: none;
}

.card .read-more:hover {
  text-decoration: underline;
}

/* ---------- Split (text + image) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

/* ---------- Process steps ---------- */

.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.6rem 5rem;
  box-shadow: var(--shadow);
}

.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1.35rem;
  top: 1.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
}

.steps h3 {
  margin-bottom: 0.4rem;
}

.steps p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.98rem;
}

/* ---------- Checklist ---------- */

.checklist {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.7rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--accent-dark);
}

/* ---------- Article (service page long-form) ---------- */

.article-body h2 {
  margin-top: 2.75rem;
}

.article-body h3 {
  margin-top: 1.9rem;
}

.article-body figure {
  margin: 2.5rem 0;
}

.article-body figure img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

.article-body figcaption {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 0.7rem;
  text-align: center;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 820px;
  margin: 0 auto;
}

.callout {
  background: var(--bg-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.6rem;
  margin: 2rem 0;
}

.callout p:last-child {
  margin-bottom: 0;
}

/* ---------- Testimonials ---------- */

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow);
}

.testimonial blockquote {
  margin: 0 0 1.2rem;
  font-size: 1rem;
  color: var(--text);
}

.testimonial blockquote::before {
  content: "\201C";
  display: block;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--accent);
  font-weight: 800;
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.testimonial .role {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-3));
  color: #fff;
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.cta-band h2 {
  color: #fff;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.cta-band p {
  color: #c8d4e0;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ---------- Forms ---------- */

.form-grid {
  display: grid;
  gap: 1.2rem;
}

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.form-note {
  font-size: 0.88rem;
  color: var(--text-light);
}

.form-status {
  font-weight: 600;
  margin-top: 0.75rem;
}

.form-status.success { color: #1c7c43; }
.form-status.error { color: #b3261e; }

/* ---------- Contact info ---------- */

.contact-info {
  background: var(--navy);
  color: #dbe4ee;
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
}

.contact-info h3 {
  color: #fff;
}

.contact-info a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 0.9rem;
  padding-left: 1.8rem;
  position: relative;
}

.contact-info li::before {
  content: "▸";
  color: var(--accent);
  position: absolute;
  left: 0;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: #b9c6d4;
  padding: 3.5rem 0 1.5rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.site-footer h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.55rem;
}

.site-footer a {
  color: #b9c6d4;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.footer-brand span {
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #8fa0b3;
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .btn { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .grid--3,
  .grid--2 { grid-template-columns: 1fr; }

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

  .nav-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-2);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
    display: none;
    padding: 0.75rem 1rem 1.25rem;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .main-nav.open { display: block; }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .main-nav a { padding: 0.8rem 0.9rem; }

  .has-dropdown > a::after { display: none; }

  .main-nav .dropdown {
    position: static;
    display: flex;
    box-shadow: none;
    background: transparent;
    min-width: 0;
    padding: 0 0 0 1rem;
  }

  .dropdown a {
    color: #c8d4e0 !important;
    font-size: 0.92rem;
  }

  .dropdown a:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    color: var(--accent) !important;
  }

  .main-nav .nav-cta a {
    margin: 0.6rem 0 0;
    text-align: center;
  }

  .nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ---------- Pricing plans ---------- */

.plan {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan h3 {
  margin-bottom: 0.2rem;
}

.plan .price {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin: 0.4rem 0 0.2rem;
}

.plan .price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
}

.plan .plan-desc {
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.plan ul.checklist {
  margin: 1.1rem 0 1.6rem;
}

.plan .btn {
  margin-top: auto;
}

.plan--featured {
  border-color: var(--accent);
  box-shadow: 0 14px 34px rgba(13, 27, 42, 0.16);
  position: relative;
}

.plan--featured .badge {
  position: absolute;
  top: -0.85rem;
  left: 1.6rem;
  background: var(--accent);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ---------- Legal / policy pages ---------- */

.legal-meta {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 1.6rem;
}

.article-body address {
  font-style: normal;
  line-height: 1.7;
}

/* ---------- Fixed-price list & hourly rates ---------- */

.price-list {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 1.4rem 0 0;
}

.price-item {
  padding: 1.05rem 1.35rem;
  border-bottom: 1px solid var(--border);
}

.price-item:last-child {
  border-bottom: none;
}

.price-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.price-item-head h3 {
  margin: 0;
  font-size: 1.02rem;
}

.price-item .amount {
  font-weight: 800;
  color: var(--accent-dark);
  white-space: nowrap;
}

.price-item p {
  margin: 0.3rem 0 0;
  color: var(--text-light);
  font-size: 0.93rem;
}

.plan-outcome {
  margin: 0 0 1.3rem;
  padding: 0.75rem 0.95rem;
  background: var(--bg-soft);
  border-radius: 10px;
  font-size: 0.92rem;
}

.plan-outcome strong {
  color: var(--navy);
}
