/* =============================================
       CSS VARIABLES & RESET
    ============================================= */
    :root {
      --green:        #1f7a6e;
      --green-mid:    #4aada0;
      --green-light:  #a5e2da;
      --green-faint:  #eef6f2;
      --green-deep:   #164f47;
      --navy:         #0f2137;
      --slate:        #334155;
      --muted:        #64748b;
      --border:       #e2eceb;
      --white:        #ffffff;
      --off-white:    #f8faf9;
      --red:          #dc2626;
      --font-display: 'Plus Jakarta Sans', sans-serif;
      --font-body:    'Mulish', sans-serif;
      --radius:       16px;
      --radius-sm:    10px;
      --shadow:       0 4px 24px rgba(31,122,110,0.08);
      --shadow-lg:    0 12px 48px rgba(31,122,110,0.14);
      --transition:   all 0.35s cubic-bezier(0.4,0,0.2,1);
    }

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

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

    body {
      font-family: var(--font-body);
      font-size: 17px;
      line-height: 1.7;
      color: var(--slate);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.2; color: var(--navy); }
    p { margin: 0; }
    ul { list-style: none; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; height: auto; display: block; }

    /* =============================================
       LAYOUT
    ============================================= */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 28px;
    }

    .section {
      padding: 100px 0;
    }

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

    .section--dark {
      background: var(--navy);
      color: var(--white);
    }

    .section--dark h2,
    .section--dark h3,
    .section--dark h4 { color: var(--white); }

    .section--green {
      background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
      color: var(--white);
    }

    .section--green h2,
    .section--green h3 { color: var(--white); }

    .section-label {
      display: inline-block;
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--green);
      background: var(--green-faint);
      border: 1px solid var(--green-light);
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 20px;
    }

    .section--dark .section-label,
    .section--green .section-label {
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.2);
      color: var(--green-light);
    }

    .section-title {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }

    .section-intro {
      font-size: 17px;
      color: var(--muted);
      max-width: 580px;
      line-height: 1.8;
    }

    .section--dark .section-intro,
    .section--green .section-intro { color: rgba(255,255,255,0.75); }

    .section-head {
      margin-bottom: 60px;
    }

    .section-head--center {
      text-align: center;
    }

    .section-head--center .section-intro {
      margin: 0 auto;
    }

    /* =============================================
       SCROLL ANIMATIONS
    ============================================= */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* =============================================
       BUTTONS
    ============================================= */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 700;
      padding: 14px 30px;
      border-radius: var(--radius-sm);
      border: none;
      cursor: pointer;
      transition: var(--transition);
      letter-spacing: 0.3px;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(31,122,110,0.3);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
      box-shadow: 0 8px 30px rgba(31,122,110,0.4);
      transform: translateY(-2px);
      color: var(--white);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.4);
    }

    .btn-outline:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.7);
      color: var(--white);
    }

    .btn-ghost {
      background: transparent;
      color: var(--green);
      border: 2px solid var(--green);
    }

    .btn-ghost:hover {
      background: var(--green);
      color: var(--white);
    }

    .btn-lg {
      font-size: 17px;
      padding: 18px 40px;
      border-radius: var(--radius);
    }

    .btn svg {
      width: 18px;
      height: 18px;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .btn:hover svg { transform: translateX(3px); }
    .btn-down:hover svg { transform: translateY(3px) !important; }

    /* Pulse animation */
    @keyframes pulse-glow {
      0%, 100% { box-shadow: 0 4px 20px rgba(31,122,110,0.3); }
      50%       { box-shadow: 0 4px 35px rgba(31,122,110,0.55); }
    }
    .btn-pulse { animation: pulse-glow 2.5s infinite; }

    /* =============================================
       STICKY CTA BAR
    ============================================= */
    .sticky-cta {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 900;
      opacity: 0;
      transform: translateY(20px);
      transition: var(--transition);
      pointer-events: none;
    }

    .sticky-cta.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }

    .sticky-cta .btn {
      box-shadow: 0 8px 32px rgba(31,122,110,0.4);
    }

    /* =============================================
       HEADER
    ============================================= */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      max-width: 100vw;
      z-index: 1000;
      transition: var(--transition);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 28px;
      max-width: 1200px;
      margin: 0 auto;
      transition: padding 0.3s ease;
      position: relative;
      z-index: 1001;
    }

    .header-bg {
       position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(226,236,235,0.6);
      transition: var(--transition);
    }

    header.scrolled .header-bg {
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      border-bottom-color: var(--border);
      box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    }

    header.scrolled .header-inner { padding: 12px 28px; }

    .logo {
      height: 50px;
      width: auto;
      position: relative;
      z-index: 1;
      transition: height 0.3s ease;
    }


    @media (max-width: 1125px) {
      .logo { height: 40px; }
    }


    nav {
      position: relative;
      z-index: 1;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .nav-links a {
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 600;
      color: var(--slate);
      padding: 8px 16px;
      border-radius: 8px;
      transition: var(--transition);
      letter-spacing: 0.2px;
    }


    .nav-links a:hover {
      background: var(--green-faint);
      color: var(--green);
    }



    .nav-links .nav-cta {
      background: linear-gradient(135deg, var(--green), var(--green-mid));
      color: var(--white);
      border-color: transparent;
      box-shadow: 0 4px 12px rgba(31,122,110,0.25);
    }

    .nav-links .nav-cta:hover {
      background: linear-gradient(135deg, var(--green-deep), var(--green));
      color: var(--white);
    }

    /* Burger */
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      position: relative;
      z-index: 1001;
    }

    .burger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--slate);
      border-radius: 2px;
      transition: var(--transition);
    }

    header.scrolled .burger span { background: var(--navy); }

    .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger.open span:nth-child(2) { opacity: 0; }
    .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile nav */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 10px 40px rgba(0,0,0,0.1);
      padding: 80px 20px 20px;
      z-index: 999;
      max-height: 100vh;
      overflow-y: auto;
    }

    .mobile-nav.open { display: block; }

    .mobile-nav a {
      display: block;
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 600;
      color: var(--slate);
      padding: 14px 20px;
      border-radius: 10px;
      transition: var(--transition);
    }

    .mobile-nav a:hover { background: var(--green-faint); color: var(--green); }

    .mobile-nav .nav-cta {
      margin-top: 10px;
      background: linear-gradient(135deg, var(--green), var(--green-mid));
      color: var(--white) !important;
      text-align: center;
    }

    /* =============================================
       HERO
    ============================================= */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(10,30,50,0.82) 0%,
        rgba(15,45,40,0.65) 60%,
        rgba(31,122,110,0.4) 100%
      );
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 160px 0 100px;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.3; }
    }

    .hero-title {
      font-size: 60px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      letter-spacing: -1px;
      margin-bottom: 24px;
      max-width: 700px;
      font-family: "Plus Jakarta Sans";
    }

    .hero-title .accent {
      color: var(--green-light);
      position: relative;
    }

    .hero-desc {
      font-size: 18px;
      color: rgba(255,255,255,0.82);
      max-width: 520px;
      line-height: 1.8;
      margin-bottom: 44px;
    }

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

    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.5);
      font-size: 11px;
      font-family: var(--font-display);
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .hero-scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
      animation: scroll-line 2s ease-in-out infinite;
    }

    @keyframes scroll-line {
      0%   { transform: scaleY(0); transform-origin: top; }
      50%  { transform: scaleY(1); transform-origin: top; }
      51%  { transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* Trust strip under hero */
    .trust-strip {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 20px 0;
    }

    .trust-strip-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      color: var(--slate);
      white-space: nowrap;
    }

    .trust-item svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    .trust-divider {
      width: 1px;
      height: 24px;
      background: var(--border);
    }

    /* =============================================
       SECTION: 3 PILLARS
    ============================================= */
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .pillar-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 40px 32px;
      position: relative;
      transition: var(--transition);
      overflow: hidden;
    }

    .pillar-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--green), var(--green-mid));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .pillar-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-6px);
    }

    .pillar-card:hover::before { transform: scaleX(1); }

    .pillar-icon {
      width: 80px;
      height: 80px;
      background: var(--green-faint);
      border: 1px solid var(--border);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      background-size: 55%;
      background-repeat: no-repeat;
      background-position: center;
    }

    .pillar-number {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 12px;
    }

    .pillar-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .pillar-card p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.75;
    }

    /* =============================================
       SECTION: WHAT IS FREEDOMCLOUD
    ============================================= */
    .what-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .what-features {
      display: flex;
      flex-direction: column;
      gap: 28px;
      margin-top: 36px;
    }

    .what-feature {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .what-feature-icon {
      width: 60px;
      height: 60px;
      flex-shrink: 0;
      border-radius: 12px;
      background: var(--green-faint);
      border: 1px solid var(--border);
      background-size: 58%;
      background-repeat: no-repeat;
      background-position: center;
    }

    .what-feature-content h4 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--navy);
    }

    .what-feature-content p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* Visual card right side */
    .visual-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .visual-card-header {
      background: linear-gradient(135deg, var(--green-deep), var(--green));
      padding: 24px 28px;
    }

    .visual-card-header h3 {
      color: var(--white);
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .visual-card-header p {
      color: rgba(255,255,255,0.7);
      font-size: 13px;
    }

    .visual-card-body {
      padding: 8px 0;
    }

    .visual-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 28px;
      border-bottom: 1px solid var(--border);
      transition: background 0.2s ease;
    }

    .visual-item:last-child { border-bottom: none; }
    .visual-item:hover { background: var(--green-faint); }

    .visual-item-check {
      width: 28px;
      height: 28px;
      background: #dcfce7;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .visual-item-check svg {
      width: 14px;
      height: 14px;
      fill: #16a34a;
    }

    .visual-item span {
      font-size: 15px;
      font-weight: 500;
      color: var(--slate);
    }

    /* =============================================
       SECTION: COMPARISON (DARK)
    ============================================= */
    .comparison-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .comparison-intro p {
      color: rgba(255,255,255,0.75);
      font-size: 16px;
      line-height: 1.8;
      margin-top: 20px;
    }

    .comparison-table {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .comparison-col-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .col-head {
      padding: 18px 24px;
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    .col-head--positive {
      background: rgba(74,173,160,0.2);
      color: var(--green-light);
      border-right: 1px solid rgba(255,255,255,0.1);
    }

    .col-head--negative {
      background: rgba(220,38,38,0.15);
      color: #fca5a5;
    }

    .comparison-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-top: 1px solid rgba(255,255,255,0.08);
        hyphens: auto;
      word-break: break-word;
    }

    .comparison-cell {
      padding: 16px 24px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      line-height: 1.5;
    }

    .comparison-cell--positive {
      border-right: 1px solid rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.9);
    }

    .comparison-cell--negative {
      color: rgba(255,255,255,0.55);
    }

    .cell-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .cell-icon--check { background: rgba(74,173,160,0.25); }
    .cell-icon--cross { background: rgba(220,38,38,0.2); }

    .cell-icon svg { width: 12px; height: 12px; }
    .cell-icon--check svg { fill: var(--green-light); }
    .cell-icon--cross svg { fill: #fca5a5; }

    .comparison-cta {
      margin-top: 40px;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* =============================================
       SECTION: SOLUTIONS
    ============================================= */
    .solutions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 48px;
    }

    .solution-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      display: flex;
      align-items: center;
      gap: 18px;
      transition: var(--transition);
    }

    .solution-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-3px);
      border-color: var(--green-light);
    }

    .solution-icon {
      width: 52px;
      height: 52px;
      flex-shrink: 0;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    }

    .solution-card h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .solution-card p {
      font-size: 13px;
      color: var(--muted);
    }

    /* Included box */
    .included-box {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 40px;
      position: relative;
      overflow: hidden;
    }

    .included-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--green), var(--green-mid), var(--green-light));
    }

    .included-box-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 32px;
    }

    .included-box-header h3 {
      font-size: 20px;
      font-weight: 700;
    }

    .included-badge {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--green);
      background: var(--green-faint);
      border: 1px solid var(--green-light);
      padding: 4px 12px;
      border-radius: 20px;
    }

    .included-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px 48px;
    }

    .included-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 2px 0;
      border-bottom: 1px solid var(--border);
    }

    .included-item:last-child,
    .included-item:nth-last-child(2):nth-child(odd) {
      border-bottom: none;
    }

    .included-check {
      width: 22px;
      height: 22px;
      background: #dcfce7;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .included-check svg { width: 11px; height: 11px; fill: #16a34a; }

    .included-item-text strong {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 2px;
    }

    .included-item-text span {
      font-size: 13px;
      color: var(--muted);
    }

    /* =============================================
       SECTION: STEPS
    ============================================= */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      position: relative;
    }

    .steps-grid::before {
      content: '';
      position: absolute;
      top: 44px;
      left: calc(16.666% + 12px);
      right: calc(16.666% + 12px);
      height: 2px;
      background: linear-gradient(90deg, var(--green-light), var(--green-light));
      z-index: 0;
    }

    .step-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 40px 28px 32px;
      text-align: center;
      position: relative;
      transition: var(--transition);
    }

    .step-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-6px);
    }

    .step-num {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, var(--green), var(--green-mid));
      color: var(--white);
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 28px;
      box-shadow: 0 6px 20px rgba(31,122,110,0.3);
      position: relative;
      z-index: 1;
    }

    .step-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 20px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    }

    .step-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .step-duration {
      font-size: 13px;
      color: var(--green);
      font-weight: 600;
      font-family: var(--font-display);
      margin-bottom: 16px;
    }

    .step-card > p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .step-outputs {
      background: var(--off-white);
      border-radius: var(--radius-sm);
      padding: 16px 20px;
      text-align: left;
    }

    .step-output-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--slate);
      padding: 5px 0;
    }

    .step-output-item::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--green-mid);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* =============================================
       SECTION: SECURITY (GREEN)
    ============================================= */
    .security-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 0;
    }

    .security-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius);
      padding: 36px 28px;
      text-align: center;
      transition: var(--transition);
    }

    .security-card:hover {
      background: rgba(255,255,255,0.13);
      transform: translateY(-4px);
    }

    .security-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 20px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;

    }

    .security-card h3 {
      font-size: 19px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
    }

    .security-card p {
      font-size: 14px;
      color: rgba(255,255,255,0.7);
      line-height: 1.75;
    }

    /* =============================================
       SECTION: CONTACT
    ============================================= */
    .contact-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.contact-left {
  flex: 0 0 420px;
}

.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Persoon kaart */
.person-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.person-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-deep), var(--green), var(--green-mid), var(--green-light));
}

.person-photo-wrap {
  position: relative;
  padding: 40px 40px 0;
  display: flex;
  justify-content: center;
}

.person-photo-bg {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
}

.person-photo-placeholder {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid var(--white);
  box-shadow: 0 8px 32px rgba(31,122,110,0.25);
  background: linear-gradient(135deg, var(--green-faint), #d4f0eb);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.person-photo-placeholder svg { width: 80px; height: 80px; opacity: 0.35; }

/* Gebruik dit als je een echte foto hebt: */
.person-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid var(--white);
  box-shadow: 0 8px 32px rgba(31,122,110,0.25);
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.person-body { padding: 28px 40px 40px; text-align: center; }

.person-name { font-size: 24px; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 4px; }

.person-role {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.person-quote {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
  border-left: 3px solid var(--green-light);
  padding-left: 16px;
  text-align: left;
  margin-bottom: 28px;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: 6px 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 28px;
}

.availability-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease infinite;
}

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

.person-divider { border: none; border-top: 1px solid var(--border); margin: 0 0 28px; }

.person-contacts { display: flex; flex-direction: column; gap: 12px; }

.person-contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: left;
}

.person-contact-link:hover {
  background: var(--green-faint);
  border-color: var(--green-light);
  transform: translateX(4px);
}

.contact-link-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-link-icon svg { width: 18px; height: 18px; stroke: white; }

.contact-link-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-link-value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

/* CTA kaart rechts */
.cta-card {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  border-radius: 20px;
  padding: 44px;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.cta-card h3 { color: white; font-size: 26px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.3px; }
.cta-card p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.75; margin-bottom: 32px; }

.cta-benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.benefit-check {
  width: 24px; height: 24px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-check svg { width: 13px; height: 13px; }

.btn-white {
  background: white;
  color: var(--green-deep);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  width: 100%;
}

.btn-white:hover {
  background: var(--green-faint);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  color: var(--green-deep);
}

/* Bereikbaarheid kaartje */
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: var(--shadow);
}

.info-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card h4 span { font-size: 20px; }

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row-label { color: var(--muted); font-weight: 500; }
.info-row-value { font-family: var(--font-display); font-weight: 700; color: var(--navy); }

    .method-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--green), var(--green-mid));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .method-icon svg {
      width: 22px;
      height: 22px;
      stroke: var(--white);
    }

    .method-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .method-value {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
    }

    .method-value:hover { color: var(--green); }

    .contact-hours {
      margin-top: 24px;
      padding: 16px 20px;
      background: var(--off-white);
      border-radius: var(--radius-sm);
      font-size: 14px;
      color: var(--muted);
    }

    .contact-hours strong {
      display: block;
      color: var(--navy);
      font-weight: 700;
      margin-bottom: 4px;
    }

    /* =============================================
       FOOTER
    ============================================= */
    footer {
      background: var(--navy);
      color: rgba(255,255,255,0.6);
      padding: 48px 0 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand p {
      font-size: 14px;
      line-height: 1.7;
      margin-top: 16px;
      color: rgba(255,255,255,0.5);
      max-width: 300px;
    }

    .footer-logo { height: 36px; filter: brightness(0) invert(1) opacity(0.8); }

    .footer-col h4 {
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
      margin-bottom: 16px;
    }

    .footer-col a {
      display: block;
      font-size: 14px;
      color: rgba(255,255,255,0.5);
      padding: 5px 0;
      transition: color 0.2s ease;
    }

    .footer-col a:hover { color: var(--green-light); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
    }

    .footer-cta-row {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 1024px) {
      .pillars-grid { grid-template-columns: 1fr; }
      .what-grid { grid-template-columns: 1fr; gap: 48px; }
      .comparison-layout { grid-template-columns: 1fr; }
      .solutions-grid { grid-template-columns: 1fr 1fr; }
      .steps-grid { grid-template-columns: 1fr; }
      .steps-grid::before { display: none; }
      .security-grid { grid-template-columns: 1fr; }
      .contact-layout { flex-direction: column; }
      .contact-left { flex: 0 0 auto; width: 100%; max-width: 560px; margin: 0 auto; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .included-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      .section { padding: 70px 0; }
      .solutions-grid { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .burger { display: flex; }
      .trust-strip-inner { gap: 20px; }
      .trust-divider { display: none; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
      .comparison-layout { gap: 40px; }
      .sticky-cta { bottom: 16px; right: 16px; }
    }

@media (max-width: 1125px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}

/* ═══════════════════════════════════════════════════════
   TARIEVEN & VOORDELEN — PAGE-SPECIFIC STYLES
═══════════════════════════════════════════════════════ */

/* ── Page shell ── */
.t-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.t-topbar {
  border-bottom: 1px solid var(--border);
  padding: 140px 0 0;
  background: var(--white);
}

.t-topbar-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 28px;
  gap: 40px;
}

.t-breadcrumb {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.t-breadcrumb a { color: var(--green); font-weight: 600; }

.t-topbar h1 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1.5px;
  line-height: 1.05;
}
.t-topbar h1 em { font-style: normal; color: var(--green); }

.t-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Intro ── */
.kv-intro {
  padding: 60px 0 48px;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 64px;
  align-items: start;
}

.kv-intro-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--slate);
  max-width: 520px;
}
.kv-intro-text p + p { margin-top: 16px; }

/* Philosophy callout */
.kv-philosophy {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--green-faint);
  border-left: 3px solid var(--green);
  border-radius: 0 8px 8px 0;
}

.kv-philosophy p {
  font-size: 14px !important;
  font-style: italic;
  color: var(--navy) !important;
  line-height: 1.7 !important;
  max-width: none !important;
}

.kv-intro-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  filter: saturate(0.9);
}

/* ── Included section ── */
/* ── Wat je krijgt sectie ── */
.kv-included-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.kv-included-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 400px at 60% 50%, rgba(31,122,110,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.kv-included-header {
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.kv-included-header h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.kv-included-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
}

.kv-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.kv-benefit-card {
  padding: 28px 28px;
  background: var(--off-white);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}

.kv-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.kv-benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px;
}

.kv-benefit-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 860px) {
  .kv-benefits-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .kv-benefits-grid { grid-template-columns: 1fr; }
}

/* ── Pricing section ── */
.kv-pricing-section {
  padding: 100px 0 100px;
}

.kv-pricing-header {
  margin-bottom: 16px;
}

.kv-pricing-header h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.kv-pricing-header p {
  font-size: 15px;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.7;
}

/* Environment framing callout */
.kv-pricing-philosophy {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--green-faint);
  border: 1px solid var(--green-light);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 44px;
}

.kv-pricing-philosophy-icon {
  width: 40px;
  height: 40px;
  background: var(--green-faint);
  border: 1px solid var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kv-pricing-philosophy-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kv-pricing-philosophy-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.kv-pricing-philosophy-text span {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.65;
}

.kv-pricing-intro-label {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-bottom: 24px;
}
.pc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.pc-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.pc-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
  transform: translateY(-4px);
}

.pc-card.pc-featured {
  box-shadow: 0 8px 32px rgba(31,122,110,0.08);
}

.pc-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pc-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.pc-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.pc-audience {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 0;
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}

.pc-currency {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.pc-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.pc-period {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 20px;
}

.pc-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 18px;
}

.pc-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  margin-bottom: 24px;
}

.pc-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.pc-specs li:last-child { border-bottom: none; }

.pc-spec-key { color: var(--muted); }
.pc-spec-val { font-weight: 600; color: var(--navy); }

.pc-cta {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(31,122,110,0.2);
  transition: var(--transition);
}

.pc-cta:hover {
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  box-shadow: 0 6px 24px rgba(31,122,110,0.32);
  transform: translateY(-1px);
  color: var(--white);
}

.pc-opslag-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  padding: 4px 0 8px;
}

/* Op maat — brede liggende kaart */
.pc-custom {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 0;
  transition: var(--transition);
}

.pc-custom:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

.pc-custom-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.pc-custom-icon {
  width: 48px;
  height: 48px;
  background: rgba(74,173,160,0.2);
  border: 1px solid rgba(74,173,160,0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-light);
}

.pc-custom-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 0 40px;
  flex-shrink: 0;
}

.pc-custom-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pc-custom-spec span {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-display);
  font-weight: 700;
}

.pc-custom-spec strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.pc-custom-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.pc-custom-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
}

.pc-custom-cta {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  transition: var(--transition);
  white-space: nowrap;
}

.pc-custom-cta:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}

/* ── Pricing vergelijkingstabel ── */
.ptable-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.ptable {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

/* Kolombreedtes */
.ptable .ptable-feature-col { width: 28%; }
.ptable th, .ptable td { padding: 0; }

/* Header rij */
.ptable thead tr th {
  padding: 32px 24px 28px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  vertical-align: bottom;
  background: var(--white);
}

.ptable thead tr th.ptable-feature-col {
  text-align: left;
  background: var(--off-white);
}

.ptable thead tr th.ptable-featured {
  background: var(--green-faint);
  border-left: 2px solid var(--green);
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  position: relative;
}

.ptable thead tr th.ptable-custom-col {
  background: var(--navy);
}

.ptable-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.ptable-plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.ptable-plan-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.ptable-custom-col .ptable-plan-name {
  color: var(--white);
}

.ptable-price {
  display: flex;
  align-items: baseline;
  gap: 1px;
  margin: 6px 0 2px;
}

.ptable-currency {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.ptable-amount {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.ptable-price-custom {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin: 6px 0 2px;
}

.ptable-period {
  font-size: 11px;
  color: var(--muted);
}

.ptable-custom-col .ptable-period {
  color: rgba(255,255,255,0.45);
}

/* Body rijen */
.ptable tbody tr td {
  padding: 14px 24px;
  font-size: 14px;
  color: var(--slate);
  text-align: center;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.ptable tbody tr:last-child td {
  border-bottom: none;
}

.ptable tbody tr td.ptable-feature-col {
  text-align: left;
  background: var(--off-white);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ptable tbody tr td.ptable-label {
  text-align: left;
  background: var(--off-white);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.ptable-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ptable-label svg {
  width: 15px;
  height: 15px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.ptable tbody tr td.ptable-featured {
  background: rgba(31,122,110,0.04);
  border-left: 2px solid var(--green);
  border-right: 2px solid var(--green);
  font-weight: 600;
  color: var(--navy);
}

.ptable tbody tr td.ptable-custom-col {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}

.ptable tbody tr td.ptable-custom-col strong {
  color: var(--white);
}

/* Groepheader rijen */
.ptable-group-header td {
  background: var(--navy) !important;
  color: rgba(255,255,255,0.5) !important;
  font-family: var(--font-display) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  text-align: left !important;
  padding: 10px 24px !important;
  border-bottom: none !important;
}

/* Check iconen */
.ptable-check {
  font-size: 13px;
  color: var(--slate);
}

.ptable-icon-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--green-faint);
  border: 1px solid var(--green-light);
  border-radius: 50%;
  font-size: 11px;
  color: var(--green);
  font-weight: 800;
}

.ptable-custom-col .ptable-icon-check {
  background: rgba(74,173,160,0.2);
  border-color: rgba(74,173,160,0.4);
  color: var(--green-light);
}

/* CTA rij */
.ptable-cta-row td {
  padding: 24px !important;
  border-bottom: none !important;
  background: var(--white) !important;
}

.ptable-cta-row td.ptable-featured {
  background: var(--green-faint) !important;
}

.ptable-cta-row td.ptable-custom-col {
  background: var(--navy) !important;
}

.ptable-cta-btn {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  border: 1.5px solid var(--border);
  color: var(--navy);
  transition: var(--transition);
}

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

.ptable-cta-featured {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: var(--white) !important;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(31,122,110,0.25);
}

.ptable-cta-featured:hover {
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  box-shadow: 0 6px 24px rgba(31,122,110,0.35);
  transform: translateY(-1px);
  color: var(--white) !important;
  border-color: transparent;
}

.ptable-cta-custom {
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: var(--white) !important;
}

.ptable-cta-custom:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: var(--white) !important;
}

/* Zebra striping */
.ptable tbody tr:nth-child(even):not(.ptable-group-header):not(.ptable-cta-row) td:not(.ptable-featured):not(.ptable-custom-col):not(.ptable-label) {
  background: var(--off-white);
}

@media (max-width: 860px) {
  .ptable-wrap { font-size: 13px; }
  .ptable thead tr th, .ptable tbody tr td { padding: 12px 14px; }
  .ptable .ptable-feature-col { width: 22%; }
  .ptable-amount { font-size: 28px; }
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
  transform: translateY(-4px);
}

/* Featured / recommended card */
.pricing-card.pricing-featured {
  border-color: var(--green);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(31,122,110,0.12);
}

.pricing-card.pricing-featured:hover {
  box-shadow: 0 16px 48px rgba(31,122,110,0.2);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.pricing-audience {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}

.pricing-currency {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.pricing-period {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 24px;
}

/* Capacity block — environment specs */
.pricing-capacity {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 24px;
}

.pricing-capacity-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.pricing-capacity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}

.pricing-capacity-row + .pricing-capacity-row {
  border-top: 1px solid var(--border);
}

.pricing-capacity-key {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}

.pricing-capacity-key svg {
  width: 13px;
  height: 13px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.pricing-capacity-val {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--slate);
}

.pricing-feature svg {
  width: 15px;
  height: 15px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(31,122,110,0.25);
  transition: var(--transition);
}

.pricing-cta:hover {
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  box-shadow: 0 6px 24px rgba(31,122,110,0.35);
  transform: translateY(-1px);
  color: var(--white);
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

/* Op maat kaart */
.pricing-card.pricing-custom {
  background: var(--navy);
  border-color: var(--navy);
}
.pricing-card.pricing-custom .pricing-label,
.pricing-card.pricing-custom .pricing-audience,
.pricing-card.pricing-custom .pricing-period,
.pricing-card.pricing-custom .pricing-feature {
  color: rgba(255,255,255,0.55);
}
.pricing-card.pricing-custom h3 { color: var(--white); }
.pricing-card.pricing-custom .pricing-divider { border-color: rgba(255,255,255,0.1); }
.pricing-card.pricing-custom .pricing-capacity {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.pricing-card.pricing-custom .pricing-capacity-label { color: rgba(255,255,255,0.35); }
.pricing-card.pricing-custom .pricing-capacity-row { border-color: rgba(255,255,255,0.08); }
.pricing-card.pricing-custom .pricing-capacity-key { color: rgba(255,255,255,0.45); }
.pricing-card.pricing-custom .pricing-capacity-key svg { stroke: var(--green-light); }
.pricing-card.pricing-custom .pricing-capacity-val { color: var(--white); }
.pricing-card.pricing-custom .pricing-feature svg { stroke: var(--green-light); }
.pricing-custom-amount {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  padding: 8px 0;
  display: block;
}
.pricing-cta-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  box-shadow: none;
  color: var(--white) !important;
}
.pricing-cta-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  box-shadow: none;
  color: var(--white) !important;
}

/* Dedicated server teaser */
.kv-dedicated {
  margin-top: 48px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--off-white);
}

.kv-dedicated-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.kv-dedicated-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
}

.kv-dedicated-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1.5px solid var(--green);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  transition: var(--transition);
  white-space: nowrap;
}

.kv-dedicated-cta:hover {
  background: var(--green);
  color: var(--white);
}

.kv-dedicated-cta svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Strategic differentiators ── */
.kv-differentiators {
  padding: 100px 0;
  background: var(--off-white);
}

.kv-diff-header {
  margin-bottom: 48px;
}

.kv-diff-header h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.kv-diff-header p {
  font-size: 15px;
  color: var(--muted);
}

.kv-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.kv-diff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
}

.kv-diff-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
  transform: translateY(-4px);
}

.kv-diff-icon {
  width: 52px;
  height: 52px;
  background: var(--green-faint);
  border: 1px solid var(--green-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kv-diff-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green);
}

.kv-diff-card-header {
  display: flex;
  align-items: center;
  gap: 16px;

}

.kv-diff-card-header .kv-diff-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.kv-diff-card-header h3 {
  margin-bottom: 0;
}

.kv-diff-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.kv-diff-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Sustainability section ── */
.kv-sustainability {
  padding: 100px 0;
  background: #0a2e1a;
  position: relative;
  overflow: hidden;
}

.kv-sustainability::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 30%, rgba(16, 185, 100, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 500px 350px at 80% 70%, rgba(5, 150, 70, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.kv-sust-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #22c55e;
  margin-bottom: 16px;
}

.kv-sust-header {
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.kv-sust-header h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.kv-sust-header h2 em {
  font-style: normal;
  color: #4ade80;
}

.kv-sust-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  line-height: 1.8;
}

.kv-sust-goal {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 12px;
  padding: 20px 28px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.kv-sust-goal-icon {
  width: 52px;
  height: 52px;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(74, 222, 128, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #4ade80;
}

.kv-sust-goal strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.kv-sust-goal span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.kv-sust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.kv-sust-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}

.kv-sust-card:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(74, 222, 128, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.kv-sust-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #4ade80;
}

.kv-sust-card-icon svg {
  width: 22px;
  height: 22px;
}

.kv-sust-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.kv-sust-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ── CTA strip ── */
.kv-cta-strip {
  background: var(--green-faint);
  border-top: 1px solid var(--green-light);
  padding: 40px 0;
}

.kv-cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.kv-cta-strip p {
  font-size: 16px;
  color: var(--slate);
}

.kv-cta-strip p strong {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 800;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .kv-intro { grid-template-columns: 1fr; gap: 32px; }
  .kv-intro-img { order: -1; }
  .kv-included-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .kv-diff-grid { grid-template-columns: 1fr; }
  .kv-cta-strip-inner { flex-direction: column; text-align: center; }
  .kv-dedicated { flex-direction: column; gap: 20px; }

  /* pc-grid: 3 kolommen → 1 kolom, geen overflow */
  .pc-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  /* pc-custom: horizontaal → verticaal */
  .pc-custom {
    flex-direction: column;
    align-items: stretch;
    padding: 28px 20px;
    gap: 20px;
  }
  .pc-custom-left {
    flex-direction: column;
    gap: 12px;
  }
  .pc-custom-specs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 24px;
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 16px 0;
  }
  .pc-custom-right {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .pc-custom-price { white-space: normal; font-size: 17px; }
}

@media (max-width: 820px) {
  .kv-sust-grid { grid-template-columns: 1fr 1fr !important; }
  .kv-sust-goal { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
  .kv-included-grid { grid-template-columns: 1fr; }
  .kv-sust-grid { grid-template-columns: 1fr !important; }

  /* pc-custom op kleine schermen: prijs boven knop */
  .pc-custom-right {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .pc-custom-cta { text-align: center; }
}

.kv-sust-compact {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.kv-sust-compact-left {
  flex: 1;
}

.kv-sust-compact-left h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.kv-sust-compact-left h2 em {
  font-style: normal;
  color: #4ade80;
}

.kv-sust-compact-left p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 520px;
}

.kv-sust-compact-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex-shrink: 0;
}

.kv-sust-stat {
  text-align: right;
}

.kv-sust-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
  letter-spacing: -1px;
}

.kv-sust-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-display);
  font-weight: 700;
}

@media (max-width: 820px) {
  .kv-sust-compact { flex-direction: column; gap: 40px; }
  .kv-sust-compact-stats { flex-direction: row; width: 100%; justify-content: space-between; }
  .kv-sust-stat { text-align: left; }
}

.kv-sust-note {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  font-style: italic;
}

.kv-sust-footer {
  margin-top: 32px;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(74,222,128,0.15);
}

.kv-sust-footer span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}
