﻿/* Valbio Landing Page Core Styles */

    :root {
      --navy: #004D88;
      --navy-deep: #00355e;
      --teal: #009C8D;
      --teal-deep: #00786c;
      --mint: #7FEFDD;
      --mint-deep: #33C9B0;
      --ink: #0B1F3A;
      --ink-soft: #3D4A5C;
      --paper: #EAF6F4;
      --paper-alt: #DFF3F0;
      --card: rgba(255, 255, 255, 0.55);
      --card-solid: #FFFFFF;
      --glass-border: rgba(255, 255, 255, 0.6);
      --line: rgba(0, 77, 136, 0.12);
      --shadow: 0 20px 50px rgba(0, 77, 136, 0.10);
      --shadow-lg: 0 30px 70px rgba(0, 77, 136, 0.16);
      --glow: 0 8px 32px rgba(127, 239, 221, 0.35);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: #ffffff;
      color: var(--ink);
      font-family: 'Plus Jakarta Sans', sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--ink);
      margin: 0;
      letter-spacing: -0.01em;
    }

    p {
      margin: 0;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 32px;
      position: relative;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* -------- glass utility -------- */
    .glass {
      background: var(--card);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      border: 1px solid var(--glass-border);
      box-shadow: 0 8px 32px rgba(0, 77, 136, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    /* -------- eyebrow / label -------- */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 12.5px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--teal-deep);
      margin-bottom: 18px;
      padding: 5px 14px 5px 6px;
      background: rgba(127, 239, 221, 0.28);
      border: 1px solid rgba(51, 201, 176, 0.4);
      border-radius: 20px;
    }

    .eyebrow::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--mint-deep);
      display: inline-block;
      box-shadow: 0 0 0 4px rgba(127, 239, 221, 0.35);
    }

    .section-head {
      max-width: 680px;
      margin: 0 auto 56px;
      text-align: center;
    }

    .section-head h2 {
      font-size: clamp(28px, 3.4vw, 42px);
      font-weight: 600;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .section-head p {
      font-size: 17px;
      line-height: 1.65;
      color: var(--ink-soft);
    }

    section {
      padding: 70px 0;
      position: relative;
    }

    .bg-alt {
      background: linear-gradient(180deg, rgba(0, 156, 141, 0.06), rgba(0, 77, 136, 0.04));
    }

    .bg-ink {
      background: #ffffff;
      color: var(--ink);
    }

    .bg-ink h2,
    .bg-ink h3,
    .bg-ink h4 {
      color: var(--ink);
    }

    /* decorative blobs so glass cards have something to blur */
    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(10px);
      pointer-events: none;
      z-index: 0;
    }

    .blob-1 {
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, rgba(127, 239, 221, .55), transparent 70%);
      top: -120px;
      left: -140px;
    }

    .blob-2 {
      width: 460px;
      height: 460px;
      background: radial-gradient(circle, rgba(0, 156, 141, .30), transparent 70%);
      bottom: -160px;
      right: -160px;
    }

    .blob-3 {
      width: 340px;
      height: 340px;
      background: radial-gradient(circle, rgba(0, 77, 136, .22), transparent 70%);
      top: 20%;
      right: 8%;
    }

    section>.wrap {
      z-index: 1;
    }

    hr.rule {
      border: none;
      border-top: 1px solid var(--line);
      max-width: 1180px;
      margin: 0 auto;
    }

    /* -------- header -------- */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(234, 246, 244, 0.75);
      backdrop-filter: blur(14px) saturate(160%);
      -webkit-backdrop-filter: blur(14px) saturate(160%);
      border-bottom: 1px solid var(--glass-border);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 32px;
      max-width: 1180px;
      margin: 0 auto;
    }

    .brand {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: 22px;
      letter-spacing: .01em;
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--navy);
    }

    .brand .tm {
      color: var(--teal-deep);
      font-size: 14px;
      vertical-align: super;
    }

    .nav-links {
      display: flex;
      gap: 38px;
      font-size: 15px;
      font-weight: 600;
    }

    .nav-links a {
      color: var(--ink-soft);
      transition: color .2s;
    }

    .nav-links a:hover {
      color: var(--teal-deep);
    }

    .nav-cta {
      display: flex;
      gap: 14px;
    }

    /* -------- buttons -------- */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 26px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 14.5px;
      letter-spacing: .01em;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all .25s ease;
    }

    .btn-gold {
      background: linear-gradient(135deg, var(--navy), var(--teal));
      color: #fff;
      box-shadow: 0 10px 26px rgba(0, 77, 136, 0.28);
    }

    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(0, 77, 136, 0.36);
    }

    .btn-gold svg,
    .btn-gold i {
      transition: transform .25s;
    }

    .btn-gold:hover svg,
    .btn-gold:hover i {
      transform: translateX(4px);
    }

    .btn-ghost {
      border-color: rgba(0, 77, 136, 0.35);
      color: var(--navy);
      background: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(10px);
    }

    .btn-ghost:hover {
      border-color: var(--mint-deep);
      color: var(--teal-deep);
      background: rgba(127, 239, 221, 0.2);
    }

    .btn-on-ink {
      background: var(--mint);
      color: var(--ink);
      box-shadow: 0 10px 26px rgba(127, 239, 221, 0.25);
    }

    .btn-on-ink:hover {
      background: #fff;
    }

    /* -------- hero -------- */
    .hero {
      position: relative;
      padding: 60px 0 50px;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 70px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero h1 {
      font-size: clamp(34px, 4.6vw, 56px);
      font-weight: 600;
      line-height: 1.08;
      margin-bottom: 24px;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--teal-deep);
    }

    .hero p.lead {
      font-size: 18px;
      line-height: 1.7;
      color: var(--ink-soft);
      max-width: 520px;
      margin-bottom: 32px;
    }

    .stat-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 36px;
    }

    .stat-strip span {
      font-weight: 700;
      font-size: 13.5px;
      color: var(--navy);
      padding: 8px 16px;
      border-radius: 30px;
    }

    .stat-strip span i {
      color: var(--teal-deep);
      margin-right: 6px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 34px;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 22px;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--ink-soft);
    }

    .trust-row i {
      color: var(--teal-deep);
      margin-right: 6px;
    }

    .hero-panel {
      background: linear-gradient(155deg, #00355e 0%, #0B1F3A 70%);
      border-radius: 24px;
      padding: 34px;
      position: relative;
      box-shadow: var(--shadow-lg);
    }

    .hero-panel::before {
      content: '';
      position: absolute;
      inset: 10px;
      border: 1px solid rgba(127, 239, 221, .3);
      border-radius: 18px;
      pointer-events: none;
    }

    .seal {
      width: 100%;
      aspect-ratio: 4/3;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(6px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #EAF6F4;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .seal .ring {
      width: 118px;
      height: 118px;
      border: 1.5px solid var(--mint);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      position: relative;
      box-shadow: 0 0 40px rgba(127, 239, 221, 0.35);
    }

    .seal .ring::before {
      content: '';
      position: absolute;
      inset: 8px;
      border: 1px solid rgba(127, 239, 221, .4);
      border-radius: 50%;
    }

    .seal .ring i {
      font-size: 34px;
      color: var(--mint);
    }

    .seal .cap {
      font-size: 12px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--mint);
      font-weight: 700;
    }

    .seal .name {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 22px;
      margin-top: 6px;
    }

    .dock {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 24px;
    }

    .dock div {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      padding: 16px 8px;
      text-align: center;
    }

    .dock i {
      color: var(--mint);
      font-size: 16px;
      margin-bottom: 8px;
      display: block;
    }

    .dock span {
      font-size: 12px;
      font-weight: 600;
      color: #E7F5F1;
    }

    /* -------- framework cards (glass + infographic) -------- */
    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .fw-card {
      border-radius: 22px;
      padding: 34px 28px;
      transition: all .35s cubic-bezier(.2, .8, .2, 1);
      position: relative;
      overflow: hidden;
    }

    .fw-card::after {
      content: '';
      position: absolute;
      top: -40%;
      right: -40%;
      width: 70%;
      height: 70%;
      background: radial-gradient(circle, rgba(127, 239, 221, 0.4), transparent 70%);
      opacity: 0;
      transition: opacity .35s ease;
    }

    .fw-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(51, 201, 176, 0.5);
    }

    .fw-card:hover::after {
      opacity: 1;
    }

    .fw-step {
      position: absolute;
      top: 24px;
      right: 26px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: rgba(0, 77, 136, 0.28);
    }

    .fw-icon {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--mint), var(--teal));
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 22px;
      box-shadow: 0 10px 22px rgba(51, 201, 176, 0.35);
      position: relative;
      z-index: 1;
    }

    .fw-card h4 {
      font-size: 19px;
      font-weight: 600;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
    }

    .fw-card p {
      font-size: 14.5px;
      line-height: 1.6;
      color: var(--ink-soft);
      position: relative;
      z-index: 1;
    }

    /* -------- problem / solution -------- */
    .ps-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .ps-col {
      border-radius: 22px;
      padding: 44px;
    }

    .ps-col.solution {
      background: linear-gradient(155deg, #00355e, #0B1F3A);
      color: #EAF6F4;
      border: 1px solid rgba(127, 239, 221, .2);
      box-shadow: var(--shadow-lg);
    }

    .ps-head {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      margin-bottom: 30px;
      color: var(--teal-deep);
    }

    .ps-col.solution .ps-head {
      color: var(--mint);
    }

    .ps-row {
      display: flex;
      gap: 16px;
      padding: 18px 0;
      border-top: 1px solid var(--line);
    }

    .ps-col.solution .ps-row {
      border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .ps-row:first-of-type {
      border-top: none;
    }

    .ps-mark {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      margin-top: 2px;
    }

    .ps-col:not(.solution) .ps-mark {
      border: 1.5px solid #C0392B;
      color: #C0392B;
      background: rgba(192, 57, 43, 0.08);
    }

    .ps-col.solution .ps-mark {
      background: var(--mint);
      color: var(--ink);
    }

    .ps-t {
      font-weight: 700;
      font-size: 13px;
      letter-spacing: .04em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .ps-d {
      font-size: 14.5px;
      line-height: 1.55;
      color: var(--ink-soft);
    }

    .ps-col.solution .ps-d {
      color: #F0F8FF;
    }

    /* -------- core areas -------- */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    .area-card {
      border-radius: 22px;
      padding: 40px;
      position: relative;
      overflow: hidden;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .area-num {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      color: var(--ink);
      font-weight: 600;
      background: linear-gradient(135deg, var(--navy), var(--teal));
      margin-bottom: 22px;
    }

    .area-card h3 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .area-card ul {
      list-style: none;
      margin: 0;
      padding: 0;
      text-align: left;
      width: 100%;
    }

    .area-card li {
      position: relative;
      padding-left: 22px;
      margin-bottom: 11px;
      font-size: 15px;
      color: var(--ink-soft);
      line-height: 1.5;
    }

    .area-card li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      width: 7px;
      height: 7px;
      background: var(--mint-deep);
      border-radius: 50%;
    }

    /* -------- process (infographic timeline) -------- */
    .process-row {
      display: flex;
      justify-content: space-between;
      gap: 8px;
      position: relative;
      margin-top: 20px;
    }

    .process-row::before {
      content: '';
      position: absolute;
      top: 38px;
      left: 5%;
      right: 5%;
      height: 2px;
      background: linear-gradient(90deg, var(--navy), var(--mint), var(--navy));
      opacity: .35;
      z-index: 0;
    }

    .p-step {
      flex: 1;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .p-icon {
      width: 76px;
      height: 76px;
      margin: 0 auto 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      color: var(--navy);
      box-shadow: var(--shadow);
      position: relative;
    }

    .p-icon::before {
      content: '';
      position: absolute;
      inset: -5px;
      border-radius: 50%;
      border: 1.5px dashed rgba(51, 201, 176, 0.5);
    }

    .p-step h4 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .p-step p {
      font-size: 13.5px;
      color: var(--ink-soft);
      padding: 0 8px;
      line-height: 1.5;
    }

    /* -------- pill grid (benefit / expert / value) -------- */
    .grid-pill {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .pill-card {
      border-radius: 20px;
      padding: 26px 22px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: all .3s ease;
    }

    .pill-card:hover {
      border-color: rgba(51, 201, 176, 0.55);
      box-shadow: var(--shadow);
      transform: translateY(-4px);
    }

    .pill-card i {
      width: 38px;
      height: 38px;
      border-radius: 11px;
      background: rgba(0, 156, 141, 0.12);
      color: var(--teal-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .pill-card h4 {
      font-size: 15.5px;
      font-weight: 700;
      line-height: 1.35;
    }

    .pill-card p {
      font-size: 13.5px;
      color: var(--ink-soft);
      line-height: 1.5;
    }

    /* -------- incepone split -------- */
    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .split-rev {
      grid-template-columns: 1fr 1fr;
    }

    .feat {
      display: flex;
      gap: 18px;
      padding: 22px;
      border-radius: 18px;
      margin-bottom: 16px;
      transition: all .3s ease;
    }

    .feat:hover {
      border-color: rgba(51, 201, 176, 0.55);
      transform: translateX(6px);
      box-shadow: var(--shadow);
    }

    .feat-icon {
      flex-shrink: 0;
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--mint), var(--teal));
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      box-shadow: 0 8px 18px rgba(51, 201, 176, 0.3);
    }

    .feat h4 {
      font-size: 16.5px;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .feat p {
      font-size: 14px;
      color: var(--ink-soft);
      line-height: 1.5;
    }

    .visual-frame {
      background: linear-gradient(155deg, #00355e, #0B1F3A);
      border-radius: 24px;
      padding: 54px 40px;
      text-align: center;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(127, 239, 221, .18);
    }

    .visual-frame i {
      font-size: 44px;
      color: var(--mint);
      margin-bottom: 18px;
    }

    .visual-frame h3 {
      color: #fff;
      font-size: 22px;
      margin-bottom: 10px;
    }

    .visual-frame p {
      color: #F0F8FF;
      font-size: 14.5px;
      line-height: 1.6;
    }

    /* -------- knowledge cards -------- */
    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    .k-card {
      border-radius: 24px;
      padding: 44px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .k-card.premium {
      background: linear-gradient(155deg, #00355e, #0B1F3A);
      color: #EAF6F4;
      border: 1px solid rgba(127, 239, 221, .18);
      box-shadow: var(--shadow-lg);
    }

    .k-icon {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--mint), var(--teal));
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 24px;
      box-shadow: 0 10px 22px rgba(51, 201, 176, 0.32);
    }

    .k-card.premium .k-icon {
      background: rgba(127, 239, 221, .16);
      color: var(--mint);
      box-shadow: none;
    }

    .k-card h3 {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 14px;
    }

    .k-card.premium h3 {
      color: #fff;
    }

    .k-card p.desc {
      font-size: 15px;
      color: var(--ink-soft);
      line-height: 1.6;
      margin-bottom: 22px;
    }

    .k-card.premium p.desc {
      color: #F0F8FF;
    }

    .k-card ul {
      list-style: none;
      margin: 0 0 26px;
      padding: 0;
      flex-grow: 1;
      text-align: left;
      width: 100%;
    }

    .k-card li {
      position: relative;
      padding-left: 22px;
      margin-bottom: 10px;
      font-size: 14.5px;
    }

    .k-card li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      width: 6px;
      height: 6px;
      background: var(--mint-deep);
      border-radius: 50%;
    }

    .k-card.premium li::before {
      background: var(--mint);
    }

    /* -------- deploy banner -------- */
    .deploy {
      text-align: center;
      max-width: 820px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .deploy i {
      font-size: 32px;
      color: var(--mint);
      margin-bottom: 20px;
    }

    .deploy p {
      font-size: 17px;
      line-height: 1.7;
      color: var(--ink-soft);
    }

    .deploy strong {
      color: var(--ink);
    }

    /* -------- region cards (infographic stat style) -------- */
    .grid-region {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .region-card {
      border-radius: 22px;
      padding: 38px 26px;
      text-align: center;
      transition: all .3s ease;
      position: relative;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(127, 239, 221, 0.22);
    }

    .region-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
      border-color: rgba(127, 239, 221, 0.5);
    }

    .region-card i {
      color: var(--mint);
      font-size: 26px;
      margin-bottom: 16px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(127, 239, 221, 0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: auto;
      margin-right: auto;
    }

    .region-card strong {
      display: block;
      color: var(--ink);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .region-card span {
      color: var(--ink-soft);
      font-size: 13.5px;
    }

    .region-card small {
      display: block;
      color: var(--mint);
      font-size: 11.5px;
      font-weight: 700;
      margin-top: 6px;
      letter-spacing: .04em;
    }

    /* -------- testimonials -------- */
    .grid-quote {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    .quote-card {
      border-radius: 22px;
      padding: 44px;
      position: relative;
      border-left: 3px solid var(--mint-deep);
    }

    .quote-card i.mark {
      position: absolute;
      top: 26px;
      right: 30px;
      font-size: 52px;
      color: rgba(0, 156, 141, 0.1);
    }

    .quote-card p {
      font-size: 16.5px;
      line-height: 1.7;
      font-style: italic;
      color: var(--ink);
      margin-bottom: 26px;
      position: relative;
      z-index: 1;
    }

    .quote-who strong {
      display: block;
      font-size: 16px;
    }

    .quote-who span {
      font-size: 13px;
      color: var(--ink-soft);
    }

    /* -------- faq -------- */
    .faq-list {
      max-width: 820px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
      position: relative;
      z-index: 1;
    }

    details {
      border-radius: 18px;
      overflow: hidden;
      transition: border-color .3s ease;
    }

    details[open] {
      border-color: rgba(51, 201, 176, 0.55);
    }

    summary {
      cursor: pointer;
      list-style: none;
      padding: 22px 28px;
      font-weight: 700;
      font-size: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: '+';
      font-size: 22px;
      color: var(--teal-deep);
      font-weight: 400;
      transition: transform .3s ease;
    }

    details[open] summary::after {
      content: '\2212';
    }

    details p {
      margin: 0;
      padding: 0 28px 24px;
      font-size: 15px;
      color: var(--ink-soft);
      line-height: 1.65;
    }

    /* -------- closing cta -------- */
    .closing {
      background: linear-gradient(155deg, #00355e 0%, #0B1F3A 70%);
      border-radius: 28px;
      padding: 64px;
      display: grid;
      grid-template-columns: 1.3fr .7fr;
      gap: 50px;
      align-items: center;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(127, 239, 221, .18);
    }

    .closing::before {
      content: '';
      position: absolute;
      top: -140px;
      left: -140px;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(127, 239, 221, .28), transparent 70%);
    }

    .closing h2 {
      color: #fff;
      font-size: 32px;
      margin-bottom: 12px;
    }

    .closing h3 {
      color: var(--mint);
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 18px;
    }

    .closing p {
      color: #F0F8FF;
      font-size: 15.5px;
      line-height: 1.7;
      margin-bottom: 30px;
      max-width: 520px;
    }

    .closing-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .closing-visual {
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(127, 239, 221, 0.35);
      border-radius: 20px;
      padding: 40px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .closing-visual span {
      display: block;
      color: var(--mint);
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .closing-visual strong {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: #fff;
      font-size: 24px;
    }

    footer {
      padding: 50px 0;
      border-top: 1px solid var(--line);
      text-align: center;
      font-size: 13.5px;
      color: var(--ink-soft);
    }

    @media (max-width:1000px) {

      .grid-4,
      .grid-region,
      .grid-pill {
        grid-template-columns: repeat(2, 1fr) !important;
      }

      .hero-grid,
      .split,
      .ps-grid,
      .grid-2,
      .grid-quote,
      .grid-3,
      .closing {
        grid-template-columns: 1fr !important;
      }

      .process-row {
        flex-direction: column;
        gap: 34px;
      }

      .process-row::before {
        display: none;
      }

      .nav-links {
        display: none;
      }

      section {
        padding: 50px 0 !important;
      }

      /* Make the Contact Form stacked on tablets */
      form[action="/website_form/crm.lead"] {
        grid-template-columns: 1fr !important;
      }
    }

    @media (max-width:560px) {

      .grid-4,
      .grid-region,
      .grid-pill {
        grid-template-columns: 1fr !important;
      }

      .wrap {
        padding: 0 20px;
      }

      .closing {
        padding: 40px 26px;
      }

      .hero h1 {
        font-size: 32px !important;
      }

      .hero {
        padding: 40px 0 !important;
      }

      .stat-strip {
        flex-direction: column;
        gap: 8px;
      }

      .glass {
        padding: 30px !important;
      }
    }

    .wrap {
      padding: 0 20px;
    }

    .closing {
      padding: 40px 26px;
    }
    }

    section:not(.bg-alt):not(.bg-ink):not(.hero) {
      border-top: none;
      position: relative;
    }

    section:not(.bg-alt):not(.bg-ink):not(.hero)::before {
      content: '';
      position: absolute;
      top: 0;
      left: 5%;
      right: 5%;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--teal) 30%, var(--navy) 70%, transparent 100%);
      opacity: 0.4;
    }

    section.bg-alt+section::before,
    section.bg-ink+section::before {
      display: none;
    }

    /* Hover Gradients for White Cards */
    .area-card:hover,
    .pill-card:hover,
    .glass:not(.feat):hover {
      background: linear-gradient(135deg, var(--navy), var(--teal)) !important;
      border-color: transparent !important;
    }

    .area-card:hover h3,
    .area-card:hover li,
    .area-card:hover p,
    .area-card:hover i,
    .pill-card:hover h4,
    .pill-card:hover p,
    .pill-card:hover i,
    .glass:not(.feat):hover h3,
    .glass:not(.feat):hover p,
    .glass:not(.feat):hover i,
    .glass:not(.feat):hover div,
    .glass:not(.feat):hover span,
    .glass:not(.feat):hover strong,
    .glass:not(.feat):hover h4 {
      color: #fff !important;
    }

            .glass:not(.feat):hover .ps-mark {
          border-color: rgba(255, 255, 255, 0.4) !important;
          color: #fff !important;
          background: rgba(255, 255, 255, 0.15) !important;
        }

        /* IncepOne Logo White on Hover */
        .fw-card:hover .io-hover-logo {
          filter: brightness(0) invert(1);
        }

            .area-card:hover .area-num {
          background: #fff !important;
          color: var(--teal) !important;
          -webkit-text-fill-color: var(--teal) !important;
        }

    .area-card:hover li::before {
      background: #fff !important;
    }

    .contact-text {
      padding-right: 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 60px;
    }

    @media (max-width: 1000px) {
      .contact-text {
        padding-right: 0 !important;
        margin-bottom: 30px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr !important;
      }

      .contact-form-container {
        padding: 40px !important;
      }
    }

    @media (max-width: 560px) {
      .footer-grid {
        grid-template-columns: 1fr !important;
      }

      .hero-visual>div:last-child {
        left: 10px !important;
        bottom: 10px !important;
        transform: scale(0.85);
        transform-origin: left bottom;
      }

      .contact-form-container {
        padding: 25px !important;
      }
    }
      /* ULTRA-PREMIUM EVENT DAY LIVE ANIMATION */
    @keyframes liveCardPulse {
      0% { box-shadow: 0 0 10px rgba(0, 224, 205, 0.25), inset 0 0 10px rgba(0, 224, 205, 0.15); border-color: rgba(0, 224, 205, 0.4); }
      50% { box-shadow: 0 0 30px rgba(0, 224, 205, 0.7), inset 0 0 20px rgba(0, 224, 205, 0.35); border-color: #00e0cd; }
      100% { box-shadow: 0 0 10px rgba(0, 224, 205, 0.25), inset 0 0 10px rgba(0, 224, 205, 0.15); border-color: rgba(0, 224, 205, 0.4); }
    }
    @keyframes radarWave {
      0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.9); }
      70% { transform: scale(1.2); box-shadow: 0 0 0 12px rgba(255, 71, 87, 0); }
      100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
    }
    @keyframes shineText {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }
    .event-happening-block {
      background: rgba(15, 23, 42, 0.85);
      border: 1px solid #00e0cd;
      border-radius: 12px;
      padding: 14px 18px;
      text-align: center;
      position: relative;
      overflow: hidden;
      animation: liveCardPulse 2s ease-in-out infinite;
      backdrop-filter: blur(8px);
    }
    .happening-live-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: linear-gradient(90deg, #ff4757, #ffffff, #ff4757);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 900;
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
      animation: shineText 2s linear infinite;
      margin-bottom: 4px;
    }
    .happening-live-dot {
      width: 10px;
      height: 10px;
      background: #ff4757;
      border-radius: 50%;
      animation: radarWave 1.5s infinite;
      display: inline-block;
    }
    /* GLOBAL CARD HEADING SIZE REDUCTION OVERRIDES */
    .ab-consult-team-card__content h3,
    .ab-consult-team-card h3,
    .team-card h3,
    .team-card h4,
    .team-member h3,
    .team-member h4,
    .team-item h3,
    .team-title,
    .valbio-card h3,
    .valbio-team-card h3 {
      font-size: 16px !important;
      line-height: 1.3 !important;
      margin-bottom: 4px !important;
      font-weight: 700 !important;
    }

    .service-card h3,
    .services-card h3,
    .service-item h3,
    .service-title,
    .services-item h3,
    .feature-card h3,
    .features-card h3,
    .feature-item h3,
    .solution-card h3,
    .solutions-card h3,
    .bento-item h3,
    .premium-card h3,
    .a26-svc-card__head h3,
    .ib-svc-card h3,
    .ct-form-card h3,
    .card-title,
    .card h3,
    .card h4,
    .why-card h3,
    .milestone-card h3,
    .glow-card h3,
    .card-heading,
    article h3,
    article h4 {
      font-size: 17px !important;
      line-height: 1.35 !important;
      font-weight: 700 !important;
    }

    @media (max-width: 767.98px) {
      .ab-consult-team-card__content h3,
      .ab-consult-team-card h3,
      .team-card h3,
      .team-card h4,
      .team-member h3,
      .team-member h4,
      .team-item h3,
      .team-title,
      .valbio-card h3,
      .valbio-team-card h3 {
        font-size: 15px !important;
      }

      .service-card h3,
      .services-card h3,
      .service-item h3,
      .service-title,
      .services-item h3,
      .feature-card h3,
      .features-card h3,
      .feature-item h3,
      .solution-card h3,
      .solutions-card h3,
      .bento-item h3,
      .premium-card h3,
      .a26-svc-card__head h3,
      .ib-svc-card h3,
      .ct-form-card h3,
      .card-title,
      .card h3,
      .card h4,
      .why-card h3,
      .milestone-card h3,
      .glow-card h3,
      .card-heading,
      article h3,
      article h4 {
        font-size: 16px !important;
      }
    }
    /* UNIVERSAL CARD & ITEM HEADING SIZE REDUCTION ACROSS ENTIRE WEBSITE */
    :root {
      --global-card-heading-size: 16px;
    }

    [class*="card"] h2, [class*="card"] h3, [class*="card"] h4, [class*="card"] h5,
    [class*="item"] h2, [class*="item"] h3, [class*="item"] h4, [class*="item"] h5,
    [class*="box"] h2, [class*="box"] h3, [class*="box"] h4, [class*="box"] h5,
    [class*="block"] h2, [class*="block"] h3, [class*="block"] h4, [class*="block"] h5,
    [class*="team"] h2, [class*="team"] h3, [class*="team"] h4, [class*="team"] h5,
    [class*="service"] h2, [class*="service"] h3, [class*="service"] h4, [class*="service"] h5,
    [class*="feature"] h2, [class*="feature"] h3, [class*="feature"] h4, [class*="feature"] h5,
    [class*="solution"] h2, [class*="solution"] h3, [class*="solution"] h4, [class*="solution"] h5,
    [class*="bento"] h2, [class*="bento"] h3, [class*="bento"] h4, [class*="bento"] h5,
    [class*="step"] h2, [class*="step"] h3, [class*="step"] h4, [class*="step"] h5,
    [class*="milestone"] h2, [class*="milestone"] h3, [class*="milestone"] h4,
    [class*="why"] h2, [class*="why"] h3, [class*="why"] h4,
    article h2, article h3, article h4, article h5,
    .ab-consult-team-card__content h3,
    .visual-feature-block h3,
    .bento-item h3,
    .ext-card-main h3,
    .ss-bento-featured h3,
    .premium-card h3,
    .a26-svc-card__head h3,
    .ib-svc-card h3 {
      font-size: 16px !important;
      line-height: 1.35 !important;
      font-weight: 700 !important;
    }

    /* Preserve Main Section Headings and Hero Titles */
    .section-title, .section-title h1, .section-title h2,
    .hero-title, .ct-title, .ct-hero-title, .page-title,
    .section-head h2, .section-header h2, h1.hero-title {
      font-size: clamp(28px, 4vw, 48px) !important;
      line-height: 1.2 !important;
    }

    @media (max-width: 767.98px) {
      [class*="card"] h2, [class*="card"] h3, [class*="card"] h4, [class*="card"] h5,
      [class*="item"] h2, [class*="item"] h3, [class*="item"] h4, [class*="item"] h5,
      [class*="box"] h2, [class*="box"] h3, [class*="box"] h4, [class*="box"] h5,
      [class*="block"] h2, [class*="block"] h3, [class*="block"] h4, [class*="block"] h5,
      [class*="team"] h2, [class*="team"] h3, [class*="team"] h4, [class*="team"] h5,
      [class*="service"] h2, [class*="service"] h3, [class*="service"] h4, [class*="service"] h5,
      [class*="feature"] h2, [class*="feature"] h3, [class*="feature"] h4, [class*="feature"] h5,
      [class*="solution"] h2, [class*="solution"] h3, [class*="solution"] h4, [class*="solution"] h5,
      [class*="bento"] h2, [class*="bento"] h3, [class*="bento"] h4, [class*="bento"] h5,
      article h2, article h3, article h4, article h5 {
        font-size: 15px !important;
      }
    }
    /* BLOG CARD TITLE SIZE REDUCTION OVERRIDES */
    .bl-card-title,
    .bl-feat-title,
    .bl-hf-title,
    .bl-card h3,
    .blog-title,
    .blog-card h3,
    .blog-post h3,
    .blog-item h3,
    .blog-details h3,
    .news-card h3,
    .news-title {
      font-size: 15px !important;
      line-height: 1.35 !important;
      font-weight: 700 !important;
      font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
      margin-bottom: 8px !important;
    }

    @media (max-width: 767.98px) {
      .bl-card-title,
      .bl-feat-title,
      .bl-hf-title,
      .bl-card h3,
      .blog-title,
      .blog-card h3,
      .blog-post h3,
      .blog-item h3,
      .blog-details h3,
      .news-card h3,
      .news-title {
        font-size: 14px !important;
        line-height: 1.3 !important;
      }
    }


/* Valbio Landing Page Instruments Styles */

  .inst-slide-card:hover { transform: translateY(-8px) !important; box-shadow: 0 16px 36px rgba(0,77,136,0.12) !important; border-color: var(--teal) !important; }
    /* ULTRA-PREMIUM EVENT DAY LIVE ANIMATION */
    @keyframes liveCardPulse {
      0% { box-shadow: 0 0 10px rgba(0, 224, 205, 0.25), inset 0 0 10px rgba(0, 224, 205, 0.15); border-color: rgba(0, 224, 205, 0.4); }
      50% { box-shadow: 0 0 30px rgba(0, 224, 205, 0.7), inset 0 0 20px rgba(0, 224, 205, 0.35); border-color: #00e0cd; }
      100% { box-shadow: 0 0 10px rgba(0, 224, 205, 0.25), inset 0 0 10px rgba(0, 224, 205, 0.15); border-color: rgba(0, 224, 205, 0.4); }
    }
    @keyframes radarWave {
      0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.9); }
      70% { transform: scale(1.2); box-shadow: 0 0 0 12px rgba(255, 71, 87, 0); }
      100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
    }
    @keyframes shineText {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }
    .event-happening-block {
      background: rgba(15, 23, 42, 0.85);
      border: 1px solid #00e0cd;
      border-radius: 12px;
      padding: 14px 18px;
      text-align: center;
      position: relative;
      overflow: hidden;
      animation: liveCardPulse 2s ease-in-out infinite;
      backdrop-filter: blur(8px);
    }
    .happening-live-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: linear-gradient(90deg, #ff4757, #ffffff, #ff4757);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 900;
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
      animation: shineText 2s linear infinite;
      margin-bottom: 4px;
    }
    .happening-live-dot {
      width: 10px;
      height: 10px;
      background: #ff4757;
      border-radius: 50%;
      animation: radarWave 1.5s infinite;
      display: inline-block;
    }
    /* GLOBAL CARD HEADING SIZE REDUCTION OVERRIDES */
    .ab-consult-team-card__content h3,
    .ab-consult-team-card h3,
    .team-card h3,
    .team-card h4,
    .team-member h3,
    .team-member h4,
    .team-item h3,
    .team-title,
    .valbio-card h3,
    .valbio-team-card h3 {
      font-size: 16px !important;
      line-height: 1.3 !important;
      margin-bottom: 4px !important;
      font-weight: 700 !important;
    }

    .service-card h3,
    .services-card h3,
    .service-item h3,
    .service-title,
    .services-item h3,
    .feature-card h3,
    .features-card h3,
    .feature-item h3,
    .solution-card h3,
    .solutions-card h3,
    .bento-item h3,
    .premium-card h3,
    .a26-svc-card__head h3,
    .ib-svc-card h3,
    .ct-form-card h3,
    .card-title,
    .card h3,
    .card h4,
    .why-card h3,
    .milestone-card h3,
    .glow-card h3,
    .card-heading,
    article h3,
    article h4 {
      font-size: 17px !important;
      line-height: 1.35 !important;
      font-weight: 700 !important;
    }

    @media (max-width: 767.98px) {
      .ab-consult-team-card__content h3,
      .ab-consult-team-card h3,
      .team-card h3,
      .team-card h4,
      .team-member h3,
      .team-member h4,
      .team-item h3,
      .team-title,
      .valbio-card h3,
      .valbio-team-card h3 {
        font-size: 15px !important;
      }

      .service-card h3,
      .services-card h3,
      .service-item h3,
      .service-title,
      .services-item h3,
      .feature-card h3,
      .features-card h3,
      .feature-item h3,
      .solution-card h3,
      .solutions-card h3,
      .bento-item h3,
      .premium-card h3,
      .a26-svc-card__head h3,
      .ib-svc-card h3,
      .ct-form-card h3,
      .card-title,
      .card h3,
      .card h4,
      .why-card h3,
      .milestone-card h3,
      .glow-card h3,
      .card-heading,
      article h3,
      article h4 {
        font-size: 16px !important;
      }
    }
    /* UNIVERSAL CARD & ITEM HEADING SIZE REDUCTION ACROSS ENTIRE WEBSITE */
    :root {
      --global-card-heading-size: 16px;
    }

    [class*="card"] h2, [class*="card"] h3, [class*="card"] h4, [class*="card"] h5,
    [class*="item"] h2, [class*="item"] h3, [class*="item"] h4, [class*="item"] h5,
    [class*="box"] h2, [class*="box"] h3, [class*="box"] h4, [class*="box"] h5,
    [class*="block"] h2, [class*="block"] h3, [class*="block"] h4, [class*="block"] h5,
    [class*="team"] h2, [class*="team"] h3, [class*="team"] h4, [class*="team"] h5,
    [class*="service"] h2, [class*="service"] h3, [class*="service"] h4, [class*="service"] h5,
    [class*="feature"] h2, [class*="feature"] h3, [class*="feature"] h4, [class*="feature"] h5,
    [class*="solution"] h2, [class*="solution"] h3, [class*="solution"] h4, [class*="solution"] h5,
    [class*="bento"] h2, [class*="bento"] h3, [class*="bento"] h4, [class*="bento"] h5,
    [class*="step"] h2, [class*="step"] h3, [class*="step"] h4, [class*="step"] h5,
    [class*="milestone"] h2, [class*="milestone"] h3, [class*="milestone"] h4,
    [class*="why"] h2, [class*="why"] h3, [class*="why"] h4,
    article h2, article h3, article h4, article h5,
    .ab-consult-team-card__content h3,
    .visual-feature-block h3,
    .bento-item h3,
    .ext-card-main h3,
    .ss-bento-featured h3,
    .premium-card h3,
    .a26-svc-card__head h3,
    .ib-svc-card h3 {
      font-size: 16px !important;
      line-height: 1.35 !important;
      font-weight: 700 !important;
    }

    /* Preserve Main Section Headings and Hero Titles */
    .section-title, .section-title h1, .section-title h2,
    .hero-title, .ct-title, .ct-hero-title, .page-title,
    .section-head h2, .section-header h2, h1.hero-title {
      font-size: clamp(28px, 4vw, 48px) !important;
      line-height: 1.2 !important;
    }

    @media (max-width: 767.98px) {
      [class*="card"] h2, [class*="card"] h3, [class*="card"] h4, [class*="card"] h5,
      [class*="item"] h2, [class*="item"] h3, [class*="item"] h4, [class*="item"] h5,
      [class*="box"] h2, [class*="box"] h3, [class*="box"] h4, [class*="box"] h5,
      [class*="block"] h2, [class*="block"] h3, [class*="block"] h4, [class*="block"] h5,
      [class*="team"] h2, [class*="team"] h3, [class*="team"] h4, [class*="team"] h5,
      [class*="service"] h2, [class*="service"] h3, [class*="service"] h4, [class*="service"] h5,
      [class*="feature"] h2, [class*="feature"] h3, [class*="feature"] h4, [class*="feature"] h5,
      [class*="solution"] h2, [class*="solution"] h3, [class*="solution"] h4, [class*="solution"] h5,
      [class*="bento"] h2, [class*="bento"] h3, [class*="bento"] h4, [class*="bento"] h5,
      article h2, article h3, article h4, article h5 {
        font-size: 15px !important;
      }
    }
    /* BLOG CARD TITLE SIZE REDUCTION OVERRIDES */
    .bl-card-title,
    .bl-feat-title,
    .bl-hf-title,
    .bl-card h3,
    .blog-title,
    .blog-card h3,
    .blog-post h3,
    .blog-item h3,
    .blog-details h3,
    .news-card h3,
    .news-title {
      font-size: 15px !important;
      line-height: 1.35 !important;
      font-weight: 700 !important;
      font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
      margin-bottom: 8px !important;
    }

    @media (max-width: 767.98px) {
      .bl-card-title,
      .bl-feat-title,
      .bl-hf-title,
      .bl-card h3,
      .blog-title,
      .blog-card h3,
      .blog-post h3,
      .blog-item h3,
      .blog-details h3,
      .news-card h3,
      .news-title {
        font-size: 14px !important;
        line-height: 1.3 !important;
      }
    }




/* === Overrides for Valbio Main Page Specificity Issues === */
.ind-slide-content h3 {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #002B49 !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
}

.ind-slide img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
}

.quote-card {
    padding: 24px 30px !important;
    border-radius: 16px !important;
}

.quote-card p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    font-style: italic !important;
    color: #4a5568 !important;
}

.quote-who img {
    height: 32px !important;
    margin-bottom: 8px !important;
}

.quote-who span {
    font-size: 13px !important;
    font-weight: 600 !important;
}
