  * {
    box-sizing: border-box;
  }

  html {
    font-size: 18px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
  }

  /* Artikelpagina: geen smooth-scroll (voelt minder "springerig" bij laden + ankers) */
  html.article-route {
    scroll-behavior: auto;
  }

  body {
    font-family: 'Inter', sans-serif;
    background-color: #021327;
    margin: 0;
    padding: 76px 0 0 0;
    color: #ffffff;
    overflow-x: hidden;
    width: 100%;
    min-width: 0;
  }

  /* Touch-friendly tap highlight */
  a,
  button {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
  }

  /* Header - fixed zodat hij meescrolt ondanks overflow-x: hidden op body */
  .main-header {
    background-color: #021327;
    padding: 16px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
  }


  .main-header.scrolled {
    background-color: #1B334B;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.45);
  }

  .header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
  }

  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .logo img {
    height: 44px;
    width: auto;
  }

  /* Hamburger toggle - verborgen op desktop */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    padding: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
    transition: opacity 0.2s;
  }

  .nav-toggle:hover {
    opacity: 0.8;
  }

  .nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s ease;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Navigatie */
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: opacity 0.2s;
    padding: 8px 0;
  }

  .nav-menu a:hover {
    opacity: 0.8;
  }

  /* Hero sectie */
  .hero-section {
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    padding: 48px 0;
  }

  .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 80px;
  }

  .hero-content {
    flex: 1;
    max-width: 600px;
  }

  .hero-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 28px 0;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 36px 0;
    opacity: 0.95;
    color: #C5D0E8;
  }

  .hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
  }

  .hero-benefits li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 4px;
  }

  .hero-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: #20B2AA;
  }

  .hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
  }

  .demo-button,
  .cta-button,
  .contact-submit {
    padding: 20px 28px;
    font-size: 17px;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: linear-gradient(135deg, #3C67FF 0%, #5B7FFF 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
  }

  .demo-button:hover,
  .cta-button:hover,
  .contact-submit:hover {
    transform: translateY(-2px);
  }

  .demo-button:active,
  .cta-button:active,
  .contact-submit:active {
    transform: translateY(0);
  }

  .hero-cta-text {
    font-size: 15px;
    color: #C5D0E8;
    margin: 16px 0 0 0;
    font-weight: 400;
    display: block;
  }

  .ghost-button {
    padding: 18px 24px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    font-family: inherit;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(2, 19, 39, 0.7);
    color: #E5E7EB;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }

  .ghost-button:hover {
    background: #20B2AA;
    border-color: rgba(148, 163, 184, 0.9);
    transform: translateY(-2px);
  }

  .ghost-button:active {
    transform: translateY(0);
  }

  /* Hero afbeelding - scherpe linker hoeken, afgeronde rechter hoeken */
  .hero-image-wrapper {
    flex: 1;
    max-width: 50%;
    min-height: 520px;
    margin-left: 60px;
    overflow: hidden;
    border-radius: 0 100px 100px 0;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
  }

  .hero-image {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
  }

  /* Klantbewijs (na hero) */
  .client-proof-section {
    position: relative;
    padding: 56px 24px 64px;

    border-top: 1px solid rgba(148, 163, 184, 0.2);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  }

  /* Laat klantbewijs uitbreken uit de max-width van .features-section */
  .features-section > .client-proof-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .client-proof-inner {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .client-proof-eyebrow {
    margin: 0 0 12px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #20B2AA;
  }

  .client-proof-heading {
    margin: 0 0 12px 0;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 600;
    line-height: 1.25;
    color: #20B2AA;
  }

  .client-proof-lead {
    margin: 0 auto 40px;
    max-width: 640px;
    font-size: 17px;
    line-height: 1.6;
    color: #C5D0E8;
  }

  .client-proof-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px 72px;
  }

  .client-proof-item {
    margin: 0;
    padding: 0;
  }

  .client-proof-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .client-proof-logo-wrap img {
    max-width: min(260px, 46vw);
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.2s ease;
  }

  .client-proof-item:hover .client-proof-logo-wrap img {
    opacity: 0.88;
  }

  @media (max-width: 900px) {
    .client-proof-grid {
      flex-direction: column;
      gap: 36px;
    }

    .client-proof-section {
      padding: 48px 20px 52px;
    }
  }

  /* Trust sectie */
  .trust-section {
    background-color: #021327;
    padding: 64px 24px 80px;
    text-align: center;
  }

  /* Haal meer uit OctoPos sectie */
  .more-section {
    background-color: #021327;
    padding: 64px 24px 80px;
    text-align: center;
  }

  .more-title {
    color: #ffffff;
    font-size: 44px;
    font-weight: 600;
    margin: 0 0 24px 0;
  }

  .more-text {
    color: #C5D0E8;
    font-size: 18px;
    line-height: 1.7;
    max-width: 880px;
    margin: 0 auto;
  }

  /* Variant voor privacy-pagina: tekst links uitlijnen */
  .more-section.more-section--left {
    text-align: left;
  }

  .more-section.more-section--left .more-title {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 880px;
  }

  .more-section.more-section--left .more-text {
    margin-left: auto;
    margin-right: auto;
  }

  /* Stap over op een cloud kassasysteem sectie */
  .cta-section {
    background-color: #021327;
    padding: 64px 24px 80px;
  }

  .cta-container {
    max-width: 1180px;
    margin: 0 auto;
  }

  .cta-card {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 40px 44px;
    border-radius: 20px;
    background-color: #031a33;
    border: 1px solid rgba(148, 163, 184, 0.35);
  }

  .cta-illustration {
    flex: 1;
    min-width: 0;
  }

  .cta-image {
    width: 100%;
    height: auto;
    display: block;
  }

  .cta-content {
    flex: 1;
    min-width: 0;
    color: #ffffff;
  }

  .cta-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    margin-bottom: 16px;
    border-radius: 999px;
    border: 1px solid rgba(32, 178, 170, 0.9);
    background: rgba(2, 19, 39, 0.9);
    color: #E0F2FE;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .cta-title {
    font-size: 44px;
    font-weight: 600;
    margin: 0 0 16px 0;
  }

  .cta-text {
    color: #C5D0E8;
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 20px 0;
  }

  .cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    font-size: 16px;
    color: #E5E7EB;
  }

  .cta-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
  }

  .cta-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background-color: #20B2AA;
  }

  .cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  /* Knopgedrag voor CTA is gedeeld via .demo-button /.cta-button /.contact-submit */

  .cta-meta {
    margin-top: 24px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 14px;
    color: #9CA3AF;
  }

  .cta-meta-highlight {
    color: #20B2AA;
    font-weight: 600;
  }

  .site-footer {
    background-color: #021327;
    padding: 40px 24px 32px;
    color: #E5E7EB;
    margin-top: 40px;
  }

  .footer-inner {
    max-width: 1180px;
    margin: 0 auto 32px;
    display: grid;
    grid-template-columns: 1.4fr 1.4fr 1.2fr 1.2fr;
    gap: 48px;
    align-items: flex-start;
  }

  .footer-logo {
    display: inline-flex;
    align-items: center;
  }

  .footer-logo img {
    height: 40px;
    width: auto;
  }

  .footer-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #ffffff;
  }

  .footer-text {
    margin: 0 0 12px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #CBD5F5;
    text-decoration: none;
  }

  .footer-text a {
    color: #93C5FD;
    text-decoration: none;
  }

  .footer-text a:hover {
    color: #20B2AA;
  }

  .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #CBD5F5;
  }

  .footer-list a {
    text-decoration: none;
    color: #93C5FD;
  }

  .footer-list a:hover {
    color: #20B2AA;
  }

  .footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #9CA3AF;
  }

  .footer-legal-link {
    color: #93C5FD;
    text-decoration: none;
  }

  .footer-legal-link:hover {
    text-decoration: none;
    color: #20B2AA;
  }

  /* Voordelen cloud kassasysteem sectie */
  .benefits-section {
    background-color: #021327;
    padding: 64px 24px 80px;
  }

  .benefits-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 56px;
  }

  .benefits-content {
    flex: 1.2;
    min-width: 0;
    padding-left: 16px;
  }

  .benefits-title {
    color: #ffffff;
    font-size: 46px;
    font-weight: 600;
    margin: 0 0 16px 0;
  }

  .benefits-subtitle {
    color: #C5D0E8;
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 24px 0;
  }

  .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.7;
    max-width: 480px;
  }

  .benefits-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 6px;
  }

  .benefits-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: #20B2AA;
  }

  .benefits-image-wrapper {
    flex: 1;
    min-width: 0;
    text-align: right;
    margin-top: 24px;
  }

  .benefits-image {
    max-width: 420px;
    width: 100%;
    height: auto;
    display: inline-block;
  }

  .trust-text {
    color: #20B2AA;
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 180px;
    max-width: 800px;
  }

  .trust-divider {
    width: 80%;
    max-width: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 32px auto;
  }

  /* Integraties banner */
  .integrations-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .integrations-text {
    color: #20B2AA;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 32px 0;
    line-height: 1.4;
  }

  .integrations-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px 48px;
  }

  .integration-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 60px;
  }

  .integration-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* Features sectie (onder de lijn) */
  .features-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px 64px;
  }

  .features-title {
    color: #ffffff;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 32px 0;
  }

  .features-description {
    color: #C5D0E8;
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    margin: 0 auto 64px;
    max-width: 800px;
  }

  .features-subtitle-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 150px;
  }

  .features-subtitle {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    white-space: nowrap;
  }

  /* Feature blocks grid */
  .feature-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 80px;
  }

  .feature-block {
    background-color: #021327;
    padding: 32px 28px;
    border-radius: 12px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .feature-block:hover {
    background-color: rgba(32, 178, 170, 0.25);
    transform: translateY(-4px);
  }

  .feature-icon {
    color: #20B2AA;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }

  .feature-icon svg {
    display: block;
  }

  .feature-block-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
  }

  .feature-block-text {
    color: #C5D0E8;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
  }

  /* Security sectie - donkerblauwe vierkant */
  .security-section {
    background-color: #021327;
    padding: 80px 24px 100px;
  }

  .security-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #00202F;
    border-radius: 20px;
    border: 1px #20B2AA;
    padding: 96px 64px 100px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
  }

  .security-container-bottom {
    padding-top: 140px;
    padding-bottom: 160px;
  }

  .security-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    max-width: 340px;
    height: 100%;
    background-image: url('images/bg-techtop-home10.png');
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
    opacity: 0.7;
    pointer-events: none;
  }

  .security-bg-image-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32%;
    max-width: 280px;
    height: 100%;
    background-image: url('images/bg-techbot-home10.png');
    background-size: contain;
    background-position: bottom left;
    background-repeat: no-repeat;
    opacity: 0.7;
    pointer-events: none;
  }

  .security-container-bottom .security-bg-image {
    width: 38%;
    max-width: 320px;
    opacity: 0.5;
  }

  .security-container-bottom .security-bg-image-bottom {
    width: 30%;
    max-width: 260px;
    opacity: 0.5;
  }

  .security-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 24px 0;
  }

  .security-subtitle {
    color: #C5D0E8;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto 80px;
    max-width: 700px;
  }

  .security-subtitle--sectors {
    max-width: 750px;
    margin-bottom: 0;
  }

  /* Storingsbanner (main.js zet class op het element) */
  .storing-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #ff6600;
    color: #000;
    padding: 10px 16px;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .stats-row {
    display: flex;
    justify-content: center;
    gap: 110px;
    flex-wrap: wrap;
  }

  .stat-item {
    text-align: center;
    min-width: 120px;
  }

  .stat-number {
    color: #20B2AA;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 8px;
    display: inline-block;
    min-width: 4ch;
  }

  .stat-label {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
  }

  .security-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .security-block {
    text-align: center;
  }

  .security-block-image {
    width: 90%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 40px;
    background-color: #021327;

  }

  .security-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .security-block-title {
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 16px 0;
  }

  .security-block-text {
    color: #C5D0E8;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 420px;
  }

  /* Tablet */
  @media (max-width: 968px) {
    html {
      font-size: 17px;
    }

    .header-container {
      padding: 0 24px;
      width: 100%;
      max-width: 100%;
    }

    .hero-container {
      flex-direction: column;
      text-align: center;
      padding: 0 24px;
      gap: 48px;
      width: 100%;
      max-width: 100%;
    }

    .hero-section {
      padding: 32px 0;
      min-height: auto;
    }

    .hero-content {
      max-width: 100%;
      width: 100%;
      min-width: 0;
    }

    .hero-title {
      font-size: 42px;
      font-weight: 600;
    }

    .hero-cta {
      flex-direction: column;
      align-items: center;
    }

    .hero-image-wrapper {
      max-width: 100%;
      width: 100%;
      margin-left: 0;
      border-radius: 28px;
      min-height: 400px;
      min-width: 0;
    }

    .hero-image {
      min-height: 400px;
    }

    .trust-section {
      padding: 56px 24px 72px;
    }

    .trust-text {
      margin-bottom: 120px;
    }

    .features-section {
      padding: 64px 24px 56px;
    }

    .features-title {
      font-size: 36px;
    }

    .features-description {
      font-size: 17px;
      margin-bottom: 48px;
    }

    .cta-container {
      gap: 40px;
    }

    .benefits-section {
      padding: 56px 24px 72px;
    }

    .benefits-container {
      flex-direction: column;
      gap: 40px;
    }

    .benefits-title {
      font-size: 36px;
    }

    .features-subtitle-wrapper {
      margin-top: 72px;
    }

    .features-subtitle {
      font-size: 30px;
      white-space: nowrap;
    }

    .feature-blocks {
      margin-top: 56px;
      gap: 20px;
    }

    .feature-block {
      padding: 28px 24px;
    }

    .feature-block-title {
      font-size: 18px;
    }

    .feature-block-text {
      font-size: 14px;
    }

    .security-section {
      padding: 64px 24px 80px;
    }

    .security-container {
      padding: 64px 40px 80px;
    }

    .security-title {
      font-size: 36px;
    }

    .security-subtitle {
      font-size: 17px;
      margin-bottom: 64px;
    }

    .security-blocks {
      gap: 28px;
    }

    .security-block-title {
      font-size: 20px;
    }
  }

  /* Mobile */
  @media (max-width: 768px) {
    .nav-toggle {
      display: flex;
      position: relative;
      z-index: 100;
    }

    /* Logo en sluitknop boven het fullscreen menu (menu heeft z-index 99). */
    .logo {
      position: relative;
      z-index: 100;
    }

    /* Verberg menu zonder opacity:0 (Lighthouse NO_LCP-workaround op mobiel). */
    .nav-menu {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      flex-direction: column;
      justify-content: center;
      gap: 24px;
      background: #021327;
      z-index: 99;
      transform: translateX(100%);
      visibility: hidden;
      pointer-events: none;
      transition: transform 0.3s ease, visibility 0.3s ease;
    }

    .nav-menu.nav-open {
      transform: translateX(0);
      visibility: visible;
      pointer-events: auto;
    }

    .nav-menu a {
      font-size: 20px;
      padding: 16px;
      min-height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .header-container {
      padding: 0 20px;
    }

    .logo img {
      height: 36px;
    }

    .main-header {
      padding: 16px 0;
    }

    .hero-container {
      padding: 0 20px;
      gap: 40px;
    }

    .hero-title {
      font-size: 32px;
      line-height: 1.2;
    }

    .hero-subtitle {
      font-size: 16px;
      margin-bottom: 28px;
    }

    .hero-cta {
      gap: 16px;
      width: 100%;
    }

    .demo-button {
      width: 100%;
      min-height: 52px;
      padding: 16px 24px;
      font-size: 16px;
    }

    .hero-cta-text {
      font-size: 16px;
      margin-top: 24px;
    }

    /* Afbeelding boven de kop (alleen smal mobiel; tablet 769?968px houdt tekst eerst). */
    .hero-image-wrapper {
      order: -1;
      min-height: 280px;
      border-radius: 20px;
    }

    .hero-image {
      min-height: 280px;
    }

    .trust-section {
      padding: 48px 20px 64px;
    }

    .trust-text {
      margin-bottom: 96px;
    }

    .features-section {
      padding: 48px 20px 48px;
    }

    .features-title {
      font-size: 28px;
      margin-bottom: 24px;
    }

    .features-description {
      font-size: 16px;
      margin-bottom: 40px;
    }

    .features-subtitle-wrapper {
      margin-top: 56px;
    }

    .features-subtitle {
      font-size: 26px;
      white-space: normal;
    }

    .feature-blocks {
      grid-template-columns: 1fr;
      margin-top: 48px;
      gap: 16px;
    }

    .feature-block {
      padding: 24px 20px;
    }

    .feature-block-title {
      font-size: 17px;
    }

    .feature-block-text {
      font-size: 14px;
    }

    .security-section {
      padding: 48px 20px 64px;
    }

    .security-container {
      padding: 56px 32px 72px;
    }

    .security-title {
      font-size: 30px;
    }

    .security-subtitle {
      font-size: 16px;
      margin-bottom: 56px;
    }

    .security-blocks {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .security-block-image {
      aspect-ratio: 16 / 10;
      margin-bottom: 32px;
    }

    .security-block-title {
      font-size: 18px;
    }

    .security-block-text {
      font-size: 14px;
    }
  }

  /* Kleine telefoons */
  @media (max-width: 480px) {
    html {
      font-size: 16px;
    }

    .hero-title {
      font-size: 28px;
    }

    .hero-image-wrapper {
      min-height: 240px;
    }

    .hero-image {
      min-height: 240px;
    }

    .trust-section {
      padding: 40px 16px 56px;
    }

    .trust-text {
      font-size: 17px;
      margin-bottom: 80px;
    }

    .trust-divider {
      width: 80%;
    }

    .features-section {
      padding: 40px 16px 40px;
    }

    .features-title {
      font-size: 30px;
      margin-bottom: 40px;
    }

    .features-description {
      font-size: 15px;
      margin-bottom: 32px;
    }

    .features-subtitle-wrapper {
      margin-top: 48px;
    }

    .features-subtitle {
      font-size: 22px;
      white-space: normal;
    }

    .feature-blocks {
      margin-top: 40px;
      gap: 12px;
    }

    .feature-block {
      padding: 20px 16px;
    }

    .feature-block-title {
      font-size: 16px;
    }

    .feature-block-text {
      font-size: 13px;
    }

    .cta-section {
      padding: 48px 16px 72px;
    }

    .cta-container {
      flex-direction: column;
      text-align: center;
      gap: 32px;
    }

    .cta-title {
      font-size: 32px;
    }

    .cta-text {
      font-size: 15px;
    }

    .site-footer {
      padding: 32px 16px 28px;
    }

    .footer-inner {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 8px;
      text-align: center;
    }

    .benefits-section {
      padding: 48px 16px 64px;
    }

    .benefits-title {
      font-size: 30px;
    }

    .benefits-subtitle,
    .benefits-list {
      font-size: 15px;
    }

    .security-section {
      padding: 40px 16px 56px;
    }

    .security-container {
      padding: 40px 24px 56px;
    }

    .security-title {
      font-size: 26px;
    }

    .security-subtitle {
      font-size: 15px;
      margin-bottom: 44px;
    }

    .security-blocks {
      gap: 40px;
    }

    .security-block-title {
      font-size: 17px;
    }

    .security-block-text {
      font-size: 13px;
    }
  }

  /* =====================
   OctoPos pagina
   ===================== */

  /* Hero sectie */
  .op-hero-section {
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    padding: 64px 0;
  }

  .op-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 80px;
  }

  .op-hero-content {
    flex: 1;
    max-width: 560px;
  }

  .op-hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 32px 0;
    letter-spacing: -0.5px;
    color: #ffffff;
  }

  .op-hero-text {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
    margin: 0;
    color: #C5D0E8;
  }

  .op-hero-image-wrapper {
    flex: 1;
    max-width: 50%;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  }

  .op-hero-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
  }

  /* Sectoren sectie */
  .op-sectors-section {
    background-color: #021327;
    padding: 16px 24px 72px;
  }

  .op-sectors-container {
    max-width: 1180px;
    margin: 0 auto;
  }

  .op-sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 56px;
  }

  .op-sector-title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 20px 0;
  }

  .op-sector-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .op-sector-list li {
    position: relative;
    padding-left: 22px;
    color: #C5D0E8;
    font-size: 15px;
    line-height: 1.55;
  }

  .op-sector-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 13px;
    height: 13px;
    border-radius: 999px;
    background-color: #20B2AA;
  }

  .op-sectors-closing {
    color: #C5D0E8;
    font-size: 18px;
    line-height: 1.75;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 8px;
  }

  @media (max-width: 768px) {
    .op-sectors-grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }
  }

  /* Verkoopresultaat sectie */
  .op-sales-section {
    background-color: #021327;
    padding: 48px 24px 80px;
  }

  .op-sales-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 64px;
  }

  .op-sales-content {
    flex: 1.1;
    min-width: 0;
  }

  .op-sales-title {
    color: #ffffff;
    font-size: 46px;
    font-weight: 600;
    margin: 0 0 20px 0;
    line-height: 1.2;
  }

  .op-sales-text {
    color: #C5D0E8;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    max-width: 560px;
  }

  .op-sales-image-wrapper {
    flex: 1;
    min-width: 0;
    border-radius: 16px;
    overflow: hidden;
  }

  .op-sales-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
  }

  @media (max-width: 968px) {
    .op-sales-section {
      padding: 40px 24px 64px;
    }

    .op-sales-container {
      flex-direction: column;
      gap: 40px;
    }

    .op-sales-title {
      font-size: 34px;
    }
  }

  @media (max-width: 480px) {
    .op-sales-section {
      padding: 32px 16px 56px;
    }

    .op-sales-title {
      font-size: 30px;
    }

    .op-sales-text {
      font-size: 16px;
    }
  }

  /* Tablet */
  @media (max-width: 968px) {
    .op-hero-container {
      flex-direction: column;
      padding: 0 24px;
      gap: 48px;
      text-align: center;
      width: 100%;
      max-width: 100%;
    }

    .op-hero-section {
      padding: 48px 0;
      min-height: auto;
      width: 100%;
    }

    .op-hero-content {
      max-width: 100%;
      width: 100%;
      min-width: 0;
    }

    .op-hero-title {
      font-size: 42px;
    }

    .op-hero-image-wrapper {
      max-width: 100%;
      width: 100%;
      min-width: 0;
    }

    .op-hero-image {
      min-height: 320px;
    }

  }

  /* Mobile */
  @media (max-width: 768px) {
    .op-hero-container {
      padding: 0 20px;
    }

    .op-hero-title {
      font-size: 34px;
    }

    .op-hero-text {
      font-size: 16px;
    }

    .op-hero-image {
      min-height: 260px;
    }

  }

  @media (max-width: 480px) {
    .op-hero-section {
      padding: 40px 0;
    }

    .op-hero-container {
      padding: 0 20px;
    }

    .op-hero-title {
      font-size: 30px;
    }

    .op-hero-image {
      min-height: 220px;
    }

  }

  /* =====================
   Contact pagina
   ===================== */

  .contact-section {
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    padding: 80px 0;
  }

  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
  }

  /* Linker kolom */
  .contact-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px 0;
    color: #ffffff;

  }

  .contact-subtitle {
    font-size: 16px;
    color: #C5D0E8;
    margin: 0 0 48px 0;
    line-height: 1.6;
  }

  .contact-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #20B2AA;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .contact-item-label {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
  }

  .contact-item-value {
    font-size: 15px;
    color: #C5D0E8;
    line-height: 1.5;
  }

  a.contact-item-value {
    color: #93C5FD;
    text-decoration: none;
  }

  a.contact-item-value:hover {
    color: #20B2AA;
    text-decoration: none;
  }

  /* Rechter kolom: formulier */
  .contact-form-wrapper {
    background: linear-gradient(to bottom, #021327 0%, #0a4550 25%, #589F9F 100%);
    border-radius: 10px;
    padding: 48px 40px;
  }

  .contact-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
  }

  .contact-form-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 28px 0;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .contact-input {
    width: 100%;
    padding: 16px 18px;
    font-size: 15px;
    font-family: inherit;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 5px;
    outline: none;
    transition: background 0.2s;
  }

  .contact-input::placeholder {
    color: rgba(255, 255, 255, 0.65);
  }

  .contact-input:focus {
    background: rgba(255, 255, 255, 0.2);
  }

  .contact-textarea {
    min-height: 120px;
    resize: vertical;
  }

  .contact-submit {
    align-self: flex-start;
    margin-top: 4px;
    padding: 16px 24px;
    font-size: 16px;
  }

  .contact-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
  }

  .contact-form-success {
    padding: 24px 22px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: rgba(32, 178, 170, 0.18);
    border: 1px solid rgba(32, 178, 170, 0.45);
  }

  .contact-form-success-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
  }

  .contact-form-success-text {
    margin: 0 0 18px 0;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
  }

  .contact-form-success-again {
    padding: 10px 18px;
    font-size: 14px;
    font-family: inherit;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
  }

  .contact-form-success-again:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .contact-form-error {
    margin: 0 0 16px 0;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.45;
    border-radius: 5px;
    background: rgba(220, 80, 80, 0.2);
    border: 1px solid rgba(255, 120, 120, 0.4);
    color: rgba(255, 255, 255, 0.95);
  }

  /* Kaart sectie */
  .map-section {
    padding: 0 0 80px 0;
  }

  .map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
  }

  .map-iframe {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 16px;
    display: block;
  }

  @media (max-width: 900px) {
    .contact-container {
      grid-template-columns: 1fr;
      gap: 56px;
      padding: 0 24px;
    }

    .contact-title {
      font-size: 32px;
    }

    .contact-section {
      padding: 56px 0;
    }

    .contact-form-wrapper {
      padding: 36px 28px;
    }

    .map-container {
      padding: 0 24px;
    }

    .map-iframe {
      height: 280px;
    }
  }

  /* =====================
   Nieuws sectie (homepage + artikelpagina)
   - .news-featured: groot kaartje met eerste artikel
   - .news-card: kleinere kaartjes voor overige artikelen
   - .article-full: volledig artikel op detailpagina
   ===================== */

  .news-section {
    background: linear-gradient(180deg, #021327 0%, #031a33 50%, #021327 100%);
    padding: 80px 24px 100px;
  }

  .news-container {
    max-width: 1180px;
    margin: 0 auto;
  }

  .news-section-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 48px 0;
    text-align: center;
    letter-spacing: -0.02em;
  }

  .news-empty {
    margin: 0 auto;
    max-width: 36rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.6;
  }

  .news-empty--other {
    grid-column: 1 / -1;
  }

  .news-featured {
    margin-bottom: 56px;
  }

  .news-featured-link {
    display: flex;
    gap: 0;
    align-items: stretch;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(135deg, #031a33 0%, #0a2744 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(32, 178, 170, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  }

  .news-featured-link:hover {
    border-color: #20B2AA;
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(32, 178, 170, 0.15);
  }

  .news-featured-image {
    flex: 0 0 35%;
    max-width: 360px;
    min-height: 220px;
    background-color: #0a1e33;
    display: flex;  
    align-items: center;
    justify-content: center;
    padding: 24px;
  }

  .news-featured-image img {
    width: 100%;
    height: 100%;
    min-height: 172px;
    object-fit: contain;
    display: block;
    border-radius: 15px;

  }

  .news-featured-content {
    flex: 1;
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
  }

  .news-featured-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #20B2AA;
    margin-bottom: 12px;
  }

  .news-featured-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 16px 0;
    line-height: 1.35;
    letter-spacing: -0.01em;
  }

  .news-featured-excerpt {
    color: #C5D0E8;
    font-size: 17px;
    line-height: 1.65;
    margin: 0 0 24px 0;
  }

  .news-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #20B2AA;
    transition: gap 0.2s;
  }

  .news-featured-link:hover .news-featured-cta {
    gap: 12px;
  }

  .news-featured-cta::after {
    content: "\2192";
    font-size: 18px;
  }

  .news-other-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 28px 0;
    letter-spacing: -0.01em;
  }

  .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
  }

  .news-load-more-wrapper {
    text-align: center;
    margin-top: 40px;
  }

  .news-load-more-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(145deg, #0a2744 0%, #031a33 100%);
    border: 1px solid rgba(32, 178, 170, 0.4);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
  }

  .news-load-more-btn:hover {
    border-color: #20B2AA;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(32, 178, 170, 0.2);
  }

  .news-card {
    background: linear-gradient(145deg, #031a33 0%, #0a2744 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(32, 178, 170, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  }

  .news-card:hover {
    border-color: #20B2AA;
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(32, 178, 170, 0.12);
  }

  .news-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .news-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #0a1e33;
  }

  .news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .news-card-content {
    padding: 24px 28px;
  }

  .news-card-title {
    color: #ffffff;
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
  }

  .news-card-excerpt {
    color: #C5D0E8;
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .news-card-cta {
    font-size: 14px;
    font-weight: 600;
    color: #20B2AA;
    transition: opacity 0.2s;
  }

  .news-card:hover .news-card-cta {
    opacity: 0.9;
  }

  @media (max-width: 768px) {
    .news-section {
      padding: 56px 20px 72px;
    }

    .news-featured-link {
      flex-direction: column;
      gap: 0;
    }

    .news-featured-image {
      flex: none;
      max-width: 100%;
      min-height: 220px;
      aspect-ratio: 16 / 9;
    }

    .news-featured-image img {
      object-fit: cover;
      min-height: 0;
    }

    .news-featured-content {
      padding: 28px 24px 36px;
    }

    .news-featured-title {
      font-size: 22px;
    }

    .news-featured-excerpt {
      font-size: 15px;
      margin-bottom: 20px;
    }

    .news-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .news-featured-link:hover,
    .news-card:hover {
      transform: none;
    }

    .news-featured-link,
    .news-card {
      transition: none;
    }
  }

  /* Artikel detailpagina */
  .article-page {
    padding: 64px 24px 80px;
    min-height: calc(100vh - 88px);
  }

  .article-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .article-full-title {
    color: #ffffff;
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 16px 0;
    line-height: 1.3;
  }

  .article-full-meta {
    color: #C5D0E8;
    font-size: 15px;
    margin-bottom: 32px;
  }

  .article-full-meta-updated {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #a8b4cf;
  }

  .article-full-image {
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 32px;
    max-width: 75%;
    text-align: center;
  }

  .article-full-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .article-full-body {
    color: #E5E7EB;
    font-size: 17px;
    line-height: 1.75;
  }

  .article-full-body br {
    display: block;
    content: "";
    margin-top: 0.5em;
  }

  .news-section--compact {
    padding-top: 64px;
    margin-top: 64px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
  }

  @media (max-width: 768px) {
    .article-full-title {
      font-size: 28px;
    }
  }

  /* =====================
   Admin pagina (admin-nieuws.html)
   - .admin-login-visible op body: voorkomt scrollen op inlogscherm
   - .admin-form-section: formulier voor toevoegen/bewerken
   - .admin-article-card: kaartjes in de artikelenlijst
   ===================== */

  /* Admin: licht thema, vlakke kleuren (geen gradients), duidelijke hiÃÂ«rarchie */
  .admin-body {
    background: #e8edf3;
    min-height: 100vh;
    padding: 0;
    color: #1e293b;
  }

  .admin-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #1e3a5f;
    padding: 14px 24px;
    border-bottom: 3px solid #0d9488;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.15);
  }

  .admin-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .admin-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    min-width: 0;
  }

  .admin-btn-site {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    color: #ffffff;
    background: #0d9488;
    border: 1px solid #0f766e;
    border-radius: 8px;
    flex-shrink: 0;
    transition: background 0.2s, box-shadow 0.2s;
  }

  .admin-btn-site:hover {
    background: #0f766e;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.45);
    color: #ffffff;
  }

  .admin-logo {
    color: #f8fafc;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.2s;
  }

  .admin-logo:hover {
    color: #5eead4;
  }

  .admin-logo--brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .admin-logo--brand:hover .admin-header-logo {
    opacity: 0.92;
  }

  .admin-logo-suffix {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .admin-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
  }

  .admin-header-logo-link {
    display: flex;
    align-items: center;
    line-height: 0;
  }

  .admin-header-logo {
    display: block;
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
  }

  .admin-nav {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .admin-user {
    color: #cbd5e1;
    font-size: 13px;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .admin-logout {
    padding: 8px 16px;
    font-size: 14px;
    font-family: inherit;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #334155;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }

  .admin-logout:hover {
    background: #ffffff;
    border-color: #0d9488;
    color: #0f172a;
  }

  .admin-body.admin-login-visible {
    overflow: hidden;
    height: 100vh;
  }

  .admin-login-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: #e8edf3;
  }

  .admin-login-box {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 40px 40px 44px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 12px 40px rgba(30, 58, 95, 0.12);
  }

  .admin-login-box h1 {
    color: #0f172a;
    font-size: 24px;
    margin: 0 0 8px 0;
    text-align: center;
  }

  .admin-login-hint {
    color: #64748b;
    font-size: 14px;
    margin: 0 0 28px 0;
    text-align: center;
    line-height: 1.5;
  }

  .admin-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .admin-form input[type="text"],
  .admin-form input[type="email"],
  .admin-form input[type="password"],
  .admin-form textarea {
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .admin-form input:focus,
  .admin-form textarea:focus {
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
  }

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

  .admin-form input[type="file"] {
    padding: 12px;
    font-size: 14px;
    color: #475569;
    background: #f1f5f9;
    border: 1px dashed #94a3b8;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
  }

  .admin-form button[type="submit"],
  .admin-form .admin-form-actions button:first-child {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    background: #0d9488;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
  }

  .admin-form button[type="submit"]:hover:not(:disabled),
  .admin-form .admin-form-actions button:first-child:hover:not(:disabled) {
    background: #0f766e;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
  }

  .admin-form button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
  }

  .admin-btn-secondary {
    padding: 12px 24px;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }

  .admin-btn-secondary:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #1e293b;
  }

  .admin-error {
    color: #dc2626;
    font-size: 14px;
    margin-top: 12px;
    visibility: hidden;
  }

  .admin-main {
    padding: 28px 20px 56px;
  }

  .admin-main--hidden {
    display: none;
  }

  .admin-container {
    max-width: 880px;
    margin: 0 auto;
    width: 100%;
  }

  .admin-page-head {
    text-align: center;
    margin-bottom: 28px;
  }

  .admin-page-head h1 {
    color: #0f172a;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
    letter-spacing: -0.02em;
  }

  .admin-page-lead {
    color: #64748b;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .admin-panel {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  }

  .admin-panel--compose {
    border-top: 4px solid #0d9488;
    padding: 28px 28px 32px;
    margin-bottom: 28px;
  }

  .admin-panel--list {
    border-top: 4px solid #3b82f6;
    padding: 24px 24px 28px;
    text-align: left;
  }

  .admin-form-section h2 {
    color: #0f172a;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 22px 0;
    text-align: left;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
  }

  .admin-list-section h2 {
    color: #0f172a;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-align: left;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
  }

  .admin-form-section .admin-form {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .admin-form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .admin-form-group:last-of-type {
    margin-bottom: 0;
  }

  .admin-form-group label {
    display: block;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    width: 100%;
    text-align: left;
  }

  .admin-form-group input[type="text"],
  .admin-form-group input[type="email"],
  .admin-form-group input[type="password"],
  .admin-form-group textarea,
  .admin-form-group input[type="file"] {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .admin-form-hint {
    color: #64748b;
    font-size: 12px;
    margin-top: 8px;
    text-align: left;
  }

  .admin-image-preview {
    margin-top: 12px;
    text-align: left;
  }

  .admin-image-preview img {
    max-width: 240px;
    max-height: 140px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
  }

  .admin-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    justify-content: flex-start;
  }

  .admin-articles-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .admin-article-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 18px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .admin-article-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.08);
  }

  .admin-article-card-image {
    width: 112px;
    height: 63px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #e2e8f0;
  }

  .admin-article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .admin-article-card-content {
    flex: 1;
    min-width: 0;
    text-align: left;
  }

  .admin-article-card-content h3 {
    color: #0f172a;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px 0;
    line-height: 1.35;
  }

  .admin-article-card-date {
    color: #64748b;
    font-size: 13px;
    margin: 0 0 12px 0;
  }

  .admin-article-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-shrink: 0;
  }

  .admin-btn-edit,
  .admin-btn-delete {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
  }

  .admin-btn-edit {
    background: #3b82f6;
    color: #ffffff;
    border: 1px solid #2563eb;
  }

  .admin-btn-edit:hover {
    background: #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
  }

  .admin-btn-delete {
    background: #ffffff;
    border: 1px solid #f87171;
    color: #dc2626;
  }

  .admin-btn-delete:hover {
    background: #fef2f2;
    border-color: #dc2626;
  }

  .admin-loading,
  .admin-empty {
    color: #64748b;
    font-size: 15px;
    padding: 36px 24px;
    text-align: center;
    background: #f1f5f9;
    border-radius: 10px;
    border: 1px dashed #cbd5e1;
  }

  @media (max-width: 640px) {
    .admin-article-card {
      flex-direction: column;
      align-items: stretch;
    }

    .admin-article-card-image {
      width: 100%;
      height: 140px;
    }

    .admin-article-card-actions {
      justify-content: flex-start;
    }

    .admin-panel--compose,
    .admin-panel--list {
      padding: 20px 18px 24px;
    }
  }