/* Sitemap grid styles */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.sitemap-grid h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.sitemap-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-grid li {
  margin-bottom: 0.5rem;
}

.sitemap-grid a {
  color: var(--primary-dark);
  text-decoration: underline;
  font-weight: 500;
}

.sitemap-grid a:hover {
  color: var(--primary);
}

/* FreeCROTool shared site stylesheet */

:root {
  --bg: #fffaf7;
  --surface: #ffffff;
  --surface-alt: #fff3ec;
  --text: #2e2420;
  --muted: #6e5b54;
  --primary: #e86f3d;
  --primary-dark: #c95528;
  --accent: #f7c7b1;
  --border: #efd7cb;
  --success: #2f7d57;
  --shadow: 0 10px 30px rgba(68, 36, 20, 0.08);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(180deg, #fff8f3 0%, #ffffff 24%, #fffaf7 100%);
}

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

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 250, 247, 0.92);
  border-bottom: 1px solid rgba(239, 215, 203, 0.8);
}

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

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.brand span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 0.5rem;
  z-index: 30;
}

.burger span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 5px 0;
  background: #2e2420;
  border-radius: 2px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger.open span:nth-of-type(1) {
  transform: translateY(16px) rotate(45deg);
}

.burger.open span:nth-of-type(2) {
  opacity: 0;
}

.burger.open span:nth-of-type(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.button {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow);
}

.button:hover {
  background: var(--primary-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.button-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: white;
}

.button-secondary:hover {
  background: var(--surface-alt);
  text-decoration: none;
}




.hero {
  padding: 0 0 3rem;
}


.hero-image-fullwidth {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #fffaf7;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 2.5rem;
}

.hero-image {
  width: 100vw;
  max-width: 1600px;
  height: auto;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 8px 32px rgba(68, 36, 20, 0.10);
  object-fit: cover;
  display: block;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2.5rem;
}

.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kicker {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--primary-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.1rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 55ch;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-card,
.card,
.feature-card,
.price-card,
.process-card,
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.5rem;
}

.metric {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.metric div {
  padding: 1rem;
  background: var(--surface-alt);
  border-radius: 14px;
  text-align: center;
}

.metric strong {
  display: block;
  font-size: 1.4rem;
  color: var(--primary-dark);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 243, 236, 0.65), rgba(255, 255, 255, 0.7));
}

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.25rem;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.feature-card,
.price-card,
.process-card,
.quote-card {
  padding: 1.35rem;
}

.card ul,
.feature-card ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.process-card .step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--primary-dark);
  font-weight: 700;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #eef7f1;
  color: var(--success);
  font-size: 0.85rem;
  font-weight: 700;
}

.checklist {
  display: grid;
  gap: 0.6rem;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.price-card.featured {
  outline: 2px solid var(--primary);
  transform: translateY(-4px);
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.small {
  color: var(--muted);
  font-size: 0.95rem;
}

.split-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.highlight-panel {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.highlight-panel.alt {
  background: var(--surface-alt);
}

.cta-panel {
  padding: 2rem;
  border-radius: 26px;
  background: linear-gradient(135deg, #fff1e8, #ffffff);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
}


@media (max-width: 900px) {
  .hero-image-fullwidth {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 12px 12px;
    margin-top: 1.2rem;
  }

  .hero-image {
    width: 100vw;
    max-width: 100vw;
    border-radius: 0 0 12px 12px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 0;
  }

  .hero-main {
    margin-bottom: 1.5rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .split-highlight {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    padding: 0.85rem 0;
  }

  .burger {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background: var(--surface);
    position: absolute;
    top: 74px;
    left: 0;
    max-height: 0;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 8px 24px rgba(68, 36, 20, 0.08);
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
    z-index: 25;
  }

  .nav-links.open {
    max-height: 90vh;
    opacity: 1;
    pointer-events: auto;
    padding-bottom: 1rem;
  }

  .nav-links a {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

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

.pt-2 {
  padding-top: 2em;
}

.centre {
  text-align: center;
}