.startchancen-portfolio {
  --bg:#white;
  --panel:#004172;
  --panel2:#cdb9a4;
  --panel3:#efe8e1;
  --text:#004172;
  --muted:#fff;
  --brand:#004172;
  --brand2:#00a6aa;
  --line:#004172;
  --radius:18px;
  --shadow: 0 18px 60px rgba(0,0,0,.35);

  * {
    box-sizing: border-box;
  }

  a {
    color: inherit;
  }

  .container {
    max-width: 1410px;
    margin: 0 auto;
    padding: 0 20px;
  }

  header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7,11,20,.72);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }

  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: .2px;
  }

  .mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    box-shadow: 0 10px 25px rgba(103,183,255,.22);
  }

  .navlinks {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .navlinks a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 800;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 12px;
  }

  .navlinks a:hover {
    background: rgba(255,255,255,.06);
    color: var(--text);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--brand2) !important;
	color: var(--muted);
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform .08s ease, border-color .15s ease, background .15s ease;
  }

  .btn:hover {
    transform: translateY(-1px);
  }

  .btn.small {
    padding: 10px 12px;
  }

  .btn.ghost {
    background: transparent;
  }

  .grid {
    display: grid;
    gap: 18px;
  }

  .grid2 {
    grid-template-columns: 1.15fr .85fr;
  }

  .grid3 {
    grid-template-columns: repeat(3, 1fr);
  }

  @media(max-width: 900px) {
    .grid2,
    .grid3 {
      grid-template-columns: 1fr;
    }
  }

  /* Product grid that adapts to 4–5 cards nicely */
  .productgrid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: 16px;
  }

  .card {
    background: var(--brand);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
  }

  .badge-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
  }

  .badge {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .25px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--line);
    color: var(--muted);
	white-space: wrap !important;
  }

  h1 {
    margin: 10px 0 10px;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: -.7px;
	color: var(--brand);
  }

  h2 {
    margin: 0 0 10px;
    font-size: clamp(24px, 2.5vw, 34px);
    letter-spacing: -.4px;
	color: var(--brand);
  }

  h3 {
    margin: 0 0 8px;
    font-size: 18px;
	color: var(--brand);
  }

.card h1, .card h2, .card h3 {
	color: var(--muted);
}
.card p {
    color: var(--muted);
  }
  p {
    margin: 0;
    color: var(--brand);
    line-height: 1.65;
  }

  .lead {
    font-size: 18px;
    margin: 0 0 18px;
  }

  .cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
  }

  .mini {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
    color: var(--muted);
    font-size: 13px;
  }

  .mini span {
    padding: 7px 10px;
    border: 1px dashed rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.03);
  }

  ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.6;
  }
  
  .callout ul {
   color: var(--brand);
 
  }

  li {
    margin: 6px 0;
  }

  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
  }

  @media(max-width: 900px) {
    .split {
      grid-template-columns: 1fr;
    }
  }

  .callout {
    padding: 20px;
    background: var(--panel3);
    border: 1px solid var(--panel3);
    border-radius: var(--radius);
    margin-top: 16px;
	color: var(--brand);
  }
  
  .callout p {
    color: var(--brand) !important;
}

  .kicker {
    font-weight: 900;
    margin: 0 0 6px;
    color: var(--brand);
  }

  .hr {
    height: 1px;
    background: var(--line);
    margin: 18px 0;
  }

  /* Sticky bottom CTA */
  .stickybar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: rgba(7,11,20,.78);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(10px);
  }

  .stickybar .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
  }

  .stickybar .inner .text {
    font-size: 13px;
    color: rgba(185,198,230,.9);
  }

  .stickybar .inner .actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  @media(max-width: 700px) {
    .stickybar .inner {
      flex-direction: column;
      align-items: flex-start;
    }

    .stickybar .inner .actions {
      width: 100%;
    }

    .stickybar .inner .actions a {
      flex: 1;
    }
  }

  /* Forms */
  .form {
    display: grid;
    gap: 12px;
    margin-top: 12px;
  }

  label {
    font-size: 13px;
    color: var(--brand);
    font-weight: 900;
	background: var(--panel3) !important;
  }

  input,
  select,
  textarea {
    width: 100%;
    padding: 12px 12px;
    background: var(--panel3) !important;
    color: var(--text) !important;
    outline: none;
  }

  textarea {
    min-height: 110px;
    resize: vertical;
  }

  .hint {
    font-size: 12px;
    color: rgba(185,198,230,.85);
    line-height: 1.5;
  }

  footer {
    padding: 30px 0 90px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
  }

  .pill {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.05);
    font-weight: 900;
    color: rgba(234,240,255,.92);
    font-size: 12px;
    letter-spacing: .2px;
    margin-right: 8px;
    margin-bottom: 8px;
  }

  .table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.03);
    margin-top: 14px;
  }

  .table th,
  .table td {
    padding: 12px 12px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    text-align: left;
    font-size: 14px;
    color: var(--brand);
  }

  .table th {
    color: var(--brand);
    font-weight: 900;
  }

  .table tr:last-child td {
    border-bottom: none;
  }

  .product-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }

  .tagrow {
    margin-top: 10px;
  }

  .tagrow .pill {
    font-size: 11px;
    padding: 5px 9px;
  }

  .subtle-link {
    font-weight: 900;
    text-decoration: none;
  }

  .subtle-link:hover {
    text-decoration: underline;
  }
}