  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --teal:       #0d9488;
    --teal-dark:  #0f766e;
    --teal-lt:    #ccfbf1;
    --teal-mid:   #5eead4;
    --coral:      #f0654a;
    --coral-dark: #dc4c32;
    --coral-lt:   #ffe4de;
    --coral-mid:  #fb8e78;
    --bg:         #f0faf9;
    --dark:       #0d1f1e;
    --mid:        #4b6b68;
    --light:      #8faead;
    --white:      #ffffff;
    --border:     #d0eae8;
  }

  body {
    font-family: 'Manrope', sans-serif;
    background: var(--bg);
    color: var(--dark);
    min-height: 100vh;
  }
 /* ══ Section ══ */
  .vm {
    padding: 100px 60px;
    max-width: 1260px;
    margin: 0 auto;
    position: relative;
  }

  /* faint grid texture */
  .vm::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--border) 1px, transparent 1px),
      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: .35;
    pointer-events: none;
  }

  /* ══ Heading ══ */
  .vm-head {
    text-align: center;
    margin-bottom: 80px;
    position: relative; z-index: 1;
    animation: fadeUp .7s ease both;
  }

  .vm-head .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 6px 20px 6px 8px;
    margin-bottom: 22px;
    box-shadow: 0 2px 12px rgba(13,148,136,.08);
  }
  .pill-dot {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--coral));
    display: flex; align-items: center; justify-content: center;
  }
  .pill-dot svg { width: 14px; height: 14px; fill: #fff; }
  .vm-head .pill span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid);
  }

  .vm-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--dark);
    margin-bottom: 16px;
  }
  .vm-head h2 .t { color: var(--teal); }
  .vm-head h2 .c { color: var(--coral); font-style: italic; }

  .vm-head p {
    color: var(--mid);
    font-size: 15px;
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.85;
    font-weight: 300;
  }

  /* ══ Cards wrapper ══ */
  .vm-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    perspective: 1200px;
    position: relative; z-index: 1;
  }

  /* ══ 3D Card ══ */
  .vm-card {
    border-radius: 28px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform .6s cubic-bezier(.23,1,.32,1), box-shadow .6s ease;
    animation: fadeUp .7s ease both;
    cursor: default;
  }
  .vm-card:nth-child(1) { animation-delay: .1s; transform: rotateX(4deg) rotateY(-6deg); }
  .vm-card:nth-child(2) { animation-delay: .2s; transform: rotateX(4deg) rotateY(6deg); }

  .vm-card:hover {
    transform: rotateX(0deg) rotateY(0deg) translateY(-12px) !important;
  }

  /* Card inner surface */
  .card-surface {
    border-radius: 28px;
    padding: 52px 44px 44px;
    position: relative;
    overflow: hidden;
    height: 100%;
  }

  /* Teal card */
  .teal-card .card-surface {
    background: var(--white);
    border: 2px solid var(--teal-lt);
    box-shadow:
      0 2px 0 var(--teal-mid),
      0 4px 0 var(--teal),
      0 6px 0 var(--teal-dark),
      0 20px 60px rgba(13,148,136,.18);
  }
  .teal-card:hover .card-surface {
    box-shadow:
      0 2px 0 var(--teal-mid),
      0 4px 0 var(--teal),
      0 40px 80px rgba(13,148,136,.22);
  }

  /* Coral card */
  .coral-card .card-surface {
    background: var(--white);
    border: 2px solid var(--coral-lt);
    box-shadow:
      0 2px 0 var(--coral-mid),
      0 4px 0 var(--coral),
      0 6px 0 var(--coral-dark),
      0 20px 60px rgba(240,101,74,.18);
  }
  .coral-card:hover .card-surface {
    box-shadow:
      0 2px 0 var(--coral-mid),
      0 4px 0 var(--coral),
      0 40px 80px rgba(240,101,74,.22);
  }

  /* Big BG letter */
  .bg-letter {
    position: absolute;
    top: -10px; right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 160px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    opacity: .045;
  }
  .teal-card  .bg-letter { color: var(--teal); }
  .coral-card .bg-letter { color: var(--coral); }

  /* Top accent strip */
  .card-strip {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    border-radius: 28px 28px 0 0;
  }
  .teal-card  .card-strip { background: linear-gradient(90deg, var(--teal), var(--teal-mid)); }
  .coral-card .card-strip { background: linear-gradient(90deg, var(--coral), var(--coral-mid)); }

  /* Icon */
  .card-icon {
    width: 72px; height: 72px;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
    position: relative; z-index: 1;
    transition: transform .4s ease;
  }
  .vm-card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }
  .teal-card  .card-icon { background: var(--teal-lt); }
  .coral-card .card-icon { background: var(--coral-lt); }
  .card-icon svg { width: 34px; height: 34px; }
  .teal-card  .card-icon svg { fill: var(--teal); }
  .coral-card .card-icon svg { fill: var(--coral); }

  /* Label */
  .card-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative; z-index: 1;
  }
  .teal-card  .card-label { color: var(--teal); }
  .coral-card .card-label { color: var(--coral); }

  /* Title */
  .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 6px;
    position: relative; z-index: 1;
  }

  /* Subtitle italic */
  .card-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    position: relative; z-index: 1;
  }
  .teal-card  .card-sub { color: var(--teal); }
  .coral-card .card-sub { color: var(--coral); }

  /* Divider */
  .card-line {
    height: 2px;
    width: 60px;
    border-radius: 2px;
    margin-bottom: 22px;
    transition: width .4s ease;
    position: relative; z-index: 1;
  }
  .teal-card  .card-line { background: linear-gradient(90deg, var(--teal), var(--teal-lt)); }
  .coral-card .card-line { background: linear-gradient(90deg, var(--coral), var(--coral-lt)); }
  .vm-card:hover .card-line { width: 100px; }

  /* Desc */
  .card-desc {
    font-size: 14.5px;
    color: var(--mid);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 30px;
    position: relative; z-index: 1;
  }

  /* Points */
  .card-points {
    display: flex;
    flex-direction: column;
    gap: 13px;
    position: relative; z-index: 1;
  }
  .pt {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    color: var(--mid);
    line-height: 1.6;
  }
  .pt-num {
    width: 24px; height: 24px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .teal-card  .pt-num { background: var(--teal-lt); color: var(--teal-dark); }
  .coral-card .pt-num { background: var(--coral-lt); color: var(--coral-dark); }

  /* ══ Bottom quote strip ══ */
  .card-quote {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1.5px dashed var(--border);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 14px;
    line-height: 1.7;
    position: relative; z-index: 1;
  }
  .teal-card  .card-quote { color: var(--teal); }
  .coral-card .card-quote { color: var(--coral); }
  .card-quote::before {
    content: '"';
    font-size: 48px;
    line-height: .6;
    vertical-align: -18px;
    margin-right: 4px;
    opacity: .3;
  }

  /* ══ Core values ══ */
  .vm-values {
    margin-top: 48px;
    position: relative; z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeUp .7s .35s ease both;
  }
  .values-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--light);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .values-bar {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(90deg, var(--border), transparent);
  }
  .values-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .chip {
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 600;
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--mid);
    cursor: default;
    transition: all .3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
  }
  .chip:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.08); }
  .chip.t:hover { background: var(--teal-lt); border-color: var(--teal-mid); color: var(--teal-dark); }
  .chip.c:hover { background: var(--coral-lt); border-color: var(--coral-mid); color: var(--coral-dark); }

  /* ══ Stats ══ */
  .vm-stats {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    position: relative; z-index: 1;
    animation: fadeUp .7s .45s ease both;
  }
  .stat {
    background: var(--white);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    border: 1.5px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .stat:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.09); }
  .stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat:nth-child(odd)  strong { color: var(--teal); }
  .stat:nth-child(even) strong { color: var(--coral); }
  .stat span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--light);
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 960px) {
    .vm-cards { grid-template-columns: 1fr; perspective: none; }
    .vm-card:nth-child(1),
    .vm-card:nth-child(2) { transform: none !important; }
    .vm { padding: 60px 28px; }
    .vm-stats { grid-template-columns: repeat(2,1fr); }
    .vm-values { flex-wrap: wrap; }
  }














   /* ── Section ── */
  .wcu {
    padding: 90px 60px;
    max-width: 1280px;
    margin: 0 auto;
  }

  /* ── Heading ── */
  .wcu-head {
    text-align: center;
    margin-bottom: 64px;
    animation: fadeUp .7s ease both;
  }

  .wcu-head .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--p1);
    margin-bottom: 18px;
  }
  .wcu-head .eyebrow span {
    display: inline-block;
    width: 32px; height: 2px;
    background: var(--p1);
    border-radius: 2px;
  }

  .wcu-head h2 {
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.2;
  }
  .wcu-head h2 em {
    font-style: normal;
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .wcu-head p {
    color: var(--text-mid);
    font-size: 15px;
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.85;
    font-weight: 400;
  }

  /* ── Grid ── */
  .wcu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }

  /* ── Card ── */
  .wcu-card {
    background: var(--bg);
    border-radius: 28px;
    padding: 36px 24px 32px;
    text-align: center;
    position: relative;

    /* Neumorphism shadow */
    box-shadow:
      8px 8px 20px var(--shadow-dark),
      -8px -8px 20px var(--shadow-light);

    transition: box-shadow .4s ease, transform .4s ease;
    animation: fadeUp .6s ease both;
    cursor: default;
  }

  .wcu-card:nth-child(1){animation-delay:.05s} .wcu-card:nth-child(2){animation-delay:.10s}
  .wcu-card:nth-child(3){animation-delay:.15s} .wcu-card:nth-child(4){animation-delay:.20s}
  .wcu-card:nth-child(5){animation-delay:.25s} .wcu-card:nth-child(6){animation-delay:.30s}
  .wcu-card:nth-child(7){animation-delay:.35s} .wcu-card:nth-child(8){animation-delay:.40s}

  /* Hover — inset pressed effect */
  .wcu-card:hover {
    box-shadow:
      inset 6px 6px 14px var(--shadow-dark),
      inset -6px -6px 14px var(--shadow-light);
    transform: scale(0.98);
  }

  /* ── Icon circle ── */
  .card-icon-wrap {
    width: 76px; height: 76px;
    border-radius: 50%;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform .4s ease;

    /* inner neumorphic circle */
    box-shadow:
      5px 5px 12px var(--shadow-dark),
      -5px -5px 12px var(--shadow-light);
  }
  .wcu-card:hover .card-icon-wrap {
    transform: translateY(-4px) rotate(8deg);
    box-shadow:
      inset 4px 4px 10px var(--shadow-dark),
      inset -4px -4px 10px var(--shadow-light);
  }

  .card-icon-wrap svg {
    width: 32px; height: 32px;
    transition: transform .4s ease;
  }
  .wcu-card:hover .card-icon-wrap svg { transform: scale(1.15); }

  /* Icon bg pastel tints */
  .c1 .card-icon-wrap { background: #ede9fe; }
  .c2 .card-icon-wrap { background: #dbeafe; }
  .c3 .card-icon-wrap { background: #d1fae5; }
  .c4 .card-icon-wrap { background: #fef3c7; }
  .c5 .card-icon-wrap { background: #fee2e2; }
  .c6 .card-icon-wrap { background: #fce7f3; }
  .c7 .card-icon-wrap { background: #e0f2fe; }
  .c8 .card-icon-wrap { background: #ecfccb; }

  .c1 svg { fill: var(--p1); }
  .c2 svg { fill: var(--p2); }
  .c3 svg { fill: var(--p3); }
  .c4 svg { fill: var(--p4); }
  .c5 svg { fill: var(--p5); }
  .c6 svg { fill: var(--p6); }
  .c7 svg { fill: var(--p7); }
  .c8 svg { fill: var(--p8); }

  /* ── Divider dot line ── */
  .card-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 16px auto 14px;
  }
  .card-divider span {
    display: block;
    height: 3px;
    border-radius: 3px;
    transition: width .4s ease, opacity .4s ease;
  }
  .card-divider .dot-main { width: 24px; opacity: 1; }
  .card-divider .dot-side { width: 8px; opacity: 0.4; }
  .wcu-card:hover .card-divider .dot-main { width: 36px; }
  .wcu-card:hover .card-divider .dot-side { opacity: 0.7; }

  .c1 .card-divider span { background: var(--p1); }
  .c2 .card-divider span { background: var(--p2); }
  .c3 .card-divider span { background: var(--p3); }
  .c4 .card-divider span { background: var(--p4); }
  .c5 .card-divider span { background: var(--p5); }
  .c6 .card-divider span { background: var(--p6); }
  .c7 .card-divider span { background: var(--p7); }
  .c8 .card-divider span { background: var(--p8); }

  /* Text */
  .card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
  }
  .card-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.8;
    font-weight: 400;
  }

  /* ── Bottom stats bar ── */
  .wcu-stats {
    margin-top: 52px;
    display: flex;
    justify-content: center;
    gap: 28px;
    animation: fadeUp .7s .5s ease both;
  }
  .stat-pill {
    background: var(--bg);
    border-radius: 50px;
    padding: 18px 36px;
    text-align: center;
    box-shadow:
      6px 6px 16px var(--shadow-dark),
      -6px -6px 16px var(--shadow-light);
    min-width: 160px;
  }
  .stat-pill strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 4px;
  }
  .stat-pill span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 1024px) {
    .wcu-grid { grid-template-columns: repeat(2, 1fr); }
    .wcu { padding: 60px 32px; }
    .wcu-stats { flex-wrap: wrap; }
  }
  @media (max-width: 560px) {
    .wcu-grid { grid-template-columns: 1fr; }
    .wcu { padding: 48px 20px; }
  }
   :root {
    --bg: #e8edf5;
    --shadow-dark: #c2cad8;
    --shadow-light: #ffffff;
    --text-dark: #3a4060;
    --text-mid: #7580a0;
    --text-light: #a0aac0;

    /* pastel icon colors */
    --p1: #a78bfa; /* violet */
    --p2: #60a5fa; /* blue */
    --p3: #34d399; /* green */
    --p4: #fbbf24; /* amber */
    --p5: #f87171; /* red */
    --p6: #f472b6; /* pink */
    --p7: #38bdf8; /* sky */
    --p8: #a3e635; /* lime */
  }
