.elementor-20226 .elementor-element.elementor-element-58c1b65{margin-top:10px;margin-bottom:10px;}/* Start custom CSS for html, class: .elementor-element-a7517d8 */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    /* Siffi Brand Colours — Brand Book 2023 */
    --siffi-green: #287638;
    --siffi-green-dark: #1e5a2b;
    --siffi-green-light: #ecf5f1;
    --siffi-purple: #4B2B87;
    --siffi-purple-light: #f0ebf7;
    --siffi-yellow: #FCD757;
    --siffi-yellow-light: #fef9e7;
    --siffi-pink: #F24A69;
    --siffi-pink-light: #fef2f4;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #F2F4F7;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #717680;
    --gray-600: #39414D;
    --gray-700: #28303D;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Functional aliases */
    --primary: var(--siffi-green);
    --primary-dark: var(--siffi-green-dark);
    --primary-light: var(--siffi-green-light);
    --danger: var(--siffi-pink);

    /* Component tokens */
    --radius: 10px;
    --shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 50px rgba(0, 0, 0, 0.12);
  }

  body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.6;
    min-height: 100vh;
    font-size: 16px;
  }

  .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px 20px;
  }

  /* ── SCREENS ── */
  .screen { display: none; }
  .screen.active { display: block; }

  /* ── SIFFI HEADER ── */
  .siffi-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0 8px;
  }
  .siffi-logo svg {
    height: 36px;
    width: auto;
  }

  /* ── LANDING PAGE ── */
  .landing-hero {
    text-align: center;
    padding: 32px 0 28px;
  }
  .landing-hero .badge {
    display: inline-block;
    background: var(--siffi-green-light);
    color: var(--siffi-green);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
  }
  .landing-hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--gray-700);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .landing-hero .subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-500);
    max-width: 540px;
    margin: 0 auto 12px;
  }
  .landing-hero .caveat-line {
    font-family: 'Caveat', cursive;
    font-size: 26px;
    color: var(--siffi-green);
    margin-bottom: 32px;
  }

  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
  }
  .feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    text-align: left;
  }
  .feature-card .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
  }
  .feature-card .icon-green { background: var(--siffi-green-light); }
  .feature-card .icon-purple { background: var(--siffi-purple-light); }
  .feature-card .icon-yellow { background: var(--siffi-yellow-light); }
  .feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 4px;
  }
  .feature-card p {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 400;
  }

  .disclaimer-box {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 16px 20px;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 400;
  }

  /* ── BUTTONS ── */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    height: 50px;
  }
  .btn-primary {
    background: var(--siffi-green);
    color: var(--white);
  }
  .btn-primary:hover { background: var(--siffi-green-dark); transform: translateY(-1px); }
  .btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
  }
  .btn-secondary:hover { background: var(--gray-100); }
  .btn-outline-green {
    background: transparent;
    color: var(--siffi-green);
    border: 1px solid var(--siffi-green);
  }
  .btn-outline-green:hover { background: var(--siffi-green-light); }
  .btn-sm {
    padding: 10px 20px;
    font-size: 14px;
    height: 42px;
  }
  .btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
  }

  /* ── PROGRESS BAR ── */
  .progress-container {
    margin-bottom: 28px;
  }
  .progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }
  .progress-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
  }
  .progress-track {
    width: 100%;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
  }
  .progress-fill {
    height: 100%;
    background: var(--siffi-green);
    border-radius: 3px;
    transition: width 0.3s ease;
  }

  /* ── QUESTION CARD ── */
  .question-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    margin-bottom: 24px;
  }
  .dimension-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--siffi-green);
    background: var(--siffi-green-light);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
  }
  .question-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 24px;
    line-height: 1.45;
  }

  .likert-scale {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .likert-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-50);
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .likert-option:hover {
    background: var(--siffi-green-light);
    border-color: var(--siffi-green);
  }
  .likert-option.selected {
    background: var(--siffi-green-light);
    border-color: var(--siffi-green);
  }
  .likert-option input { display: none; }
  .likert-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
  }
  .likert-option.selected .likert-radio {
    border-color: var(--siffi-green);
    background: var(--siffi-green);
  }
  .likert-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    opacity: 0;
    transition: opacity 0.15s ease;
  }
  .likert-option.selected .likert-radio::after { opacity: 1; }
  .likert-label {
    font-size: 15px;
    font-weight: 400;
    color: var(--gray-600);
  }
  .likert-option.selected .likert-label {
    color: var(--siffi-green-dark);
    font-weight: 600;
  }

  .question-nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }

  /* ── LEAD CAPTURE ── */
  .lead-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    margin-bottom: 24px;
  }
  .lead-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 8px;
  }
  .lead-card > p {
    color: var(--gray-500);
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 400;
  }
  .form-group {
    margin-bottom: 16px;
  }
  .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 6px;
  }
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 10px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-700);
    transition: border-color 0.2s ease;
  }
  .form-group input:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--siffi-green);
    box-shadow: 0 0 0 3px rgba(40, 118, 56, 0.1);
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 24px;
  }
  .consent-row input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--siffi-green);
  }
  .consent-row label {
    font-size: 13px;
    color: var(--gray-500);
    cursor: pointer;
    font-weight: 400;
  }
  .lead-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  /* ── RESULTS ── */
  .results-header {
    text-align: center;
    padding: 32px 0 24px;
  }
  .results-header h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 8px;
  }
  .results-header p {
    font-size: 16px;
    color: var(--gray-500);
    font-weight: 400;
  }

  .score-hero {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 36px 32px;
    text-align: center;
    margin-bottom: 24px;
  }
  .score-number {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
  }
  .score-label {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
    font-weight: 400;
  }
  .tier-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  .tier-description {
    font-size: 15px;
    color: var(--gray-600);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.55;
    font-weight: 400;
  }

  /* Tier colors using brand palette */
  .tier-foundational { background: var(--siffi-pink-light); color: var(--siffi-pink); }
  .tier-emerging { background: #fff7ed; color: #d97706; }
  .tier-developing { background: var(--siffi-yellow-light); color: #b45309; }
  .tier-advanced { background: var(--siffi-green-light); color: var(--siffi-green); }
  .tier-leading { background: var(--siffi-green-light); color: var(--siffi-green-dark); }

  /* Benchmark comparison */
  .benchmark-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px 32px;
    margin-bottom: 24px;
  }
  .benchmark-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 16px;
  }
  .benchmark-bar-container {
    position: relative;
    height: 32px;
    background: var(--gray-100);
    border-radius: 8px;
    overflow: visible;
    margin-bottom: 16px;
  }
  .benchmark-bar-fill {
    height: 100%;
    border-radius: 8px;
    transition: width 0.8s ease;
  }
  .benchmark-marker {
    position: absolute;
    top: -6px;
    width: 3px;
    height: 44px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: left 0.8s ease;
  }
  .benchmark-marker-label {
    position: absolute;
    top: -24px;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    white-space: nowrap;
  }
  .benchmark-legend {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 400;
  }
  .benchmark-legend span {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
  }

  /* Radar chart */
  .radar-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px 32px;
    margin-bottom: 24px;
    text-align: center;
  }
  .radar-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 16px;
    text-align: left;
  }
  .radar-svg {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }

  /* Dimension breakdown */
  .dimensions-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px 32px;
    margin-bottom: 24px;
  }
  .dimensions-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 20px;
  }
  .dimension-row { margin-bottom: 16px; }
  .dimension-row:last-child { margin-bottom: 0; }
  .dimension-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
  }
  .dimension-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
  }
  .dimension-score {
    font-size: 14px;
    font-weight: 700;
  }
  .dimension-bar {
    height: 8px;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
  }
  .dimension-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease;
  }

  /* Recommendations */
  .recs-section { margin-bottom: 24px; }
  .recs-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 16px;
  }
  .rec-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    margin-bottom: 12px;
    border-left: 4px solid var(--siffi-green);
  }
  .rec-card .rec-gap-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--siffi-pink);
    background: var(--siffi-pink-light);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
  }
  .rec-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 6px;
  }
  .rec-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.55;
    font-weight: 400;
  }

  /* CTA section — Siffi green */
  .cta-section {
    background: var(--siffi-green);
    border-radius: var(--radius);
    padding: 36px 32px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--white);
  }
  .cta-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .cta-section .cta-subtitle {
    font-family: 'Caveat', cursive;
    font-size: 22px;
    opacity: 0.9;
    margin-bottom: 24px;
  }
  .cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-cta-primary {
    background: var(--white);
    color: var(--siffi-green);
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    height: 50px;
  }
  .btn-cta-primary:hover { background: var(--gray-100); transform: translateY(-1px); }
  .btn-cta-secondary {
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: var(--radius);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    height: 50px;
  }
  .btn-cta-secondary:hover { border-color: var(--white); }

  .results-disclaimer {
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
    padding: 16px 0 32px;
    line-height: 1.6;
    font-weight: 400;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 600px) {
    .container { padding: 16px; }
    .landing-hero h1 { font-size: 26px; }
    .landing-hero .caveat-line { font-size: 22px; }
    .question-card { padding: 24px 20px; }
    .score-number { font-size: 56px; }
    .form-row { grid-template-columns: 1fr; }
    .benchmark-card, .radar-card, .dimensions-card { padding: 20px; }
    .cta-buttons { flex-direction: column; }
    .cta-section { padding: 28px 20px; }
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate-in {
    animation: fadeInUp 0.4s ease forwards;
  }/* End custom CSS */