:root{
  --gp-blue: #0063A6;
  --gp-blue-dark: #0b5f9a;
  --gp-blue-deep: #083a5d;
  --gp-text: #15202b;
  --gp-text-soft: rgba(21,32,43,.74);
  --gp-line: rgba(12,31,49,.10);
  --gp-bg: #f4f7fb;
  --gp-shadow: 0 18px 42px rgba(13, 38, 63, .10);
  --gp-shadow-hover: 0 24px 52px rgba(13, 38, 63, .16);
  --gp-radius: 24px;
  --gp-orange-1: #f7b733;
  --gp-orange-2: #e69a00;
  --gp-grey-btn: #f3f4f6;
}

.getprice2026{
  padding: 84px 0 100px;
  background:
    radial-gradient(circle at top left, rgba(0,99,166,.08), transparent 24%),
    radial-gradient(circle at top right, rgba(0,99,166,.06), transparent 22%),
    linear-gradient(180deg, #f8fbfe 0%, #edf3f8 100%);
}

.getprice2026 .container{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.getprice2026-head{
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.getprice2026-kicker{
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,99,166,.08);
  color: var(--gp-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.getprice2026-head h1{
margin: 0;
    font-size: clamp(28px, 6vw, 2.4em);
    letter-spacing: .02em;
    font-weight: 650;
    color: var(--text-dark);
}

.getprice2026-head p{
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--gp-text-soft);
}

.getprice2026-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 26px;
}

.gpcard2026{
  background: #fff;
  border-radius: var(--gp-radius);
  overflow: hidden;
  box-shadow: var(--gp-shadow);
  transition: transform .28s ease, box-shadow .28s ease;
  border: 1px solid rgba(255,255,255,.7);
}

.gpcard2026:hover{
  transform: translateY(-8px);
  box-shadow: var(--gp-shadow-hover);
}

.gpcard2026-link{
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.gpcard2026-media{
  position: relative;
  height: 250px;
  max-height: 250px;
  overflow: hidden;
  background: #dde5ec;
}

.gpcard2026--featured .gpcard2026-media{
  height: 265px;
  max-height: 265px;
}

.gpcard2026-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.gpcard2026:hover .gpcard2026-media img{
  transform: scale(1.04);
}

.gpcard2026-fade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0) 65%,
      rgba(255,255,255,.25) 78%,
      rgba(255,255,255,.65) 88%,
      #ffffff 100%
    );
  pointer-events:none;
}

.gpcard2026-body{
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 24px 26px;
  flex: 1;
}

.gpcard2026-badge{
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0,99,166,.08);
  color: var(--gp-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.gpcard2026-badge--blue{
  background: rgba(0,99,166,.95);
  color: #fff;
}

.gpcard2026-badge--red{
  background: rgba(192,29,29,.95);
  color: #fff;
}

.gpcard2026-badge--grey{
  background: rgba(74,82,90,.92);
  color: #fff;
}

.gpcard2026-body h2{
margin: 0;
    font-size: clamp(22px, 2.2vw, 30px);
    letter-spacing: -0.01em;
    color: #111;
}

.gpcard2026-body p{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gp-text-soft);
  flex: 1;
}

.gpbtn2026{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease;
}

.gpcard2026:hover .gpbtn2026{
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.gpbtn2026--primary{
  color: #111;
  background: linear-gradient(180deg, var(--gp-orange-1) 0%, var(--gp-orange-2) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    0 10px 18px rgba(230,154,0,.20);
}

.gpbtn2026--secondary{
  color: #26323d;
  background: #f3f4f6;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: none;
}

.gpbtn2026--ghost{
  color: #4f5c67;
  background: #eef2f5;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: none;
}

.gpcard2026--secondary{
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.gpcard2026--muted{
  opacity: .96;
}

/* Responsive */
@media (max-width: 1100px){
  .getprice2026-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 767px){
  .getprice2026{
    padding: 62px 0 76px;
  }

  .getprice2026 .container{
    padding: 0 14px;
  }

  .getprice2026-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gpcard2026-media,
  .gpcard2026--featured .gpcard2026-media{
    height: 220px;
    max-height: 220px;
  }

  .gpcard2026-body{
    padding: 20px 18px 22px;
  }

  .gpcard2026-body h2{
    font-size: 28px;
  }

  .gpcard2026-body p{
    font-size: 15px;
  }

  .gpbtn2026{
    width: 100%;
    min-height: 48px;
    font-size: 14px;
  }
}