/* ==========================================================================
   Worksett – Stylesheet
   Version: 2.0 (clean rebuild)

   Palette
   -------
   Deep navy   #17283B
   Muted green #3F7567
   Warm white  #F7F5F0
   Soft grey   #DCE2E4
   Dark text   #17212B
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --navy:        #17283B;
  --green:       #3F7567;
  --green-dark:  #2f5a50;
  --green-light: rgba(63, 117, 103, 0.12);
  --warm-white:  #F7F5F0;
  --soft-grey:   #DCE2E4;
  --dark-text:   #17212B;
  --mid-grey:    #6b7a85;
  --border:      #c8d0d4;
  --white:       #ffffff;
  --footer-bg:   #0f1e2d;

  --font: 'Inter', 'Segoe UI', Arial, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 4px rgba(23, 40, 59, 0.08);
  --shadow-md: 0 4px 18px rgba(23, 40, 59, 0.12);
  --shadow-lg: 0 8px 36px rgba(23, 40, 59, 0.16);

  --max-w: 1140px;
  --pad-x: 24px;
  --section-y: 80px;
  --ease: 180ms ease;
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--dark-text);
  background: var(--warm-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--green); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--green-dark); }
ul, ol { list-style: none; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   3. Accessibility
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--pad-x);
  background: var(--green);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 300;
  transition: top var(--ease);
}
.skip-link:focus { top: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   4. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--navy);
  line-height: 1.22;
  font-weight: 700;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
h2 { font-size: clamp(1.45rem, 3.2vw, 2.15rem); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

.lead {
  font-size: 1.1rem;
  color: var(--mid-grey);
  line-height: 1.72;
}

.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

/* --------------------------------------------------------------------------
   5. Layout
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section {
  padding: var(--section-y) var(--pad-x);
}
.section--white  { background: var(--white); }
.section--grey   { background: var(--soft-grey); }
.section--navy   { background: var(--navy); }
.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4 { color: var(--warm-white); }
.section--navy .label { color: #7ecfc0; }
.section--navy .lead  { color: #a8b8c4; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 28px; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 24px; }

@media (min-width: 600px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 860px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.text-centre { text-align: center; }
.text-muted  { color: var(--mid-grey); }

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--ease), color var(--ease),
              border-color var(--ease), box-shadow var(--ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--lg  { padding: 15px 34px; font-size: 1rem; }
.btn--sm  { padding: 9px 18px; font-size: 0.85rem; }

/* --------------------------------------------------------------------------
   7. Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--soft-grey);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.header-logo img { height: 34px; width: auto; }

/* Desktop nav */
.primary-nav {
  display: none;
  align-items: center;
  gap: 2px;
}
.primary-nav a {
  color: var(--dark-text);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: background var(--ease), color var(--ease);
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: var(--soft-grey);
  color: var(--navy);
}
.primary-nav a[aria-current="page"] { font-weight: 700; }

.header-cta { display: none; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--soft-grey);
  padding: 12px var(--pad-x) 24px;
  gap: 2px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  color: var(--dark-text);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 11px 0;
  border-bottom: 1px solid var(--soft-grey);
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a[aria-current="page"] { color: var(--green); font-weight: 700; }
.mobile-nav .btn { margin-top: 14px; width: 100%; justify-content: center; }

@media (min-width: 768px) {
  .primary-nav { display: flex; }
  .header-cta  { display: inline-flex; }
  .nav-toggle  { display: none; }
}

/* --------------------------------------------------------------------------
   8. Section header block
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: 52px;
}
.section-header h2 { margin-bottom: 12px; }

/* --------------------------------------------------------------------------
   9. Hero
   -------------------------------------------------------------------------- */
.hero {
  background: var(--navy);
  padding: 96px var(--pad-x) 80px;
  text-align: center;
}
.hero h1 {
  color: var(--warm-white);
  max-width: 740px;
  margin-inline: auto;
  margin-bottom: 18px;
}
.hero .lead {
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 36px;
  color: #a8b8c4;
}
.hero-badge {
  display: inline-block;
  background: rgba(63,117,103,0.22);
  color: #7ecfc0;
  border: 1px solid rgba(63,117,103,0.45);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 22px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   10. Page hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  background: var(--navy);
  padding: 60px var(--pad-x) 52px;
  text-align: center;
}
.page-hero h1 { color: var(--warm-white); margin-bottom: 10px; }
.page-hero p  { color: #a8b8c4; max-width: 540px; margin-inline: auto; }
.page-hero .label { color: #7ecfc0; }

/* --------------------------------------------------------------------------
   11. Problem items
   -------------------------------------------------------------------------- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 840px;
  margin-inline: auto;
}
@media (min-width: 600px) { .problem-grid { grid-template-columns: 1fr 1fr; } }

.problem-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.problem-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: #fef3f2;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.problem-item h4 { margin-bottom: 4px; font-size: 0.95rem; }
.problem-item p  { font-size: 0.875rem; color: var(--mid-grey); margin: 0; }

/* --------------------------------------------------------------------------
   12. Workflow steps
   -------------------------------------------------------------------------- */
.workflow-steps {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 880px;
  margin-inline: auto;
}
@media (min-width: 720px) {
  .workflow-steps { grid-template-columns: repeat(4, 1fr); }
}

.workflow-step {
  position: relative;
  text-align: center;
  padding: 28px 20px;
}
/* Vertical connector on mobile */
.workflow-step::after {
  content: '';
  display: block;
  width: 2px;
  height: 28px;
  background: var(--soft-grey);
  margin: 14px auto 0;
}
@media (min-width: 720px) {
  .workflow-step::after {
    position: absolute;
    top: 40px;
    right: 0;
    width: 100%;
    height: 2px;
    margin: 0;
    background: var(--soft-grey);
  }
  .workflow-step:last-child::after { display: none; }
}

.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
}
.section--grey .step-num { background: var(--green); }

.workflow-step h4 { margin-bottom: 6px; font-size: 0.95rem; }
.workflow-step p  { font-size: 0.84rem; color: var(--mid-grey); }

/* --------------------------------------------------------------------------
   13. Benefit cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow var(--ease), transform var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-icon {
  width: 46px;
  height: 46px;
  background: var(--green-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p  { font-size: 0.875rem; color: var(--mid-grey); margin: 0; }

/* --------------------------------------------------------------------------
   14. Trust list
   -------------------------------------------------------------------------- */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 840px;
  margin-inline: auto;
}
@media (min-width: 600px) { .trust-grid { grid-template-columns: 1fr 1fr; } }

.trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust-tick {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  margin-top: 2px;
}
.trust-item h4 { margin-bottom: 3px; font-size: 0.95rem; }
.trust-item p  { font-size: 0.85rem; color: var(--mid-grey); margin: 0; }

/* --------------------------------------------------------------------------
   15. Beta card
   -------------------------------------------------------------------------- */
.beta-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}
.beta-card h3 { margin-bottom: 10px; }
.beta-card > p { color: var(--mid-grey); margin-bottom: 22px; }

.check-list {
  text-align: left;
  display: inline-block;
  margin-bottom: 28px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 9px;
}
.check-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* --------------------------------------------------------------------------
   16. CTA banner
   -------------------------------------------------------------------------- */
.cta-banner {
  background: var(--navy);
  padding: 72px var(--pad-x);
  text-align: center;
}
.cta-banner h2 { color: var(--warm-white); margin-bottom: 12px; }
.cta-banner p  { color: #a8b8c4; max-width: 520px; margin-inline: auto; margin-bottom: 30px; }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--footer-bg);
  color: #8a9baa;
  padding: 52px var(--pad-x) 28px;
}
.footer-inner { max-width: var(--max-w); margin-inline: auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
@media (min-width: 600px) {
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr; }
}

.footer-brand img { height: 30px; margin-bottom: 12px; }
.footer-brand p   { font-size: 0.85rem; line-height: 1.6; max-width: 260px; }

.footer-col h5 {
  color: var(--warm-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col a  { color: #8a9baa; font-size: 0.85rem; transition: color var(--ease); }
.footer-col a:hover { color: var(--warm-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-legal a { color: #8a9baa; font-size: 0.78rem; }
.footer-legal a:hover { color: var(--warm-white); }

/* --------------------------------------------------------------------------
   18. How It Works — detailed steps
   -------------------------------------------------------------------------- */
.hiw-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  padding: 44px 0;
  border-bottom: 1px solid var(--soft-grey);
}
.hiw-step:last-child { border-bottom: none; }
@media (min-width: 720px) {
  .hiw-step { grid-template-columns: 72px 1fr; gap: 36px; }
}

.hiw-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hiw-content h3 { margin-bottom: 8px; }
.hiw-content p  { color: var(--mid-grey); }

.detail-list { margin-top: 12px; display: flex; flex-direction: column; gap: 5px; }
.detail-list li {
  font-size: 0.875rem;
  color: var(--mid-grey);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.detail-list li::before {
  content: '·';
  color: var(--green);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1.3;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   19. Services
   -------------------------------------------------------------------------- */
.service-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin-bottom: 20px;
}
.service-block h3 { margin-bottom: 8px; }
.service-block p  { color: var(--mid-grey); }

.service-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.arrow-list { display: flex; flex-direction: column; gap: 7px; margin-top: 14px; }
.arrow-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--dark-text);
}
.arrow-list li::before {
  content: '→';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   20. About — value cards
   -------------------------------------------------------------------------- */
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
}
.value-icon { font-size: 1.5rem; margin-bottom: 10px; }
.value-card h4 { margin-bottom: 6px; }
.value-card p  { font-size: 0.875rem; color: var(--mid-grey); margin: 0; }

/* --------------------------------------------------------------------------
   21. Pilot form
   -------------------------------------------------------------------------- */
.pilot-wrap { max-width: 700px; margin-inline: auto; }

.form-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  font-size: 0.875rem;
}
.form-notice--warn {
  background: #fff8e6;
  border: 1px solid #f0d080;
  color: #7a5c00;
}
.form-notice--info {
  background: #eef6f4;
  border: 1px solid #b0d4cc;
  color: #2a5048;
}
.notice-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.form-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin: 28px 0 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--soft-grey);
}

.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 18px; }
@media (min-width: 560px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-text);
}
.form-group .opt { font-weight: 400; color: var(--mid-grey); font-size: 0.78rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--dark-text);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(63,117,103,0.14);
}
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.form-group textarea { resize: vertical; min-height: 96px; }

/* Select arrow */
.select-wrap { position: relative; }
.select-wrap::after {
  content: '';
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--mid-grey);
  pointer-events: none;
}
.select-wrap select { padding-right: 34px; }

/* Field error */
.field-error {
  font-size: 0.78rem;
  color: #c0392b;
  display: none;
}
.field-error.is-visible { display: block; }

/* Checkboxes */
.form-check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.form-check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green);
  cursor: pointer;
}
.form-check label {
  font-size: 0.85rem;
  color: var(--dark-text);
  cursor: pointer;
  line-height: 1.5;
}
.form-check label a { color: var(--green); }
.form-check .field-error {
  margin-top: 4px;
  margin-left: 0;
  display: none;
}
.form-check .field-error.is-visible { display: block; }

/* Submit row */
.form-submit {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.form-submit .btn { min-width: 190px; }

/* Form feedback */
.form-success,
.form-error-msg {
  display: none;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  margin-top: 20px;
  font-size: 0.92rem;
}
.form-success    { background: #eef6f4; border: 1px solid #b0d4cc; color: #2a5048; }
.form-error-msg  { background: #fef2f2; border: 1px solid #f5c6c6; color: #8b1a1a; }
.form-success.is-visible,
.form-error-msg.is-visible { display: block; }

/* Disabled form state */
.form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled {
  background: var(--soft-grey);
  color: var(--mid-grey);
  cursor: not-allowed;
  border-color: var(--border);
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --------------------------------------------------------------------------
   22. Legal pages
   -------------------------------------------------------------------------- */
.legal-content { max-width: 740px; margin-inline: auto; }
.legal-meta { font-size: 0.78rem; color: var(--mid-grey); margin-bottom: 36px; }

.legal-content h2 {
  font-size: 1.15rem;
  margin-top: 36px;
  margin-bottom: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--soft-grey);
}
.legal-content h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content p,
.legal-content li { font-size: 0.92rem; color: var(--mid-grey); line-height: 1.75; }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 1rem; }
.legal-content ul li { margin-bottom: 5px; }

/* --------------------------------------------------------------------------
   23. Utilities
   -------------------------------------------------------------------------- */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* --------------------------------------------------------------------------
   24. Responsive tweaks
   -------------------------------------------------------------------------- */
@media (max-width: 599px) {
  :root { --section-y: 52px; }
  .hero { padding: 68px var(--pad-x) 56px; }
  .beta-card { padding: 28px 20px; }
  .service-block { padding: 22px 18px; }
}
@media (min-width: 1024px) {
  :root { --section-y: 96px; }
}