/* UK FM Tender Toolkit, landing page styles */

:root {
  --navy: #0f2a47;
  --navy-dark: #0a1e34;
  --accent: #2e7d8a;
  --text: #1a212e;
  --muted: #555f6d;
  --border: #e3e7ec;
  --light: #f6f8fb;
  --white: #ffffff;
  --green: #3fa05c;
  --red: #c0443a;
  --max: 1080px;
  --narrow: 780px;
  --radius: 10px;
  --shadow:
    0 1px 2px rgba(15, 42, 71, 0.06), 0 8px 24px -12px rgba(15, 42, 71, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial,
    sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2rem, 4vw + 1rem, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.4rem, 1.4vw + 1rem, 2rem);
  line-height: 1.2;
}
h3 {
  font-size: 1.05rem;
  line-height: 1.35;
}

p {
  margin: 0 0 1em;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a.link {
  border-bottom: 1px solid rgba(46, 125, 138, 0.3);
}
a:hover {
  color: var(--navy);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.narrow {
  max-width: var(--narrow);
}

.centered {
  text-align: center;
}

/* ---------- NAV ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  display: inline-block;
}
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--navy);
}
.cta-inline {
  background: var(--navy);
  color: var(--white) !important;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
}
.cta-inline:hover {
  background: var(--navy-dark);
  color: var(--white) !important;
}

@media (max-width: 640px) {
  .nav-links a:not(.cta-inline) {
    display: none;
  }
}

/* ---------- HERO ---------- */

.hero {
  background:
    radial-gradient(
      ellipse 800px 300px at 75% -20%,
      rgba(46, 125, 138, 0.15),
      transparent 60%
    ),
    linear-gradient(180deg, #f9fbfd 0%, var(--white) 100%);
  padding: 72px 0 80px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 820px;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 14px;
}
.hero h1 {
  color: var(--navy);
  margin-top: 0;
}
.lede {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 640px;
}
.lede.small {
  font-size: 1.02rem;
}
.lede.centered {
  margin-left: auto;
  margin-right: auto;
}
.lede.note {
  font-style: italic;
  margin-top: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.reassurance {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  transition:
    transform 80ms ease,
    background-color 120ms ease,
    border-color 120ms ease;
  text-align: center;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-dark);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.btn.large {
  padding: 16px 28px;
  font-size: 1.05rem;
}

/* ---------- SECTIONS ---------- */

.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.section.alt {
  background: var(--light);
}
.section.final {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.92);
  border: none;
}
.section.final h2,
.section.final .lede {
  color: var(--white);
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.section-title.centered {
  text-align: center;
}

/* ---------- TWO COLUMN ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.two-col.even {
  margin-top: 30px;
}
@media (max-width: 720px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.pane {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}
.pane.will {
  border-color: rgba(63, 160, 92, 0.4);
}
.pane.wont {
  border-color: rgba(192, 68, 58, 0.3);
}
.pane h3 {
  margin-top: 0;
}

/* ---------- LISTS ---------- */

ul.tick,
ul.cross {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.tick li,
ul.cross li {
  position: relative;
  padding: 6px 0 6px 28px;
  color: var(--text);
}
ul.tick li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20.3 5.7L9 17l-5.3-5.3 1.4-1.4L9 14.2 18.9 4.3z' fill='white'/></svg>")
    center / 14px 14px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20.3 5.7L9 17l-5.3-5.3 1.4-1.4L9 14.2 18.9 4.3z' fill='white'/></svg>")
    center / 14px 14px no-repeat;
}
ul.cross li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M18.3 5.71L12 12l6.3 6.29-1.42 1.42L10.59 13.4l-6.29 6.3-1.42-1.42L9.17 12 2.88 5.71 4.3 4.29 10.59 10.59 16.88 4.3z' fill='white'/></svg>")
    center / 12px 12px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M18.3 5.71L12 12l6.3 6.29-1.42 1.42L10.59 13.4l-6.29 6.3-1.42-1.42L9.17 12 2.88 5.71 4.3 4.29 10.59 10.59 16.88 4.3z' fill='white'/></svg>")
    center / 12px 12px no-repeat;
}
ul.tight li {
  padding-top: 4px;
  padding-bottom: 4px;
}

ol.numbered {
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
ol.numbered li {
  position: relative;
  padding: 16px 0 16px 52px;
  border-top: 1px solid var(--border);
  counter-increment: item;
}
ol.numbered li:first-child {
  border-top: none;
}
ol.numbered li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
}
ol.numbered strong {
  color: var(--navy);
}

/* ---------- CARD GRID ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
@media (max-width: 960px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(46, 125, 138, 0.4);
}
.card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.card p {
  font-size: 0.96rem;
  color: var(--muted);
  margin: 0;
}

/* ---------- FAQ ---------- */

details {
  border-top: 1px solid var(--border);
  padding: 18px 2px;
}
details:last-of-type {
  border-bottom: 1px solid var(--border);
}
details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details summary::-webkit-details-marker {
  display: none;
}
details summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--muted);
  transition: transform 120ms ease;
}
details[open] summary::after {
  content: "−";
}
details p {
  margin: 12px 0 0;
  color: var(--muted);
}

/* ---------- PRICING ---------- */

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow);
}
.pricing-title {
  font-size: 1.6rem;
  margin: 4px 0 4px;
}
.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  margin: 6px 0 20px;
  letter-spacing: -0.02em;
}
.pricing-card ul.tick {
  text-align: left;
  max-width: 380px;
  margin: 0 auto 28px;
}
.pricing-card .btn {
  margin-top: 6px;
}
.fineprint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 18px;
}

/* ---------- FOOTER ---------- */

.foot {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 32px 0;
  font-size: 0.88rem;
}
.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-brand {
  font-weight: 600;
  color: var(--white);
  margin: 0 0 4px;
}
.foot-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}
.foot-links {
  display: flex;
  gap: 18px;
}
.foot-links a {
  color: rgba(255, 255, 255, 0.8);
}
.foot-links a:hover {
  color: var(--white);
}

/* ---------- POSITIONING STRIP ---------- */

.strip {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.95);
  padding: 22px 0;
  border-bottom: 1px solid var(--navy-dark);
}

/* ---------- CREDIBILITY STRIP ---------- */

.credibility {
  background: linear-gradient(180deg, #f9fbfd 0%, var(--white) 100%);
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
}
.credibility .lede {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 14px;
  max-width: 720px;
}
.credibility .subnote {
  font-size: 0.98rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
  max-width: 720px;
}
.strip-inner p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 820px;
}
.strip-inner strong {
  color: #ffffff;
}

/* ---------- CARD (BONUS VARIANT) ---------- */

.card.bonus {
  border: 1px solid rgba(46, 125, 138, 0.5);
  background: linear-gradient(180deg, #ffffff 0%, #f5fafb 100%);
  position: relative;
}
.card .tag {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

/* ---------- COMPARE (generic vs toolkit) ---------- */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 720px) {
  .compare {
    grid-template-columns: 1fr;
  }
}
.compare-col {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
}
.compare-col h3 {
  margin-top: 0;
  font-size: 1rem;
}
.compare-col.bad {
  border-color: rgba(192, 68, 58, 0.3);
  background: #fdf6f5;
}
.compare-col.good {
  border-color: rgba(63, 160, 92, 0.4);
  background: #f4faf6;
}

/* ---------- PRICING, day rate anchor ---------- */

.pricing-card .anchor {
  font-size: 0.95rem;
  color: var(--muted);
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  margin: -6px auto 22px;
  max-width: 440px;
}
.pricing-card .anchor strong {
  color: var(--navy);
}
