    /* ── Reset & base ───────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green:        #4DA167;
      --green-dark:   #3A8252;
      --green-light:  #E8F5EC;
      --green-faint:  #F4FAF6;
      --bg:           #FAFBFC;
      --surface:      #FFFFFF;
      --text:         #2D3236;
      --text-muted:   #6B7280;
      --text-faint:   #9CA3AF;
      --border:       #E5E7EB;
      --radius:       12px;
      --max-w:        1120px;
      --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --footer-bg:    #2F2E41;
      --text-caution:  #FF9F00;
    }

    /* ── Fonts (self-hosted) ─────────────────────────────────── */

    /* ══ Inter — only the weights actually used on this page ══ */
    @font-face { font-family: 'Inter'; src: url("../fonts/inter/Inter_18pt-Regular.ttf") format('truetype'); font-weight: 400; }
    @font-face { font-family: 'Inter'; src: url("../fonts/inter/Inter_18pt-Italic.ttf") format('truetype'); font-weight: 400; font-style: italic; }
    @font-face { font-family: 'Inter'; src: url("../fonts/inter/Inter_18pt-Medium.ttf") format('truetype'); font-weight: 500; }
    @font-face { font-family: 'Inter'; src: url("../fonts/inter/Inter_18pt-MediumItalic.ttf") format('truetype'); font-weight: 500; font-style: italic; }

    /* SemiBold for buttons, tags, section labels, pillar headings */
    @font-face { font-family: 'Inter'; src: url("../fonts/inter/Inter_18pt-SemiBold.ttf") format('truetype'); font-weight: 600; }
    @font-face { font-family: 'Inter'; src: url("../fonts/inter/Inter_18pt-SemiBoldItalic.ttf") format('truetype'); font-weight: 600; font-style: italic; }

    /* Bold for logo & nav items */
    @font-face { font-family: 'Inter'; src: url("../fonts/inter/Inter_18pt-Bold.ttf") format('truetype'); font-weight: 700; }

    /* Black for the human-written badge (the only site-wide 900) */
    @font-face { font-family: 'Inter'; src: url("../fonts/inter/Inter_18pt-Black.ttf") format('truetype'); font-weight: 900; }

    /* ══ Playfair Display (bold for headings) ══ */
    @font-face { font-family: 'Playfair Display'; src: url("../fonts/playfair-display/PlayfairDisplay-Regular.ttf") format('truetype'); font-weight: 400; }
    @font-face { font-family: 'Playfair Display'; src: url("../fonts/playfair-display/PlayfairDisplay-SemiBold.ttf") format('truetype'); font-weight: 600; }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; display: block; }
    a { color: var(--green); text-decoration: none; transition: color var(--transition); }
    a:hover { color: var(--green-dark); }

    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

    /* ── Header (reusable for blog) ─────────────────────────── */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 1.15rem;
      letter-spacing: 0.02em;
      color: var(--green);
      transition: filter var(--transition);
    }

    .logo:hover {
      filter: brightness(0.75);
    }
    .logo svg { flex-shrink: 0; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .mobile-header-link {
      display: none;
    }

    .nav-links a {
      color: var(--text-muted);
      font-size: 0.9rem;
      font-weight: 500;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--green);

      border-radius: 1px;
      transition: width var(--transition);
    }

    .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after { width: 100%; }

    /* Active nav item - underline stays visible */
    .nav-links a.active {
      color: var(--text);
    }
    .nav-links a.active::after {
      width: 100%;
    }

    .nav-cta {
      display: inline-block;
      position: relative;
      background-color: transparent;
      color: #fff !important;
      padding: 8px 20px;
      border-radius: 8px;
      font-weight: 600;
    }

    .nav-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--green);
      border-radius: inherit;
      transition: filter var(--transition);
      z-index: -1;
    }

    .nav-cta:hover::before {
      filter: brightness(0.75);
    }

    .nav-cta::after { display: none !important; }

    /* Header-right – flex so cms-nav, toggle, and nav-links align */
    .header-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .nav-links-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
      align-items: flex-end;
    }

    .nav-links--staff {
      margin: 0;
      justify-content: flex-end;
    }

    .nav-links--staff .nav-cta {
      padding: 4px 12px;
      font-size: 0.85rem;
    }

    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      position: relative;
    }

    .mobile-toggle span {
      display: block;
      width: 22px;
      height: 2.5px;
      background: var(--text);
      border-radius: 2px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      transition: all var(--transition);
    }

    /* hamburger positions - top, middle, bottom */
    .mobile-toggle span:nth-child(1) {
      top: 10px;
    }
    .mobile-toggle span:nth-child(2) {
      top: 17px;
    }
    .mobile-toggle span:nth-child(3) {
      top: 24px;
    }

    /* Morph to X when sidebar is open */
    body.sidebar-open .mobile-toggle span:nth-child(1) {
      transform: translateX(-50%) translateY(7px) rotate(45deg);
    }
    body.sidebar-open .mobile-toggle span:nth-child(2) {
      opacity: 0;
      transform: translateX(-50%) scale(0.5);
    }
    body.sidebar-open .mobile-toggle span:nth-child(3) {
      transform: translateX(-50%) translateY(-7px) rotate(-45deg);
    }

    /* ── Hero ────────────────────────────────────────────────── */
    .hero {
      position: relative;
      overflow: hidden;
      min-height: 88vh;
      display: flex;
      align-items: center;
      background:
        radial-gradient(ellipse at 70% 30%, rgba(77,161,103,0.08) 0%, transparent 60%),
        var(--bg);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      padding: 80px 24px 100px;
    }

    .hero-content { display: flex; flex-direction: column; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green-light);
      color: var(--green-dark);
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 24px;
      letter-spacing: 0.02em;
      align-self: flex-start;
    }

    .hero-badge .dot {
      width: 8px;
      height: 8px;
      background: var(--green);
      border-radius: 50%;
      animation: pulse-dot 2s ease-in-out infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.85); }
    }

    .hero h1 {
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 600;
      font-size: clamp(2.2rem, 4.5vw, 3.4rem);
      line-height: 1.15;
      color: var(--text);
      margin-bottom: 20px;
      max-width: 480px;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--green);
    }

    .hero-text {
      font-size: 1.1rem;
      color: var(--text-muted);
      max-width: 480px;
      margin-bottom: 16px;
    }

    .hero-text-hero-tagline {
      font-size: 0.95rem;
      color: var(--text-faint);
      max-width: 480px;
      margin-bottom: 36px;
      font-style: italic;
    }

    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: all var(--transition);
    }

    .btn-primary {
      background: var(--green);
      color: #fff;
    }

    .btn-primary:hover {
      background: var(--green-dark);
      box-shadow: 0 8px 24px rgba(77,161,103,0.3);
      color: #fff;
    }

    .btn-outline {
      background: transparent;
      color: var(--text);
      border: 1.5px solid var(--border);
    }

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

    .hero-image {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .hero-image img {
      width: 320px;
      /* height: 320px; */
      /* object-fit: cover; */
      /* border-radius: 50%; */
      /* box-shadow: 0 20px 60px rgba(0,0,0,0.08); */
      position: relative;
      z-index: 2;
    }

    .hero-image-blob {
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(77,161,103,0.12) 0%, transparent 70%);
      animation: blob-float 8s ease-in-out infinite;
      z-index: 1;
    }

    @keyframes blob-float {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(12px, -18px) scale(1.03); }
      66% { transform: translate(-10px, 12px) scale(0.97); }
    }

    /* ── Logos ticker ───────────────────────────────────────── */
    .logos-section {
      padding: 48px 0 64px;
      text-align: center;
    }

    .logos-label {
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-faint);
      margin-bottom: 28px;
    }

    .logos-track-wrapper {
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
    }

    .logos-track {
      display: flex;
      width: max-content;
      animation: ticker 30s linear infinite;
    }

    .logos-track:hover { animation-play-state: paused; }

    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .logo-item {
      flex-shrink: 0;
      padding: 0 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 52px;
      opacity: 0.5;
      transition: opacity var(--transition);
    }

    @media (max-width: 640px) {
      .logo-item {
        padding: 0 14px;
      }
    }

    .logo-item:hover { opacity: 0.85; }

    .logo-item svg,
    .logo-item img {
      height: auto;
      max-height: 50px;
      max-width: 180px;
      width: auto;
    }

    /* ── Pillars ─────────────────────────────────────────────────────── */
    .pillars {
      padding: 100px 0;
      background: var(--surface);
    }

    .section-label {
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--green);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 600;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .section-subtitle {
      color: var(--text-muted);
      max-width: 560px;
      font-size: 1.05rem;
      margin-bottom: 56px;
    }

    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .pillar-card {
      padding: 40px 32px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      transition: all var(--transition);
    }

    .pillar-card:hover {
      border-color: var(--green);
      box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    }

    .pillar-icon {
      width: 48px;
      height: 48px;
      background: var(--green-light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--green);
      font-size: 1.4rem;
    }

    .pillar-card h3 {
      font-size: 1.15rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .pillar-card p {
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.65;
    }    /* Pillar SVGs - same height, proportional width */
    .pillar-gdpr-svg,
    .pillar-human-svg,
    .pillar-llms-svg {
      max-width: 100%;
      height: 13rem;
      display: block;
      margin: 10px auto 16px;
    }

    @media (max-width: 900px) {
      .pillar-gdpr-svg,
      .pillar-human-svg,
      .pillar-books-svg {
        height: 15rem;
      }
    }

    @media (max-width: 640px) {
      .pillar-gdpr-svg,
      .pillar-human-svg,
      .pillar-books-svg {
        height: 9rem;
      }
    }

    /* ── Projects ───────────────────────────────────────── */
    .projects-section {
      padding: 100px 0;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .project-card {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--surface);
      transition: all var(--transition);
      display: flex;
      flex-direction: column;
      color: inherit;
      text-decoration: none;
    }



    .project-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(77,161,103,0.08);
      border-color: var(--green);
    }

    .project-card-img {
      position: relative;
      height: 260px;
      aspect-ratio: 16 / 9;
      overflow: hidden;
    }

    .project-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .project-card-img--youtube img {
      min-height: 100%;
      transform: scale(1.05);
    }

    /* Fog overlay & play icon - only for the YouTube card */
    .project-card-img--youtube::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.35);
      z-index: 2;
      transition: background var(--transition);
    }

    .project-card:hover .project-card-img--youtube::before {
      background: rgba(255, 255, 255, 0.15);
    }

    .project-card-img--youtube::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 3;
      width: 56px;
      height: 56px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' fill='none' viewBox='0 0 56 56'%3E%3Ccircle cx='28' cy='28' r='28' fill='rgba(255,255,255,0.9)'/%3E%3Cpath d='M22.4 19.6v16.8l14-8.4z' fill='%23222'/%3E%3C/svg%3E");
      background-size: 56px 56px;
      pointer-events: none;
      transition: transform var(--transition);
    }

    .project-card:hover .project-card-img--youtube::after {
      transform: translate(-50%, -50%) scale(1.1);
    }

    .project-card-body {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .project-card-body h3 {
      font-size: 1.05rem;
      font-weight: 600;
      line-height: 1.4;
      margin-bottom: 12px;
    }

    .project-card-body p {
      color: var(--text-muted);
      font-size: 0.88rem;
      line-height: 1.6;
    }

    .project-card-body p + p {
      margin-top: 10px;
    }

    .card-link-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--green);
      margin-top: auto;
      padding-top: 12px;
    }

    .card-link-label i {
      font-size: 0.85em;
    }

    .tag {
      display: inline-block;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 0.72rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 4px;
      margin: 2px;
    }

    /* ── Testimonials Carousel ──────────────────────── */
    .testimonials {
      padding: 100px 0;
      background: var(--green-faint);
      overflow: hidden;
    }

    .testimonials-header {
      margin-bottom: 56px;
      text-align: center;
    }

    .testimonials-header .section-label,
    .testimonials-header .section-title,
    .testimonials-header .section-subtitle {
      margin-left: auto;
      margin-right: auto;
    }

    .carousel-viewport {
      overflow: hidden;
      border-radius: 20px;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .carousel-slide {
      min-width: 100%;
      padding: 0 8px;
    }

    .testimonial-card {
      background: var(--surface);
      padding: 48px 44px;
      border-radius: 20px;
      border: 1px solid var(--border);
      position: relative;
      transition: all var(--transition);
    }

    .testimonial-card:hover {
      border-color: var(--green);
      box-shadow: 0 12px 32px rgba(77,161,103,0.08);
    }

    /* Quote mark decoration */
    .testimonial-card::before {
      content: '\201C';
      position: absolute;
      top: 20px;
      left: 32px;
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 4rem;
      line-height: 1;
      color: var(--green);
      opacity: 0.15;
    }

    .testimonial-card blockquote {
      font-size: 1.05rem;
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 32px;
      font-style: italic;
      padding-left: 28px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testimonial-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--green-light);
    }

    .testimonial-name {
      font-size: 0.95rem;
      font-weight: 600;
    }

    .testimonial-role {
      font-size: 0.82rem;
      color: var(--text-faint);
      margin-top: 2px;
    }

    /* Carousel Navigation Arrows */
    .carousel-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      background: var(--surface);
      color: var(--text-muted);
      font-size: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    }

    .carousel-btn:hover {
      background: var(--green);
      color: #fff;
      border-color: var(--green);
      box-shadow: 0 2px 8px rgba(77,161,103,0.3);
    }

    .carousel-btn:active {
      transform: scale(0.95);
    }

    /* Timer Ring (around right arrow) */
    .right-arrow-wrap {
      position: relative;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .timer-ring-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      transform: rotate(-90deg);
      pointer-events: none;
    }

    .timer-track {
      fill: none;
      stroke: var(--border);
      stroke-width: 2;
    }

    .timer-progress {
      fill: none;
      stroke: var(--green);
      stroke-width: 2;
      stroke-linecap: round;
      transition: stroke-dashoffset 0.1s linear;
    }

    /* Nav row with dots + arrows - dots centered between arrows */
    .carousel-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      margin-top: 36px;
    }

    /* Carousel wrapper to anchor */
    .carousel-wrapper {
      position: relative;
    }

    /* Dot indicators */
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: none;
      background: var(--border);
      cursor: pointer;
      transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      padding: 0;
    }

    .carousel-dot.active {
      background: var(--green);
      width: 32px;
      border-radius: 5px;
      box-shadow: 0 2px 8px rgba(77,161,103,0.3);
    }

    .carousel-dot:hover:not(.active) {
      background: var(--text-faint);
    }
    .cta-svg-bg {
      background: var(--surface);
      border-radius: 16px;
      padding: 40px 56px 48px;
      box-shadow:
        0 8px 32px rgba(0,0,0,0.10),
        0 2px 8px rgba(0,0,0,0.04);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      width: fit-content;
      cursor: pointer;
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .cta-svg-bg:hover {
      transform: scale(1.03);
    }

    .footer-cta-svg a {
      display: block;
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .footer-cta-svg:hover a {
      transform: scale(1.02);
    }

    .cta-svg-bg img {
      max-width: 600px;
      height: auto;
      width: 100%;
      display: block;
    }

    /* ── Footer ────────────────────────────────────── */
    .site-footer {
      background: var(--footer-bg);
      color: rgba(255,255,255,0.6);
      padding: 0;
    }

    .footer-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 32px;
      padding: 72px 0 56px;
    }

    .footer-cta-text h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 600;
      font-size: 1.8rem;
      color: #fff;
      margin-bottom: 12px;
    }

    .footer-cta-text p {
      color: rgba(255,255,255,0.5);
      font-size: 1rem;
      max-width: 520px;
      margin: 0 0 4px;
    }

    .footer-cta-svg {
      display: flex;
      justify-content: center;
    }

    .footer-creative {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-top: 32px;
      padding: 16px 0;
      gap: 16px;
    }

    .footer-logo {
      height: 56px;
      width: auto;
      margin: 0;
    }

    .footer-creative .name {
      color: rgba(255,255,255,0.7);
      font-weight: 600;
      font-size: 1rem;
    }

    .footer-creative .tagline {
      color: rgba(255,255,255,0.4);
      font-size: 0.95rem;
      font-style: italic;
      margin: 0;
    }

    /* Centering wrapper for blog footer note (mirrors footer-creative align) */
    .footer-note-wrapper {
      display: flex;
      justify-content: center;
      text-align: center;
      margin-top: 24px;
    }

    /* Compact version of footer-creative for use inside blog Connect column */
    .connect-brand {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
      margin-top: 24px;
    }

    .connect-photo {
      width: 56px;
      height: auto;
      border-radius: 50%;
      display: block;
      object-fit: cover;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

    .connect-brand .name {
      color: rgba(255,255,255,0.7);
      font-weight: 600;
      font-size: 1rem;
      margin: 0;
    }

    .footer-social {
      display: flex;
      justify-content: center;
      gap: 18px;
      margin: 8px 0 32px;
    }

    .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.15s ease-out;
      color: rgba(255,255,255,0.5) !important;
      font-size: 1.8rem;
      transform-origin: center center;
    }

    .social-icon:hover {
      color: var(--green) !important;
      transform: scale(1.1);
    }


    .footer-note {
      font-size: 0.85rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.35);
    }

    .footer-note .bold {
      color: rgba(255,255,255,0.5);
      font-weight: 600;
    }

    .footer-bottom {
      padding: 8px 0 12px;
      text-align: center;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.25);
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: center;
    }

    .footer-bottom .hedgehog-link {
      font-size: 1.6rem;
      transition: transform 0.3s ease;
    }

    .footer-bottom .hedgehog-link:hover {
      transform: scale(1.3);
    }

    /* ── Human-written banner ─────────────────────────────── */

    .human-written {
      position: fixed;
      bottom: 24px;
      right: 24px;
      color: var(--text-caution);
      font-size: 0.85rem;
      font-weight: 900;
      border: 3px solid var(--text-caution);
      border-radius: 8px;
      padding: 0.2rem 1rem;
      transform: rotate(-5deg);
      z-index: 999;
    }

    .human-written.hidden {
      display: none;
    }

    @media (max-width: 640px) {
      .human-written {
        font-size: 0.7rem;
        bottom: 16px;
        right: 16px;
      }
    }

    /* ── Mobile Sidebar Overlay ──────────────────────── */
    .sidebar-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.45);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 200;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition);
    }

    .sidebar-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-sidebar {
      position: fixed;
      top: 0;
      right: 0; /* ← open from the right */
      width: 300px;
      max-width: 85vw;
      height: 100vh;
      height: 100dvh;
      background: var(--surface);
      z-index: 300;
      transform: translateX(100%); /* ← starts hidden off-screen right */
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      overflow-y: auto;
      overscroll-behavior: contain;
      box-shadow: none;
    }

    .mobile-sidebar.open {
      transform: translateX(0);
      box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12); /* shadow on left edge */
    }

    /* Sidebar header - mimics the site-header aesthetic */
    .sidebar-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid var(--border);
      min-height: 56px;
      flex-shrink: 0;
    }

    .sidebar-header-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--green);
    }

    .sidebar-header-logo svg { flex-shrink: 0; }

    .sidebar-close {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      background: transparent;
      cursor: pointer;
      color: var(--text-muted);
      font-size: 1.2rem;
      border-radius: 8px;
      transition: all 0.2s ease;
    }

    .sidebar-close:hover {
      background: var(--green-light);
      color: var(--green);
    }

    /* Sidebar nav links - spacious & professional */
    .mobile-nav-list {
      list-style: none;
      padding: 12px 16px;
      flex: 1;
    }

    .mobile-nav-list li {
      margin-bottom: 4px;
    }

    .mobile-nav-list a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      border-radius: 10px;
      color: var(--text);
      font-size: 1rem;
      font-weight: 500;
      transition: all 0.2s ease;
    }

    .mobile-nav-list a:hover,
    .mobile-nav-list a.active {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .mobile-nav-list a.active {
      background: rgba(77, 161, 103, 0.12);
      font-weight: 600;
    }

    /* Nav icon (Font Awesome) */
    .mobile-nav-icon {
      width: 24px;
      text-align: center;
      font-size: 1rem;
      opacity: 0.7;
    }

    /* Sidebar footer CTA card */
    .sidebar-footer-cta {
      padding: 20px 16px;
      border-top: 1px solid var(--border);
      flex-shrink: 0;
    }

    .sidebar-cta-card {
      display: flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
      color: #fff;
      padding: 16px 20px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 0.92rem;
      transition: filter var(--transition);
    }

    .sidebar-cta-card:hover {
      filter: brightness(1.1);
      color: #fff;
    }

    .sidebar-cta-icon {
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.2);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .sidebar-cta-text span {
      display: block;
      font-size: 0.75rem;
      opacity: 0.8;
      font-weight: 400;
    }

    /* ── Responsive ────────────────────────────────────────── */
    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 60px 8px 80px;
      }

      .hero-text { margin-left: auto; margin-right: auto; }
      .hero-actions { justify-content: center; }
      .hero-text-hero-tagline { display: none; }
      .hero-image img { width: 220px; height: 220px; }
      .hero-image-blob { width: 280px; height: 280px; }

      .pillars-grid,
      .testimonials-grid,
      .projects-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
      }

      .blog-header-row { flex-direction: column; align-items: flex-start; gap: 16px; }
      .blog-header-row .btn-outline { align-self: flex-start; }
    }

    @media (max-width: 640px) {
      .header-right {
        display: flex;
        align-items: center;
        gap: 14px;
      }

      body.sidebar-open {
        overflow: hidden;
      }

      .nav-links { display: none; }
      .mobile-toggle { display: block; }
      .container { padding: 0 16px; }

      /* Mobile header link outside sidebar */
      .mobile-header-link {
        display: inline-flex;
        align-items: center;
      }

      .mobile-header-link a {
        color: var(--text-muted);
        font-size: 0.9rem;
        font-weight: 500;
        position: relative;
        transition: color var(--transition);
      }

      .mobile-header-link a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--green);
        border-radius: 1px;
        transition: width var(--transition);
      }

      .mobile-header-link a:hover {
        color: var(--text);
      }

      .mobile-header-link a:hover::after {
        width: 100%;
      }

      .hero-text { font-size: 0.95rem; }
      .hero-text-hero-tagline { font-size: 0.88rem; }
    }


