/* =============================================
       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; }
}
