:root {
    --purple: #5B6AAF;
    --purple-dark: #4A5793;
    --purple-deeper: #3D4878;
    --purple-light: #E8EAF4;
    --purple-ultra-light: #F4F5FA;
    --orange: #E8A838;
    --orange-warm: #F0B94D;
    --orange-light: #FEF6E6;
    --dark: #1E1E2E;
    --text: #2D2D3D;
    --text-secondary: #6B6B7D;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --cream: #FDF9F3;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    /* background-size: cover; */
    /* background-attachment: fixed; */
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* === CENTRAL COLUMN === */
  .page-column {
    max-width: 1060px;
    margin: 0 auto;
    background: var(--white);
    box-shadow: 0 0 80px rgba(0,0,0,0.25), 0 0 30px rgba(91,106,175,0.15);
    position: relative;
  }

  .container { max-width: 100%; margin: 0 auto; padding: 0 3rem; }
  .container--narrow { max-width: 780px; margin: 0 auto; padding: 0 3rem; }

  /* === TOP BAR === */
  .top-bar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1060px;
    z-index: 100;
    background: rgba(30,30,46,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: top 0.3s;
  }

  .top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }

  .top-bar-logo img { width: auto; height: 28px; display: block; }

  .top-bar-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.25s;
  }
  .top-bar-back:hover { color: var(--orange-warm); }
  .top-bar-back svg { width: 14px; height: 14px; }

  .top-bar-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .top-bar-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    text-decoration: none;
    transition: transform 0.25s;
  }
  .top-bar-icon-link:hover { transform: translateY(-2px); }
  .top-bar-icon-link img { width: 28px; height: 28px; }
  .top-bar-icon-link span {
    font-size: 0.55rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.25s;
  }
  .top-bar-icon-link:hover span { color: var(--orange-warm); }
  .top-bar-partner-logo {
    margin-left: 0.25rem;
    transition: transform 0.25s;
  }
  .top-bar-partner-logo:hover { transform: translateY(-2px); }
  .top-bar-partner-logo img { width: auto;
    height: 32px;
    border-radius: 4px;
    display: block;
  }
  @media (max-width: 600px) {
    .top-bar-icons { gap: 0.5rem; }
    .top-bar-icon-link img { width: 22px; height: 22px; }
    .top-bar-icon-link span { display: none; }
    .top-bar-partner-logo img { width: auto; height: 24px; }
    .top-bar-partner-logo { margin-left: 0.15rem; }
  }

  .top-bar-cta { display: inline-flex; align-items: center; padding: 0.5rem 1.1rem; background: var(--orange); color: var(--dark); border-radius: 100px; font-size: 0.8rem; font-weight: 700; text-decoration: none; margin-left: 0.5rem; white-space: nowrap; transition: background 0.25s, transform 0.25s; }
  .top-bar-cta:hover { background: var(--orange-warm); transform: translateY(-2px); }
  @media (max-width: 600px) { .top-bar { padding: 0.75rem 0.9rem; } .top-bar-left { gap: 0.75rem; } .top-bar-cta { padding: 0.4rem 0.8rem; font-size: 0.7rem; margin-left: 0.25rem; } .top-bar-partner-logo { display: none; } .top-bar-logo img { height: 20px; } .top-bar-icons { gap: 0.4rem; } a.top-bar-icon-link[href="demo.html"] { display: none; } .top-bar-back { font-size: 0; gap: 0.2rem; } .top-bar-cta { padding: 0.35rem 0.7rem; font-size: 0.65rem; } }

  /* === HERO === */
  .hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(165deg, var(--dark) 0%, var(--purple-deeper) 50%, var(--purple) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 60px;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,168,56,0.12) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91,106,175,0.2) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
  }

  @keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2.5rem 2rem 2rem;
    animation: fadeInUp 1s ease-out;
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-module-num {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(5rem, 12vw, 8rem);
    line-height: 1;
    color: rgba(255,255,255,0.06);
    margin-bottom: -1.5rem;
    animation: fadeInUp 1s ease-out 0.1s both;
  }

  .hero-badge {
    display: inline-block;
    padding: 0.4rem 1.25rem;
    background: rgba(232,168,56,0.15);
    border: 1px solid rgba(232,168,56,0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--orange-warm);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
  }

  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.6rem;
    animation: fadeInUp 1s ease-out 0.3s both;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 1.25rem;
    animation: fadeInUp 1s ease-out 0.5s both;
  }

  .hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    margin-top: 0.5rem;
    animation: fadeInUp 1s ease-out 0.7s both;
    transition: color 0.3s;
  }
  .hero-scroll:hover { color: var(--orange-warm); }
  .hero-scroll svg { animation: bounce 2s infinite; }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
  }

  /* === ROLE TAGS === */
  .role-tag {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  /* Hero variant (dark bg) */
  .hero .role-admin { background: rgba(91,106,175,0.2); color: #A8B4E0; }
  .hero .role-locatie { background: rgba(232,168,56,0.2); color: #F0C060; }
  .hero .role-woon { background: rgba(72,175,120,0.2); color: #6DD4A0; }
  .hero .role-beveil { background: rgba(200,60,60,0.15); color: #E08080; }
  .hero .role-hoofd { background: rgba(160,60,60,0.18); color: #D07070; }
  .hero .role-facil { background: rgba(100,140,200,0.2); color: #8ABAE0; }

  /* Body variant (light bg) */
  .role-admin { background: rgba(91,106,175,0.12); color: var(--purple); }
  .role-locatie { background: rgba(232,168,56,0.15); color: #C48A20; }
  .role-woon { background: rgba(72,175,120,0.12); color: #2D8A56; }
  .role-beveil { background: rgba(200,60,60,0.1); color: #B04040; }
  .role-hoofd { background: rgba(160,60,60,0.12); color: #8B3030; }
  .role-facil { background: rgba(100,140,200,0.12); color: #4A6B9A; }

  /* === QUOTE STRIP === */
  .quote-strip {
    background: var(--orange);
    padding: 2rem;
    text-align: center;
  }

  .quote-strip blockquote {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-style: italic;
    color: var(--dark);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.5;
  }

  /* === TEXTURE OVERLAY === */
  .has-texture { position: relative; }
  .has-texture::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../texture-relief.jpg') repeat;
    background-size: 300px;
    opacity: 0.15;
    mix-blend-mode: multiply;
    pointer-events: none;
  }
  .has-texture-light::after {
    opacity: 0.05;
    mix-blend-mode: overlay;
  }

  /* === MAIN CONTENT === */
  .content-section {
    padding: 5rem 0;
  }

  .content-body {
    position: relative;
    z-index: 1;
  }

  .content-body h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .content-body h2 .accent { color: var(--purple); }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--purple);
    margin-bottom: 1rem;
  }

  .section-label .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
  }

  .content-body p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 1.25rem;
  }

  .content-body > p:first-of-type::first-letter {
    font-family: 'DM Serif Display', serif;
    font-size: 3.2rem;
    float: left;
    line-height: 1;
    margin-right: 0.12em;
    margin-top: 0.05em;
    color: var(--purple);
  }

  /* === TWO COLUMN === */
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  @media (max-width: 768px) {
    .two-col { grid-template-columns: 1fr; gap: 1.25rem; }
  }
  /* === THREE COLUMN === */
  .three-col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  @media (max-width: 768px) {
    .three-col { grid-template-columns: 1fr; gap: 1.25rem; }
  }


  .col-card {
    background: var(--white);
    border: 1px solid var(--purple-light);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .col-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(91,106,175,0.1);
  }

  .col-card-num {
    position: absolute;
    top: -12px;
    left: 1.5rem;
    width: 28px;
    height: 28px;
    background: var(--purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
  }

  .col-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
  }

  .col-card p {
    font-size: 0.95rem !important;
    line-height: 1.75 !important;
    color: var(--text-secondary) !important;
  }

  .col-card p::first-letter {
    font-family: inherit !important;
    font-size: inherit !important;
    float: none !important;
    margin: 0 !important;
    color: inherit !important;
  }

  /* === BENEFITS === */
  .benefits-section {
    padding: 5rem 0;
    background: var(--purple-ultra-light);
  }

  .benefits-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
  }

  .benefits-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }

  .benefits-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 1;
  }

  .benefit-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid var(--purple-light);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(91,106,175,0.1);
    border-color: var(--orange);
  }

  .benefit-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .benefit-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
  }

  .bc-admin .benefit-card-icon { background: rgba(91,106,175,0.12); color: var(--purple); }
  .bc-locatie .benefit-card-icon { background: rgba(232,168,56,0.15); color: #C48A20; }
  .bc-woon .benefit-card-icon { background: rgba(72,175,120,0.12); color: #2D8A56; }
  .bc-beveil .benefit-card-icon { background: rgba(200,60,60,0.1); color: #B04040; }
  .bc-hoofd .benefit-card-icon { background: rgba(160,60,60,0.12); color: #8B3030; }
  .bc-facil .benefit-card-icon { background: rgba(100,140,200,0.12); color: #4A6B9A; }

  .benefit-card-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
  }

  .benefit-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-secondary);
  }

  /* === WINST === */
  .winst-section {
    padding: 5rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }

  .winst-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--orange), var(--purple));
  }

  .winst-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .winst-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(232,168,56,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
  }

  .winst-icon svg { width: 28px; height: 28px; color: var(--orange-warm); }

  .winst-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange-warm);
    margin-bottom: 1rem;
  }

  .winst-inner h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 1.25rem;
  }

  .winst-inner p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
  }

  /* === RELATED === */
  .related-section {
    padding: 4rem 0;
    background: var(--white);
  }

  .related-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
  }

  .related-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
  }

  .related-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
  }

  .related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 1;
  }

  .related-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--purple-ultra-light);
    border: 1px solid var(--purple-light);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
  }

  .related-card:hover {
    border-color: var(--orange);
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(232,168,56,0.1);
  }

  .related-card-num {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--purple-light);
    min-width: 36px;
    text-align: center;
  }

  .related-card-info h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.1rem;
  }

  .related-card-info span {
    font-size: 0.75rem;
    color: var(--text-secondary);
  }

  /* === MODULE NAV === */
  .module-nav {
    padding: 3rem 0;
    background: var(--purple-ultra-light);
    border-top: 1px solid var(--purple-light);
  }

  .module-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 1rem;
    position: relative;
    z-index: 1;
  }


  .module-nav-link {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--purple-light);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
  }

  .module-nav-link:hover {
    border-color: var(--orange);
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(232,168,56,0.12);
  }

  .module-nav-link.next { flex-direction: row-reverse; text-align: right; }

  .module-nav-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
  }



  .module-nav-dir {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
  }

  .module-nav-num {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    color: var(--dark);
  }

  .module-nav-name {
    font-size: 0.85rem;
    color: var(--text-secondary);
  }

  
  .module-nav-center {
    display: flex;
    align-items: center;
  }

  .module-nav-center a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--purple);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    border: 1px solid var(--purple-light);
    background: var(--white);
    transition: all 0.25s;
    white-space: nowrap;
  }

  .module-nav-center a:hover {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
  }

  @media (max-width: 700px) {
    .module-nav-inner {
      flex-direction: column;
      gap: 0.75rem;
    }
    .module-nav-link {
      width: 100%;
      padding: 1rem 1.25rem;
      gap: 0.75rem;
    }
    .module-nav-link.next {
      flex-direction: row-reverse;
    }
    .module-nav-icon {
      font-size: 1.5rem;
    }
    .module-nav-num {
      font-size: 1rem;
    }
    .module-nav-center {
      width: 100%;
      justify-content: center;
      order: -1;
      margin-bottom: 0.25rem;
    }
    .module-nav-center a {
      width: 100%;
      justify-content: center;
    }
  }

  /* === CTA === */
  .cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, var(--white) 0%, var(--purple-light) 100%);
  }

  .cta-inner { position: relative; z-index: 1; }

  .cta-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--dark);
    margin-bottom: 0.75rem;
  }

  .cta-section h2 em { color: var(--purple); font-style: italic; }

  .cta-section p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.7;
  }

  .cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
  }

  .btn-primary {
    background: var(--purple);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(91,106,175,0.3);
  }
  .btn-primary:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(91,106,175,0.4);
  }

  .btn-ghost {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple-light);
  }
  .btn-ghost:hover {
    border-color: var(--purple);
    background: var(--purple-ultra-light);
    transform: translateY(-2px);
  }

  /* === FOOTER === */
  /* === REVEAL === */
  .reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .footer {
    padding: 2rem 0;
    text-align: center;
    background: var(--dark);
    border-top: 3px solid var(--purple);
  }

  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .footer-logo-side {
    flex: 0 0 auto;
  }

  .footer-logo-side img {
    height: 80px;
    width: auto;
    display: block;
  }

  .footer-center {
    flex: 1 1 auto;
    text-align: center;
  }

  .footer-center .footer-main-logo { width: auto;
    height: 40px;
    margin-bottom: 0.4rem;
  }

  .footer-tagline {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    margin-bottom: 0.3rem;
  }

  .footer-company {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.2rem;
  }

  .footer-website {
    font-size: 0.75rem;
  }

  .footer-website a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-website a:hover {
    color: rgba(255,255,255,0.7);
  }

  .footer-nav { margin-top: 0.6rem; font-size: 0.75rem; line-height: 1.9; }
  .footer-nav a { color: rgba(255,255,255,0.45); text-decoration: none; margin: 0 0.35rem; transition: color 0.3s; }
  .footer-nav a:hover { color: rgba(255,255,255,0.8); }

  @media (max-width: 600px) {
    .footer-inner {
      flex-direction: column;
      gap: 1.2rem;
    }
    .footer-logo-side img {
      height: 60px;
    }
    .footer-inner {
      flex-direction: column;
    }
  }

/* === MODULE SCREENSHOT === */
.module-shot-section { padding: 0 0 4.5rem; background: var(--white); }
.module-shot { margin: 0; }
.module-shot img { width: 100%; height: auto; border-radius: 16px; border: 1px solid var(--purple-light); box-shadow: 0 10px 44px rgba(61,72,120,0.16); display: block; }
.module-shot figcaption { margin-top: 0.8rem; font-size: 0.85rem; color: var(--text-secondary); text-align: center; }
