
    :root {
      --ink: #0c1730;
      --ink-2: #253247;
      --muted: #6d7889;
      --line: #e7ebf0;
      --soft: #f7f9fb;
      --white: #ffffff;
      --green: #10a36d;
      --green-dark: #087a52;
      --green-soft: #e9f8f1;
      --orange: #f06a2b;
      --orange-dark: #c94f19;
      --orange-soft: #fff1e9;
      --shadow: 0 22px 60px rgba(20, 34, 52, .10);
      --shadow-soft: 0 14px 36px rgba(20, 34, 52, .08);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --radius-md: 15px;
      --container: 1240px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      color: var(--ink);
      background: #fff;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    a { color: inherit; text-decoration: none; }
    button, a { -webkit-tap-highlight-color: transparent; }
    img { max-width: 100%; display: block; }

    .container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
    .section { padding: 94px 0; }
    .section-soft { background: var(--soft); }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 13px;
      border-radius: 999px;
      background: var(--green-soft);
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 750;
      letter-spacing: .01em;
    }
    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
    }
    .section-head { max-width: 720px; margin: 0 auto 46px; text-align: center; }
    .section-head h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.07; letter-spacing: -.035em; }
    .section-head p { margin: 16px auto 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
    .accent { color: var(--orange); }
    .green { color: var(--green-dark); }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255,255,255,.90);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(231,235,240,.82);
    }
    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }
    .brand { display: inline-flex; align-items: center; min-width: 130px; }
    .brand-logo { width: 116px; height: auto; display: block; }
    .nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 650; }
    .nav-links a { color: var(--ink-2); transition: color .2s ease; }
    .nav-links a:hover { color: #000; }
    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .btn {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 1px solid transparent;
      border-radius: 12px;
      padding: 0 19px;
      font-size: 14px;
      font-weight: 750;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
      cursor: pointer;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-dark { background: var(--ink); color: white; box-shadow: 0 12px 28px rgba(12,23,48,.14); }
    .btn-dark:hover { box-shadow: 0 16px 36px rgba(12,23,48,.22); }
    .btn-green { background: linear-gradient(135deg, var(--green), #07865a); color: white; box-shadow: 0 15px 34px rgba(16,163,109,.24); }
    .btn-outline { border-color: #d8dee7; background: #fff; color: var(--ink); }
    .btn-lg { min-height: 56px; padding: 0 25px; font-size: 16px; border-radius: 14px; }
    .menu-btn { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: white; border-radius: 12px; font-size: 21px; }

    /* Hero */
    .hero {
      position: relative;
      overflow: hidden;
      padding: 82px 0 44px;
      background:
        radial-gradient(circle at 79% 24%, rgba(16,163,109,.08), transparent 30%),
        radial-gradient(circle at 93% 55%, rgba(240,106,43,.055), transparent 24%),
        linear-gradient(#fff, #fff);
    }
    .hero::after {
      content: "";
      position: absolute;
      right: -60px;
      top: 125px;
      width: 360px;
      height: 360px;
      background-image: radial-gradient(#d8e0e8 1.1px, transparent 1.1px);
      background-size: 20px 20px;
      opacity: .32;
      mask-image: radial-gradient(circle, black 0 42%, transparent 72%);
      pointer-events: none;
    }
    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      align-items: center;
      gap: 62px;
      min-height: 600px;
    }
    .hero-copy { max-width: 560px; }
    .hero h1 {
      margin: 22px 0 20px;
      max-width: 610px;
      font-size: clamp(48px, 5.2vw, 76px);
      line-height: .98;
      letter-spacing: -.058em;
      font-weight: 820;
    }
    .hero h1 .accent { display: block; }
    .hero-lead {
      margin: 0;
      max-width: 550px;
      color: #3d495b;
      font-size: 19px;
      line-height: 1.68;
    }
    .hero-lead strong { color: var(--green-dark); font-weight: 800; }
    .hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
    .trust-row { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 24px; }
    .trust-item { display: flex; gap: 10px; align-items: flex-start; min-width: 125px; color: var(--ink-2); font-size: 13px; line-height: 1.35; font-weight: 650; }
    .trust-icon {
      flex: 0 0 34px;
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 11px;
      color: var(--green-dark);
      background: var(--green-soft);
      border: 1px solid #d3f0e3;
      font-size: 17px;
    }

    /* Animated KPI stage */
    .hero-stage {
      position: relative;
      min-height: 545px;
      display: grid;
      place-items: center;
      isolation: isolate;
    }
    .hero-stage::before {
      content: "";
      position: absolute;
      inset: 10% 1% 8% 11%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(16,163,109,.11), rgba(16,163,109,0) 66%);
      z-index: -2;
    }
    .dashboard-preview {
      position: absolute;
      left: 50%;
      bottom: 24px;
      width: min(580px, 88%);
      transform: translateX(-48%);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid #e6eaef;
      box-shadow: 0 28px 70px rgba(20,34,52,.14);
      background: #fff;
      opacity: .92;
    }
    .dashboard-preview::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(255,255,255,.42), rgba(255,255,255,0) 44%);
      pointer-events: none;
    }
    .dashboard-preview img { width: 100%; height: 100%; object-fit: cover; }
    .preview-caption {
      position: absolute;
      right: 13px;
      bottom: 11px;
      z-index: 2;
      padding: 7px 10px;
      border-radius: 10px;
      background: rgba(255,255,255,.92);
      border: 1px solid #e9edf2;
      color: var(--muted);
      font-size: 11px;
      font-weight: 750;
      backdrop-filter: blur(8px);
    }
    .kpi-shell {
      position: absolute;
      top: 42px;
      left: 50%;
      width: min(500px, 88%);
      transform: translateX(-50%);
      z-index: 5;
    }
    .kpi-card {
      position: relative;
      width: 100%;
      min-height: 224px;
      padding: 30px 32px 28px;
      border-radius: 26px;
      background: rgba(255,255,255,.98);
      border: 1px solid #e8ecf1;
      box-shadow: 0 28px 70px rgba(18, 33, 50, .16);
      overflow: hidden;
      transform-origin: 50% 50%;
    }
    .kpi-card::before {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      right: -50px;
      top: -70px;
      border-radius: 50%;
      background: var(--kpi-soft, var(--green-soft));
      opacity: .88;
    }
    .kpi-top { position: relative; z-index: 2; display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
    .kpi-label { color: #7a8697; font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
    .kpi-value { margin-top: 9px; color: var(--kpi-color, var(--green-dark)); font-size: clamp(35px, 4vw, 52px); line-height: 1; font-weight: 850; letter-spacing: -.045em; }
    .kpi-detail { margin-top: 10px; color: var(--muted); font-size: 14px; font-weight: 600; }
    .kpi-icon {
      position: relative;
      z-index: 2;
      flex: 0 0 50px;
      width: 50px;
      height: 50px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      color: var(--kpi-color, var(--green-dark));
      background: var(--kpi-soft, var(--green-soft));
      font-size: 24px;
    }
    .sparkline { position: relative; z-index: 2; height: 58px; margin-top: 22px; color: var(--kpi-color, var(--green-dark)); }
    .sparkline svg { width: 100%; height: 100%; overflow: visible; }
    .sparkline path { fill: none; stroke: currentColor; stroke-width: 2.7; stroke-linecap: round; stroke-linejoin: round; }
    .kpi-card.enter { animation: kpiEnter .56s cubic-bezier(.2,.75,.25,1) both; }
    .kpi-card.leave { animation: kpiLeave .36s ease both; }
    @keyframes kpiEnter { from { opacity: 0; transform: translateY(18px) scale(.965); } to { opacity: 1; transform: translateY(0) scale(1); } }
    @keyframes kpiLeave { from { opacity: 1; transform: translateY(0) scale(1); } to { opacity: 0; transform: translateY(-12px) scale(.975); } }
    .kpi-nav { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 13px; }
    .kpi-dot { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 99px; background: #d4dae2; cursor: pointer; transition: width .25s ease, background .25s ease; }
    .kpi-dot.active { width: 24px; background: var(--green); }
    .stage-note {
      position: absolute;
      left: 32px;
      bottom: 78px;
      z-index: 6;
      max-width: 175px;
      padding: 11px 13px;
      border-radius: 13px;
      background: rgba(255,255,255,.96);
      border: 1px solid #e8edf2;
      box-shadow: var(--shadow-soft);
      color: var(--ink-2);
      font-size: 12px;
      line-height: 1.45;
      font-weight: 650;
    }
    .stage-note strong { display: block; margin-bottom: 3px; color: var(--ink); }

    /* Logos */
    .social-proof { padding: 32px 0 40px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
    .proof-label { text-align: center; color: #91a0b3; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
    .proof-copy { margin: 9px auto 0; text-align: center; color: var(--muted); font-size: 13px; line-height: 1.5; }
    .logo-row { margin-top: 24px; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 34px; align-items: center; }
    .client-logo { min-height: 58px; display: flex; align-items: center; justify-content: center; padding: 4px 8px; }
    .client-logo img { display: block; width: auto; max-width: 148px; max-height: 48px; opacity: .48; filter: grayscale(1); transition: opacity .22s ease, filter .22s ease, transform .22s ease; }
    .client-logo:hover img { opacity: 1; filter: grayscale(0); transform: translateY(-1px); }

    /* Problem cards */
    .problem-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; }
    .problem-card {
      min-height: 222px;
      padding: 22px 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: white;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
    .problem-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; margin-bottom: 18px; background: var(--green-soft); color: var(--green-dark); font-size: 18px; }
    .problem-card:nth-child(2) .problem-icon { background: #fff0f0; color: #e34747; }
    .problem-card:nth-child(3) .problem-icon { background: var(--orange-soft); color: var(--orange-dark); }
    .problem-card:nth-child(4) .problem-icon { background: #eef2ff; color: #4f68d9; }
    .problem-card:nth-child(5) .problem-icon { background: #f4efff; color: #7d54c6; }
    .problem-card h3 { margin: 0; font-size: 16px; line-height: 1.35; }
    .problem-card p { margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

    /* Solution */
    .solution-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 58px; align-items: center; }
    .solution-copy h2 { margin: 14px 0 18px; font-size: clamp(36px, 4vw, 52px); line-height: 1.03; letter-spacing: -.045em; }
    .solution-copy > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
    .check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 13px; }
    .check-list li { position: relative; padding-left: 29px; color: var(--ink-2); font-size: 15px; font-weight: 650; }
    .check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: white; font-size: 11px; font-weight: 900; }
    .product-frame {
      position: relative;
      padding: 26px;
      border-radius: 28px;
      background: linear-gradient(135deg, rgba(16,163,109,.10), rgba(255,255,255,.80) 52%, rgba(240,106,43,.09));
      border: 1px solid #e2eee8;
    }
    .product-shot { border: 1px solid #e4e8ed; border-radius: 18px; overflow: hidden; background: white; box-shadow: var(--shadow-soft); }
    .float-chip {
      position: absolute;
      padding: 12px 14px;
      border-radius: 13px;
      background: rgba(255,255,255,.96);
      border: 1px solid #e8edf2;
      box-shadow: var(--shadow-soft);
      font-size: 12px;
      line-height: 1.35;
      font-weight: 650;
    }
    .float-chip strong { display: block; margin-bottom: 2px; font-size: 17px; }
    .chip-a { right: -8px; top: 45px; }
    .chip-b { left: 9px; bottom: 27px; }

    /* How */
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .step { position: relative; padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: white; }
    .step-no { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--ink); color: white; font-size: 14px; font-weight: 850; }
    .step h3 { margin: 21px 0 9px; font-size: 20px; }
    .step p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 15px; }

    /* Audience */
    .audience-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
    .audience-card { padding: 22px 12px; text-align: center; border-radius: 15px; border: 1px solid var(--line); background: #fff; }
    .audience-card span { width: 44px; height: 44px; display: grid; place-items: center; margin: 0 auto 12px; border-radius: 14px; background: var(--green-soft); color: var(--green-dark); font-size: 19px; }
    .audience-card:nth-child(even) span { background: #eef2ff; color: #4f68d9; }
    .audience-card strong { font-size: 14px; }

    /* Pricing */
    .pricing-wrap { padding: 46px; border-radius: 30px; background: #f5f7f9; border: 1px solid #edf0f3; }
    .pricing-grid { display: grid; grid-template-columns: .8fr 1fr 1fr; gap: 20px; align-items: stretch; }
    .pricing-intro { padding: 25px 12px 25px 4px; }
    .pricing-intro h2 { margin: 0; font-size: clamp(34px, 4vw, 46px); letter-spacing: -.04em; line-height: 1.05; }
    .pricing-intro p { margin: 14px 0 0; color: var(--muted); line-height: 1.65; }
    .price-card { position: relative; padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: white; }
    .price-card.featured { border-color: #bfe8d5; box-shadow: 0 16px 40px rgba(16,163,109,.10); }
    .popular { position: absolute; right: 18px; top: -13px; padding: 7px 10px; border-radius: 999px; background: var(--green); color: white; font-size: 10px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
    .price-card h3 { margin: 0; color: var(--muted); font-size: 14px; font-weight: 750; }
    .price { margin-top: 15px; font-size: 38px; font-weight: 850; letter-spacing: -.04em; }
    .price small { font-size: 14px; font-weight: 700; color: var(--muted); }
    .vat { color: var(--muted); font-size: 12px; margin-top: 3px; }
    .trial { margin-top: 18px; color: var(--ink-2); font-size: 13px; font-weight: 650; }
    .price-card .btn { width: 100%; margin-top: 18px; }
    .pricing-note { margin-top: 18px; text-align: center; color: #6f7887; font-size: 12px; }

    /* FAQ */
    .faq { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line); }
    .faq-item { border-bottom: 1px solid var(--line); }
    .faq-btn { width: 100%; padding: 22px 0; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; gap: 22px; text-align: left; color: var(--ink); font: inherit; font-size: 17px; font-weight: 750; cursor: pointer; }
    .faq-btn span:last-child { font-size: 22px; font-weight: 400; color: var(--muted); transition: transform .2s ease; }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--muted); line-height: 1.65; }
    .faq-answer p { margin: 0; padding: 0 0 22px; }
    .faq-item.open .faq-answer { max-height: 220px; }
    .faq-item.open .faq-btn span:last-child { transform: rotate(45deg); }

    /* Final CTA + Footer */
    .final-cta { padding: 85px 0; }
    .cta-panel { position: relative; overflow: hidden; padding: 60px 40px; border-radius: 30px; text-align: center; background: var(--ink); color: white; }
    .cta-panel::before { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; right: -100px; top: -170px; background: rgba(16,163,109,.28); filter: blur(3px); }
    .cta-panel h2 { position: relative; margin: 0; font-size: clamp(34px, 4vw, 50px); letter-spacing: -.04em; }
    .cta-panel p { position: relative; margin: 15px auto 26px; max-width: 650px; color: #c9d0dd; font-size: 17px; line-height: 1.6; }
    .cta-panel .btn { position: relative; background: white; color: var(--ink); }
    footer { padding: 46px 0 30px; border-top: 1px solid var(--line); }
    .footer-grid { display: grid; grid-template-columns: 1.6fr .8fr .8fr .8fr; gap: 40px; }
    .footer-copy { margin-top: 12px; max-width: 360px; color: var(--muted); line-height: 1.6; font-size: 14px; }
    footer h4 { margin: 4px 0 15px; font-size: 14px; }
    footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
    footer li, footer a, footer p { color: var(--muted); font-size: 13px; }
    .copyright { margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line); color: #8b95a3; font-size: 12px; text-align: center; }

    @media (max-width: 1080px) {
      .nav-links { gap: 18px; }
      .hero-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
      .problem-grid { grid-template-columns: repeat(3, 1fr); }
      .audience-grid { grid-template-columns: repeat(3, 1fr); }
      .pricing-grid { grid-template-columns: 1fr 1fr; }
      .pricing-intro { grid-column: 1 / -1; text-align: center; max-width: 680px; margin: 0 auto; }
    }

    @media (max-width: 860px) {
      .nav-links, .nav-actions .btn-outline { display: none; }
      .menu-btn { display: inline-grid; place-items: center; }
      .nav.open .nav-links { position: absolute; top: 78px; left: 20px; right: 20px; display: grid; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-soft); }
      .nav.open .nav-links a { padding: 12px 10px; }
      .hero { padding-top: 54px; }
      .hero-grid { grid-template-columns: 1fr; gap: 24px; }
      .hero-copy { max-width: none; text-align: center; }
      .hero h1, .hero-lead { margin-left: auto; margin-right: auto; }
      .hero-actions, .trust-row { justify-content: center; }
      .hero-stage { min-height: 570px; }
      .dashboard-preview { width: min(640px, 92%); bottom: 5px; }
      .kpi-shell { top: 18px; width: min(520px, 92%); }
      .stage-note { display: none; }
      .logo-row { grid-template-columns: repeat(3, 1fr); }
      .solution-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 620px) {
      .social-proof { padding: 27px 0 31px; overflow: hidden; }
      .social-proof .container { width: 100%; }
      .proof-copy { padding: 0 24px; font-size: 12px; }
      .logo-row {
        display: flex;
        gap: 14px;
        margin-top: 20px;
        padding: 0 20px 5px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
      }
      .logo-row::-webkit-scrollbar { display: none; }
      .client-logo { flex: 0 0 42%; min-height: 62px; scroll-snap-align: center; }
      .client-logo img { max-width: 132px; max-height: 43px; opacity: .58; }

      .container { width: min(calc(100% - 28px), var(--container)); }
      .section { padding: 68px 0; }
      .nav { min-height: 68px; }
      .brand-logo { width: 102px; }
      .nav-actions .btn-dark { min-height: 40px; padding: 0 13px; font-size: 12px; }
      .nav.open .nav-links { top: 68px; left: 14px; right: 14px; }
      .hero { padding-top: 38px; }
      .hero h1 { font-size: clamp(44px, 13vw, 60px); }
      .hero-lead { font-size: 17px; }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { width: 100%; }
      .trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
      .trust-item { min-width: 0; display: grid; justify-items: center; text-align: center; font-size: 11px; }
      .hero-stage { min-height: 485px; }
      .kpi-shell { top: 6px; width: 94%; }
      .kpi-card { min-height: 196px; padding: 24px 22px 20px; border-radius: 21px; }
      .kpi-value { font-size: 37px; }
      .sparkline { height: 44px; margin-top: 16px; }
      .dashboard-preview { bottom: 12px; width: 94%; border-radius: 14px; }
      .preview-caption { display: none; }
      .logo-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .problem-grid { grid-template-columns: 1fr; }
      .problem-card { min-height: auto; }
      .audience-grid { grid-template-columns: repeat(2, 1fr); }
      .product-frame { padding: 12px; }
      .float-chip { display: none; }
      .pricing-wrap { padding: 25px 17px; }
      .pricing-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .cta-panel { padding: 45px 22px; border-radius: 22px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    }

/* Why Penz */
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.why-card { padding:28px; border:1px solid var(--line); border-radius:var(--radius-lg); background:#fff; }
.why-no { display:inline-grid; place-items:center; width:42px; height:42px; border-radius:12px; background:var(--orange-soft); color:var(--orange-dark); font-size:14px; font-weight:850; }
.why-card h3 { margin:21px 0 9px; font-size:20px; }
.why-card p { margin:0; color:var(--muted); line-height:1.6; font-size:15px; }
.penz-voice { margin-top:24px; padding:28px 32px; border-radius:var(--radius-lg); background:var(--ink); color:#fff; display:flex; flex-direction:column; gap:6px; }
.penz-voice strong { font-size:21px; line-height:1.35; }
.penz-voice span { color:rgba(255,255,255,.76); font-size:16px; line-height:1.55; }
@media (max-width: 760px) { .why-grid { grid-template-columns:1fr; }
