:root {
      --navy: #0f172a;
      --navy-light: #1e293b;
      --accent: #2563eb;
      --accent-soft: #eff6ff;
      --text-main: #475569;
      --text-soft: #64748b;
      --text-heading: #0f172a;
      --bg-light: #f8fafc;
      --white: #ffffff;
      --border: #e2e8f0;
      --shadow: 0 20px 50px -28px rgba(15, 23, 42, 0.22);
      --shadow-soft: 0 12px 30px -20px rgba(15, 23, 42, 0.16);
      --transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
      --radius: 18px;
      --radius-lg: 28px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text-main);
      line-height: 1.65;
      background: var(--white);
      overflow-x: hidden;
    }

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

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    section {
      padding: 92px 0;
    }

    h1,
    h2,
    h3,
    h4 {
      color: var(--text-heading);
      line-height: 1.15;
      letter-spacing: -0.03em;
    }

    h1 {
      font-size: clamp(2.4rem, 5vw, 4.4rem);
      font-weight: 800;
      margin-bottom: 1rem;
    }

    h2 {
      font-size: clamp(1.9rem, 3vw, 2.8rem);
      font-weight: 800;
      margin-bottom: 1rem;
    }

    h3 {
      font-size: 1.2rem;
      font-weight: 700;
    }

    p {
      color: var(--text-main);
    }

    .eyebrow {
      display: inline-block;
      padding: 0.45rem 0.9rem;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent);
      font-size: 1.0rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 1.1rem;
    }

    .section-head {
      max-width: 760px;
      margin: 0 auto 3.5rem;
      text-align: center;
    }

    .section-head p {
      color: var(--text-soft);
    }

    .section-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 0.85rem;
      color: var(--accent);
      font-size: 0.98rem;
      font-weight: 700;
      transition: var(--transition);
    }

    .section-link:hover {
      color: var(--navy);
      text-decoration: underline;
    }

    header {
      min-height: 74px;
      display: flex;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 10px 0;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.85);
      box-shadow: 0 10px 30px -24px rgba(15, 23, 42, 0.18);
    }

    .nav-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
      width: 100%;
    }

    .logo {
      font-size: 1.22rem;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.03em;
      white-space: nowrap;
    }

    .logo span {
      font-weight: 500;
      color: var(--text-soft);
    }

    .nav-links {
      display: flex;
      gap: 1.4rem;
      align-items: center;
      list-style: none;
      flex-wrap: wrap;
    }

    .nav-links a {
      color: var(--text-main);
      font-size: 0.95rem;
      font-weight: 600;
      transition: var(--transition);
      position: relative;
    }

    .nav-links a:hover {
      color: var(--accent);
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: var(--accent);
      transition: width 0.28s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-shrink: 0;
    }

    .nav-btn {
      padding: 0.72rem 1.05rem;
      font-size: 0.9rem;
      border-radius: 12px;
      white-space: nowrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.9rem 1.4rem;
      border-radius: 12px;
      font-weight: 700;
      transition: var(--transition);
      border: 1px solid transparent;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--navy);
      color: var(--white);
      box-shadow: 0 16px 28px -18px rgba(15, 23, 42, 0.6);
    }

    .btn-primary:hover {
      background: var(--accent);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: var(--white);
      color: var(--navy);
      border-color: var(--border);
    }

    .btn-outline:hover {
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-2px);
    }

    .hero {
      padding: 88px 0 72px;
      background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.10) 0%, transparent 24%),
        radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.06) 0%, transparent 18%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 3rem;
      align-items: center;
    }

    .hero-copy p {
      max-width: 640px;
      font-size: 1.08rem;
      color: var(--text-soft);
      margin-bottom: 1.5rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 1.75rem;
    }

    .hero-image {
      position: relative;
      min-height: 500px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
      display: flex;
      align-items: end;
      justify-content: flex-start;
      background: transparent;
    }

    .hero-image::before,
    .hero-image::after {
      display: none;
    }

    .hero-image img.hero-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center bottom;
      padding: 0;
      background: transparent;
    }

    .profile-card {
  display: none;
}

    .profile-photo {
      display: none;
    }

    .profile-card h3 {
      color: var(--white);
      margin-bottom: 0.35rem;
    }

    .profile-card p {
      color: #dbeafe;
      font-size: 0.95rem;
    }

    .summary-strip {
      padding: 28px 0 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
    }

    .stat-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 1.35rem;
      box-shadow: var(--shadow-soft);
    }

    .stat-card h3 {
      font-size: 2rem;
      color: var(--navy);
      margin-bottom: 0.25rem;
    }

    .stat-card p {
      color: var(--text-soft);
      font-size: 0.95rem;
      font-weight: 500;
    }

    .skills-section {
      background: var(--bg-light);
    }

    .skills-wrap {
      max-width: 1220px;
      margin: 0 auto;
    }

    .strengths-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }

    .strength-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.9rem;
      padding: 1rem 1.35rem;
      border-radius: 999px;
      background: var(--white);
      border: 1px solid #d7dee8;
      color: var(--navy);
      font-size: 1.05rem;
      font-weight: 700;
      box-shadow: 0 8px 18px -20px rgba(15, 23, 42, 0.35);
      transition: var(--transition);
      min-height: 58px;
    }

    .strength-pill:hover {
      transform: translateY(-2px);
      border-color: #bfd0f7;
      box-shadow: 0 14px 30px -22px rgba(37, 99, 235, 0.45);
    }

    .strength-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #2563eb;
      flex: 0 0 auto;
    }

    .meet-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 3.5rem;
      align-items: center;
    }

    .meet-photo {
      border-radius: var(--radius-lg);
      min-height: 480px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background: linear-gradient(145deg, #e2e8f0, #f8fafc);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .meet-photo .photo-placeholder {
      width: calc(100% - 48px);
      height: calc(100% - 48px);
      border-radius: 24px;
      border: 1px dashed #94a3b8;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem;
      color: var(--text-soft);
      font-weight: 600;
      background: rgba(255, 255, 255, 0.45);
    }

    .meet-copy p {
      margin-bottom: 1rem;
      color: var(--text-soft);
      font-size: 1.05rem;
    }

    .mini-points {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .mini-point {
      background: var(--bg-light);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1rem 1.1rem;
      color: var(--navy);
      font-weight: 700;
    }

    .employer-section {
      background: var(--bg-light);
    }

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

    .expertise-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 1.7rem;
      box-shadow: var(--shadow-soft);
      transition: var(--transition);
    }

    .expertise-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
      border-color: #c7d2fe;
    }

    .expertise-card .num {
      display: inline-block;
      font-size: 0.90rem;
      font-weight: 800;
      color: var(--accent);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 0.9rem;
    }

    .expertise-card p {
      color: var(--text-soft);
      margin-top: 0.75rem;
    }

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

    .insights-section {
      background: var(--white);
    }

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

    .insight-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .insight-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
      border-color: #c7d2fe;
    }

    .insight-thumb {
      height: 180px;
      background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.16) 0%, transparent 30%),
        linear-gradient(135deg, #eef4fb 0%, #dbe7f5 100%);
      border-bottom: 1px solid var(--border);
      padding: 1.2rem;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
    }

    .insight-badge {
      display: inline-block;
      padding: 0.38rem 0.72rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.86);
      color: var(--accent);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border: 1px solid rgba(37, 99, 235, 0.12);
    }

    .insight-content {
      padding: 1.45rem 1.45rem 1.3rem;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      flex: 1;
    }

    .insight-content h3 {
      font-size: 1.18rem;
      line-height: 1.35;
      margin: 0;
    }

    .insight-content p {
      color: var(--text-soft);
      margin: 0;
    }

    .insight-meta {
      margin-top: auto;
      padding-top: 0.9rem;
      border-top: 1px solid #edf2f7;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      color: var(--text-soft);
      font-size: 0.92rem;
      font-weight: 600;
    }

    .insight-meta a {
      color: var(--accent);
      font-weight: 700;
    }

    .insights-action {
      display: flex;
      justify-content: center;
      margin-top: 2rem;
    }


    .case-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 1.7rem;
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .case-tag {
      display: inline-block;
      width: fit-content;
      padding: 0.35rem 0.75rem;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent);
      font-size: 0.75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .case-meta {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.8rem;
    }

    .case-meta div {
      background: var(--bg-light);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 0.9rem;
    }

    .case-meta span,
    .case-list strong {
      color: var(--navy);
    }

    .case-meta small {
      display: block;
      color: var(--text-soft);
      margin-bottom: 0.25rem;
      font-weight: 600;
    }

    .case-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .case-list li {
      border-top: 1px solid #edf2f7;
      padding-top: 0.8rem;
      color: var(--text-soft);
    }

    .pro-section .offer-grid,
    .testimonial-grid,
    .toolkit-grid,
    .footer-grid {
      display: grid;
      gap: 1.5rem;
    }

    .offer-grid {
      grid-template-columns: repeat(3, 1fr);
      margin-top: 2.5rem;
    }

    .offer-card,
    .testimonial-card,
    .subscribe-box {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 1.7rem;
      box-shadow: var(--shadow-soft);
    }

    .offer-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: var(--accent-soft);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }

    .offer-card p,
    .testimonial-card p {
      color: var(--text-soft);
      margin-top: 0.8rem;
    }

    .toolkit-wrap {
      margin-top: 3rem;
      background: var(--bg-light);
      border-radius: 28px;
      padding: 2.25rem;
      border: 1px solid var(--border);
    }

    .toolkit-grid {
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
    }

    .toolkit-list {
      list-style: none;
      margin: 1.4rem 0 1.7rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .toolkit-list li {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      color: #334155;
      font-weight: 500;
    }

    .check {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #dcfce7;
      color: #166534;
      font-size: 0.88rem;
      font-weight: 800;
      flex: 0 0 auto;
    }

    .toolkit-preview {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 1.7rem;
      box-shadow: var(--shadow-soft);
    }

    .preview-item {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.9rem 0;
      border-bottom: 1px solid #eef2f7;
      color: var(--text-soft);
    }

    .preview-item:last-child {
      border-bottom: none;
    }

    .preview-item strong {
      color: var(--navy);
    }

    .testimonial-grid {
      grid-template-columns: repeat(3, 1fr);
      margin-top: 2.5rem;
    }

    .testimonial-card em {
      display: block;
      margin-top: 1rem;
      color: var(--navy);
      font-style: normal;
      font-weight: 700;
    }

    .testimonial-note {
      text-align: center;
      margin-top: 1rem;
      color: var(--text-soft);
      font-size: 0.92rem;
    }

    .subscribe {
      padding-top: 30px;
    }

    .subscribe-box {
      max-width: 920px;
      margin: 0 auto;
      padding: 2rem;
      border-radius: 26px;
      background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    }

    .subscribe-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 1rem;
      align-items: center;
      margin-top: 1.5rem;
    }

    .subscribe-form {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
      width: 100%;
    }

    .subscribe-form input {
      flex: 1 1 280px;
      min-height: 52px;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 0 1rem;
      font: inherit;
      color: var(--navy);
      background: var(--white);
    }

    .contact-section {
      padding-top: 30px;
      padding-bottom: 92px;
    }

    .contact-box {
      max-width: 980px;
      margin: 0 auto;
      background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 2.2rem;
      box-shadow: var(--shadow-soft);
    }

    .contact-copy {
      max-width: 760px;
      margin-bottom: 1.75rem;
    }

    .contact-copy p {
      color: var(--text-soft);
    }

    .contact-form {
      width: 100%;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem 1.1rem;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      min-width: 0;
    }

    .field-full {
      grid-column: 1 / -1;
    }

    .field label {
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--navy);
    }

    .field input,
    .field textarea {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 0.95rem 1rem;
      font: inherit;
      color: var(--navy);
      background: var(--white);
      transition: var(--transition);
    }

    .field textarea {
      resize: vertical;
      min-height: 140px;
    }

    .field input:focus,
    .field textarea:focus {
      outline: none;
      border-color: #93c5fd;
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
    }

    .contact-actions {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
      margin-top: 1.4rem;
    }

    footer {
      padding: 38px 0 50px;
      border-top: 1px solid var(--border);
      background: var(--white);
    }

    .footer-grid {
      grid-template-columns: 1fr auto;
      align-items: center;
    }

    .footer-links {
      display: flex;
      gap: 1.25rem;
      flex-wrap: wrap;
      color: var(--text-soft);
      font-weight: 600;
    }

    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1080px) {

      .hero-grid,
      .meet-grid,
      .toolkit-grid {
        grid-template-columns: 1fr;
      }

      .expertise-grid,
      .case-grid,
      .offer-grid,
      .testimonial-grid,
      .insights-grid,
      .stats-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero-image,
      .meet-photo {
        min-height: 360px;
      }
    }

    @media (max-width: 760px) {
      section {
        padding: 74px 0;
      }

      .container {
        padding: 0 1.2rem;
      }

      header {
        padding: 10px 0;
      }

      .nav-wrapper {
        flex-wrap: wrap;
        row-gap: 0.8rem;
      }

      .nav-links {
        display: none;
      }

      .nav-actions {
        width: 100%;
        justify-content: flex-end;
        gap: 0.55rem;
      }

      .nav-actions .btn,
      .nav-btn {
        width: auto;
        padding: 0.62rem 0.9rem;
        font-size: 0.86rem;
      }

      .stats-grid,
      .expertise-grid,
      .case-grid,
      .offer-grid,
      .testimonial-grid,
      .insights-grid,
      .mini-points,
      .case-meta,
      .subscribe-row,
      .footer-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .hero-actions,
      .subscribe-form,
      .contact-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .field-full {
        grid-column: auto;
      }

      .strengths-row {
        justify-content: stretch;
      }

      .strength-pill {
        width: 100%;
        justify-content: flex-start;
      }

      .btn {
        width: 100%;
      }

      .nav-actions .btn {
        width: auto;
      }

      .profile-card {
        max-width: 100%;
      }
    }


    .site-footer {
  padding: 60px 0 28px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand .logo {
  margin-bottom: 0.7rem;
}

.footer-brand p {
  max-width: 320px;
  color: var(--text-soft);
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.95rem;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
}

.footer-list a {
  color: var(--text-soft);
  font-weight: 500;
  transition: var(--transition);
}

.footer-list a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.92rem;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --navy: #e5edf8;
    --navy-light: #cbd5e1;
    --accent: #60a5fa;
    --accent-soft: rgba(96, 165, 250, 0.14);
    --text-main: #cbd5e1;
    --text-soft: #94a3b8;
    --text-heading: #f8fafc;
    --bg-light: #0f172a;
    --white: #111827;
    --border: #243244;
    --shadow: 0 24px 50px -28px rgba(0, 0, 0, 0.55);
    --shadow-soft: 0 16px 34px -24px rgba(0, 0, 0, 0.45);
  }

  html {
    color-scheme: dark;
  }

  body {
    background: #0b1220;
    color: var(--text-main);
  }

  header {
    background: rgba(11, 18, 32, 0.88);
    border-bottom: 1px solid rgba(36, 50, 68, 0.92);
    box-shadow: 0 10px 30px -24px rgba(0, 0, 0, 0.6);
  }

  .logo {
    color: var(--text-heading);
  }

  .logo span {
    color: var(--text-soft);
  }

  .nav-links a {
    color: var(--text-main);
  }

  .nav-links a:hover {
    color: var(--accent);
  }

  .btn-outline {
    background: #0f172a;
    color: var(--text-heading);
    border-color: var(--border);
  }

  .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  .btn-primary {
    background: #2563eb;
    color: #eff6ff;
    box-shadow: 0 16px 28px -18px rgba(0, 0, 0, 0.55);
  }

  .btn-primary:hover {
    background: #3b82f6;
  }

  .hero {
    background:
      radial-gradient(circle at top right, rgba(96, 165, 250, 0.12) 0%, transparent 24%),
      radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.03) 0%, transparent 18%),
      linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
  }

  .hero-image {
    background: transparent;
  }

  .skills-section,
  .employer-section,
  .toolkit-wrap,
  .subscribe-box,
  .offer-card,
  .testimonial-card,
  .stat-card,
  .expertise-card,
  .case-card,
  .toolkit-preview,
  .insight-card,
  .contact-box {
    background: #111827;
    border-color: var(--border);
    box-shadow: var(--shadow-soft);
  }

  .meet-photo {
    background: linear-gradient(145deg, #111827, #0f172a);
    border-color: var(--border);
  }

  .meet-photo .photo-placeholder {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-soft);
    border-color: #334155;
  }

  .eyebrow,
  .case-tag,
  .insight-badge {
    background: rgba(96, 165, 250, 0.14);
    color: #93c5fd;
    border-color: rgba(96, 165, 250, 0.2);
  }

  .strength-pill {
    background: #111827;
    border-color: #243244;
    color: var(--text-heading);
    box-shadow: none;
  }

  .strength-pill:hover {
    border-color: #3b82f6;
    box-shadow: 0 12px 28px -22px rgba(59, 130, 246, 0.45);
  }

  .strength-dot {
    background: #60a5fa;
  }

  h1,
  h2,
  h3,
  h4,
  .stat-card h3,
  .expertise-card h3,
  .case-card h3,
  .offer-card h3,
  .testimonial-card h3,
  .toolkit-preview h3,
  .insight-content h3 {
    color: var(--text-heading);
  }

  p,
  .stat-card p,
  .expertise-card p,
  .case-list li,
  .offer-card p,
  .testimonial-card p,
  .preview-item,
  .insight-content p,
  .section-head p,
  .meet-copy p,
  .hero-copy p {
    color: var(--text-main);
  }

  .case-meta div,
  .mini-point {
    background: #0f172a;
    border-color: var(--border);
    color: var(--text-heading);
  }

  .case-meta small,
  .preview-item span,
  .testimonial-note,
  .insight-meta,
  .footer-links,
  footer p,
  .profile-card p {
    color: var(--text-soft);
  }

  .case-list li,
  .preview-item,
  .insight-meta {
    border-color: #1e293b;
  }

  .subscribe-box,
  .contact-box {
    background: linear-gradient(145deg, #111827 0%, #0f172a 100%);
  }

  .subscribe-form input,
  .field input,
  .field textarea {
    background: #0b1220;
    border-color: #334155;
    color: #f8fafc;
  }

  .subscribe-form input::placeholder,
  .field input::placeholder,
  .field textarea::placeholder {
    color: #94a3b8;
  }

  .subscribe-form input:focus,
  .field input:focus,
  .field textarea:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.14);
  }

  .field label {
    color: var(--text-heading);
  }

  .offer-icon {
    background: rgba(96, 165, 250, 0.14);
    color: #93c5fd;
  }

  .check {
    background: rgba(34, 197, 94, 0.16);
    color: #86efac;
  }

  .insight-thumb {
    background:
      radial-gradient(circle at top right, rgba(96, 165, 250, 0.18) 0%, transparent 30%),
      linear-gradient(135deg, #111827 0%, #172033 100%);
    border-bottom-color: var(--border);
  }

  footer {
    background: #0b1220;
    border-top-color: var(--border);
  }

  .footer-links a {
    color: var(--text-soft);
  }

  .footer-links a:hover,
  .insight-meta a,
  .section-link {
    color: var(--accent);
  }
}

.simple-footer {
  padding: 3rem 0 1.5rem;
}

.simple-footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color, #e5e7eb);
}

.simple-footer-brand {
  max-width: 360px;
}

.simple-footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main, #0f172a);
}

.simple-footer-logo span {
  color: var(--text-soft, #526887);
  font-weight: 500;
}

.simple-footer-brand p {
  margin: 0;
  color: var(--text-soft, #526887);
  line-height: 1.6;
  font-size: 1rem;
}

.simple-footer-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 0.25rem;
  flex-wrap: wrap;
}

.simple-footer-nav a {
  text-decoration: none;
  color: var(--text-main, #0f172a);
  font-size: 1rem;
  font-weight: 700;
}

.simple-footer-nav a:hover {
  color: var(--accent, #2563eb);
}

.simple-footer-bottom {
  padding-top: 1.25rem;
}

.simple-footer-bottom p {
  margin: 0;
  color: var(--text-soft, #526887);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .simple-footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .simple-footer-nav {
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .simple-footer {
    padding-top: 2.25rem;
  }

  .simple-footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }
}