/* Public pre-login chrome + hero (CMS: tbl_cms_hero) */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Syne:wght@600;700;800&display=swap');

:root {
  --gp-ink: #0b1518;
  --gp-ink-2: #132226;
  --gp-teal: #0d9488;
  --gp-teal-bright: #14b8a6;
  --gp-sand: #e8f1ef;
  --gp-muted: #6b7f7a;
  --gp-line: rgba(255,255,255,.12);
  --gp-card: #ffffff;
}

body .page.page-boxed {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #f3f6f5 !important;
  font-family: Manrope, system-ui, sans-serif !important;
  color: var(--gp-ink);
}
body.gp-body-checker .page.page-boxed {
  background: #070b14 !important;
}

/* Hide legacy header chrome */
.page-header-top,
.page-header-bottom,
.page-header-bottom-holder,
#page-header-bottom-holder,
.holder-bg1,
.slideshow-wrap,
#layerslider {
  display: none !important;
}

.gp-shell { width: 100%; }

.gp-top {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 21, 24, .92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gp-line);
}
.gp-top-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.gp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  min-width: 0;
  margin-left: 12px;
}
.gp-brand img {
  height: 42px;
  width: 42px;
  max-width: 42px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(20, 184, 166, .35);
}
.gp-brand-copy { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.gp-brand-name {
  font-family: Syne, Manrope, sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  letter-spacing: .02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}
.gp-brand-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gp-teal-bright);
}

.gp-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.gp-nav a {
  color: rgba(255,255,255,.82) !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.gp-nav a:hover,
.gp-nav a.active {
  background: rgba(20, 184, 166, .18);
  color: #fff !important;
}
.gp-nav .gp-btn {
  background: var(--gp-teal) !important;
  color: #fff !important;
  padding: 9px 16px !important;
  border-radius: 999px !important;
}
.gp-nav .gp-btn:hover { background: var(--gp-teal-bright) !important; }
.gp-nav .gp-btn-ghost {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.28) !important;
  color: #fff !important;
}
.gp-nav .gp-btn-ghost:hover,
.gp-nav .gp-btn-ghost:focus-visible {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.55) !important;
  color: #fff !important;
}
.gp-nav .gp-btn:focus-visible {
  outline: 2px solid var(--gp-teal-bright);
  outline-offset: 2px;
}
.gp-lang {
  display: inline-flex;
  gap: 4px;
  margin-left: 4px;
}
.gp-lang a {
  font-size: 12px !important;
  padding: 6px 8px !important;
  opacity: .85;
}

.gp-hero {
  position: relative;
  overflow: hidden;
  min-height: min(78vh, 640px);
  background:
    radial-gradient(900px 420px at 85% 15%, rgba(20,184,166,.28), transparent 60%),
    radial-gradient(700px 380px at 10% 90%, rgba(15,118,110,.22), transparent 55%),
    linear-gradient(145deg, #0b1518 0%, #143038 48%, #0f766e 140%);
  color: #fff;
}
.gp-hero[data-bg]:not([data-bg=""])::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--gp-hero-bg);
  background-size: cover;
  background-position: center;
  opacity: .22;
  pointer-events: none;
}
.gp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,21,24,.88) 0%, rgba(11,21,24,.55) 48%, rgba(11,21,24,.25) 100%);
  pointer-events: none;
}
.gp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 20px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 40px;
  align-items: center;
}
.gp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gp-teal-bright);
  margin-bottom: 14px;
  animation: gpRise .7s ease both;
}
.gp-hero h1 {
  font-family: Syne, Manrope, sans-serif;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -.02em;
  max-width: 14ch;
  color: #fff !important;
  animation: gpRise .8s ease .05s both;
}
.gp-hero p {
  margin: 0 0 22px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
  max-width: 38rem;
  font-weight: 500;
  animation: gpRise .8s ease .12s both;
}
.gp-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Syne, Manrope, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none !important;
  margin-bottom: 24px;
  animation: gpRise .8s ease .18s both;
}
.gp-phone:hover,
.gp-phone:focus-visible {
  color: var(--gp-teal-bright) !important;
}
.gp-phone i {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(20,184,166,.2); color: var(--gp-teal-bright);
}
.gp-cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  animation: gpRise .8s ease .24s both;
}
.gp-cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px;
  border-radius: 999px; font-weight: 800; font-size: 14px;
  text-decoration: none !important; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  border: 2px solid transparent;
}
.gp-hero a.gp-cta,
.gp-hero a.gp-phone {
  text-decoration: none !important;
}
.gp-cta-primary {
  background: #fff !important;
  color: var(--gp-ink) !important;
  border-color: #fff !important;
}
.gp-cta-primary:hover,
.gp-cta-primary:focus-visible {
  background: var(--gp-teal-bright) !important;
  border-color: var(--gp-teal-bright) !important;
  color: #fff !important;
  transform: translateY(-2px);
}
.gp-cta-secondary {
  background: rgba(255,255,255,.1) !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,.55) !important;
}
.gp-cta-secondary:hover,
.gp-cta-secondary:focus-visible {
  background: rgba(255,255,255,.2) !important;
  border-color: #fff !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.gp-hero-visual {
  position: relative;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
  background:
    linear-gradient(160deg, rgba(20,184,166,.25), transparent 50%),
    rgba(255,255,255,.04);
  animation: gpRise .9s ease .15s both;
}
.gp-hero-visual img {
  width: 100%; height: 100%; min-height: 320px;
  object-fit: cover; display: block; opacity: .92;
}
.gp-hero-visual .gp-glow {
  position: absolute; inset: auto -20% -30% -10%;
  height: 55%;
  background: radial-gradient(circle, rgba(20,184,166,.45), transparent 65%);
  pointer-events: none;
}
.gp-hero-art {
  position: relative;
  z-index: 1;
  min-height: 320px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gp-hero-art-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 360px);
}
.gp-hero-art-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 16px 14px;
  color: rgba(255,255,255,.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.gp-hero-art-card i {
  display: block;
  font-size: 1.25rem;
  color: var(--gp-teal-bright);
  margin-bottom: 8px;
}
.gp-hero-art-card span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}
.gp-hero-art-card-main {
  grid-column: 1 / -1;
  padding: 20px 18px;
  background: rgba(255,255,255,.1);
  border-color: rgba(20,184,166,.35);
}
.gp-hero-art-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gp-teal-bright);
  margin-bottom: 8px;
}
.gp-hero-art-card-main strong {
  display: block;
  font-family: Syne, Manrope, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.gp-hero-art-card-main p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.75);
}

.gp-notice {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(90deg, #ecfdf8 0%, #f8fffd 50%, #ecfdf8 100%);
  border-top: 1px solid #b8e4dc;
  border-bottom: 1px solid #b8e4dc;
}
.gp-notice-inner {
  max-width: 1180px;
  margin: 0 auto;
  color: var(--gp-ink-2);
  padding: 18px 24px;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
  display: flex;
  gap: 14px;
  align-items: center;
}
.gp-notice-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--gp-teal);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gp-notice-inner > .fa-bullhorn {
  color: var(--gp-teal);
  font-size: 18px;
  flex-shrink: 0;
}
.gp-notice-text { flex: 1; min-width: 0; }

/* Service cards (admin Settings > Services toggles) */
.gp-services {
  background: #f3f6f5;
  padding: 36px 20px 12px;
}
.gp-services-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.gp-services-intro {
  margin-bottom: 22px;
}
.gp-services-intro h2 {
  margin: 0 0 6px;
  font-family: Syne, Manrope, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--gp-ink) !important;
}
.gp-services-intro p {
  margin: 0;
  color: var(--gp-muted);
  font-size: 14px;
  font-weight: 500;
}
.gp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.gp-service-card {
  display: block;
  background: #fff;
  border: 1px solid #dbe8e4;
  border-radius: 18px;
  padding: 28px 24px 22px;
  box-shadow: 0 10px 28px rgba(11, 21, 24, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none !important;
  color: inherit;
}
.gp-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(11, 21, 24, .1);
  border-color: #b8e4dc;
}
.gp-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.gp-service-green .gp-service-icon { background: rgba(20,184,166,.14); color: #0d9488; }
.gp-service-blue .gp-service-icon { background: rgba(59,130,246,.14); color: #2563eb; }
.gp-service-orange .gp-service-icon { background: rgba(249,115,22,.14); color: #ea580c; }
.gp-service-card h3 {
  margin: 0 0 10px;
  font-family: Syne, Manrope, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gp-ink) !important;
}
.gp-service-card p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--gp-muted);
  font-weight: 500;
}
.gp-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--gp-teal) !important;
  text-decoration: none !important;
}
.gp-service-link:hover { color: var(--gp-teal-bright) !important; }

@keyframes gpRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .gp-hero-inner { grid-template-columns: 1fr; padding-top: 40px; padding-bottom: 48px; }
  .gp-hero h1 { max-width: none; }
  .gp-hero-visual { min-height: 220px; order: -1; }
  .gp-hero-visual img { min-height: 220px; }
  .gp-brand-name { max-width: 150px; font-size: 14px; }
  .gp-nav a:not(.gp-btn):not(.gp-lang a) { display: none; }
  .gp-services-grid { grid-template-columns: 1fr; }
  .gp-notice-inner { flex-wrap: wrap; padding: 16px 18px; font-size: 14px; }
}

/* Soften legacy content area under new chrome */
.page .grid-row,
.page .content {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.page-content-alt .grid-row.composer {
  max-width: 1180px;
  padding-left: 20px;
  padding-right: 20px;
}
.page-content-alt .columns-col img.pic,
.page-content-alt .wysiwyg img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.page-content-alt h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem) !important;
  font-weight: 800 !important;
  color: var(--gp-ink) !important;
  line-height: 1.15 !important;
}

/* CMS Middle Part sections (PageId 6 & 7) */
.gp-mid {
  padding: 48px 20px;
}
.gp-mid-light { background: #fff; }
.gp-mid-accent { background: #f3f6f5; }
.gp-mid-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.gp-mid-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}
.gp-mid-grid-single {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}
.gp-mid-copy h2 {
  margin: 0 0 16px;
  font-family: Syne, Manrope, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gp-ink) !important;
  line-height: 1.15;
}
.gp-mid-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--gp-ink-2);
  font-weight: 500;
}
.gp-mid-body p { margin: 0 0 12px; }
.gp-mid-body span[style*="background-color"] {
  background: transparent !important;
}
.gp-mid-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #dbe8e4;
  box-shadow: 0 16px 40px rgba(11, 21, 24, .08);
}
.gp-mid-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}
.gp-mid-banner {
  margin-bottom: 28px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #dbe8e4;
  box-shadow: 0 16px 40px rgba(11, 21, 24, .1);
}
.gp-mid-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  object-position: center;
}
.gp-mid-counter { margin-top: 20px; }

@media (max-width: 900px) {
  .gp-mid-grid { grid-template-columns: 1fr; }
  .gp-mid-banner img { max-height: 220px; }
}

/* Footer readability under new public chrome */
.page-footer-top {
  background: #fff;
  border-top: 1px solid #dbe8e4;
  padding-top: 24px;
}
.page-footer-top .widget-alt .head {
  color: var(--gp-ink) !important;
  font-weight: 800;
}
.page-footer-top .widget-alt .cont,
.page-footer-top .widget-alt .cont li,
.page-footer-top .widget-alt .cont p {
  color: var(--gp-ink-2) !important;
}
.page-footer-top marquee {
  display: block;
}

/* New public footer */
.gp-footer {
  background: #0b1518;
  color: rgba(255,255,255,.88);
  margin-top: 24px;
}
.gp-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 20px 28px;
}
.gp-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.gp-footer-col h3 {
  margin: 0 0 14px;
  font-family: Syne, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff !important;
}
.gp-footer-news,
.gp-footer-contact,
.gp-footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gp-footer-news li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
}
.gp-footer-news li:last-child { border-bottom: 0; }
.gp-footer-about {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  margin-bottom: 14px;
}
.gp-footer-about p { margin: 0 0 8px; color: inherit !important; }
.gp-footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.82);
}
.gp-footer-contact i {
  width: 18px;
  text-align: center;
  color: var(--gp-teal-bright);
  margin-top: 2px;
}
.gp-footer-contact a,
.gp-footer-social a,
.gp-footer-copy a,
.gp-footer-nav a {
  color: rgba(255,255,255,.82) !important;
  text-decoration: none !important;
}
.gp-footer-contact a:hover,
.gp-footer-social a:hover,
.gp-footer-copy a:hover,
.gp-footer-nav a:hover {
  color: var(--gp-teal-bright) !important;
}
.gp-footer-social li { margin-bottom: 8px; }
.gp-footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}
.gp-footer-social img { height: 18px; width: auto; }
.gp-footer-extra { margin-top: 16px; }
.gp-footer-extra-title {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  color: rgba(255,255,255,.6);
}
.gp-footer-extra img {
  max-width: 180px;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
}
.gp-footer-muted { color: rgba(255,255,255,.45); font-size: 14px; }
.gp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.25);
}
.gp-footer-bottom-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.gp-footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}
.gp-footer-nav a { font-size: 13px; font-weight: 600; }
.gp-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

@media (max-width: 900px) {
  .gp-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .gp-footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* Inner pages: Services, imeicheck, CMS pages */
.gp-page {
  background: #f3f6f5;
  min-height: 40vh;
}
.gp-page-head {
  background: linear-gradient(145deg, #0b1518 0%, #143038 55%, #0f766e 140%);
  color: #fff;
  padding: 28px 20px 32px;
}
.gp-page-head-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.gp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
}
.gp-breadcrumb a {
  color: var(--gp-teal-bright) !important;
  text-decoration: none !important;
}
.gp-breadcrumb a:hover { color: #fff !important; }
.gp-page-head h1 {
  margin: 0;
  font-family: Syne, Manrope, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff !important;
  line-height: 1.1;
}
.gp-page-body {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 20px 48px;
}
.gp-page-card {
  background: #fff;
  border: 1px solid #dbe8e4;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(11, 21, 24, .06);
  overflow: hidden;
}
.gp-page-card-accent {
  border-color: #b8e4dc;
  background: linear-gradient(180deg, #fff 0%, #f8fffd 100%);
}
.gp-page-content {
  padding: 28px 32px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gp-ink-2);
}
.gp-page-content p { margin: 0 0 12px; }
.gp-page-content a {
  color: var(--gp-teal) !important;
  font-weight: 700;
  word-break: break-word;
}
.gp-page-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 12px;
}
.gp-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e4eeeb;
}

/* Services listing — modern layout */
.gp-svc-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.gp-svc-subtitle {
  margin: 6px 0 0;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  font-weight: 600;
}
.gp-svc-currency {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.gp-svc-currency-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.gp-svc-currency-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.gp-svc-curr-pill {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.gp-svc-curr-pill:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.35);
}
.gp-svc-curr-pill.is-active {
  background: #fff;
  color: var(--gp-ink);
  border-color: #fff;
}
.gp-svc-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 20px 48px;
}
.gp-svc-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gp-svc-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  border: 1px solid #dbe8e4;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 8px 24px rgba(11, 21, 24, .05);
}
.gp-svc-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--gp-ink-2) !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background .2s ease, color .2s ease;
}
.gp-svc-tab i {
  width: 18px;
  text-align: center;
  color: var(--gp-teal);
}
.gp-svc-tab:hover {
  background: #ecfdf8;
  color: var(--gp-teal) !important;
}
.gp-svc-tab.is-active {
  background: var(--gp-teal);
  color: #fff !important;
}
.gp-svc-tab.is-active i { color: #fff; }
.gp-svc-panel {
  background: #fff;
  border: 1px solid #dbe8e4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11, 21, 24, .05);
}
.gp-svc-panel-head {
  padding: 12px 14px;
  border-bottom: 1px solid #eef4f2;
}
.gp-svc-search {
  width: 100%;
  border: 1px solid #dbe8e4;
  border-radius: 10px;
  padding: 10px 12px 10px 34px;
  font-size: 14px;
  font-family: inherit;
  color: var(--gp-ink);
  background: #fafcfb url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="%236b7f7a" viewBox="0 0 16 16"><path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242 1.006a5 5 0 1 1 0-10 5 5 0 0 1 0 10z"/></svg>') no-repeat 12px center;
  outline: none;
}
.gp-svc-search:focus {
  border-color: var(--gp-teal);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, .15);
}
.gp-svc-panel-title {
  padding: 14px 16px;
  background: var(--gp-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.gp-svc-panel-title i { color: var(--gp-teal-bright); margin-right: 8px; }
.gp-svc-cats {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  max-height: 360px;
  overflow-y: auto;
}
.gp-svc-cats li { margin: 0; }
.gp-svc-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  color: var(--gp-ink-2) !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  border-left: 3px solid transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.gp-svc-cat i { color: var(--gp-teal); font-size: 11px; width: 14px; text-align: center; }
.gp-svc-cat:hover {
  background: #ecfdf8;
  color: var(--gp-teal) !important;
}
.gp-svc-cat.is-active {
  background: #ecfdf8;
  color: var(--gp-teal) !important;
  border-left-color: var(--gp-teal);
  font-weight: 800;
}
.gp-svc-main { min-width: 0; }
.gp-svc-group {
  background: #fff;
  border: 1px solid #dbe8e4;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 10px 28px rgba(11, 21, 24, .05);
}
.gp-svc-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(90deg, #f3f6f5 0%, #fff 100%);
  border-bottom: 1px solid #eef4f2;
}
.gp-svc-group-head h2 {
  margin: 0;
  font-family: Syne, Manrope, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gp-ink) !important;
}
.gp-svc-group-head span {
  font-size: 12px;
  font-weight: 700;
  color: var(--gp-muted);
  background: #ecfdf8;
  padding: 4px 10px;
  border-radius: 999px;
}
.gp-svc-list { display: flex; flex-direction: column; }
.gp-svc-table-wrap {
  width: 100%;
  overflow-x: auto;
}
.gp-svc-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  table-layout: fixed;
}
.gp-svc-table thead th {
  text-align: left;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gp-muted);
  background: #f7faf9;
  padding: 12px 16px;
  border-bottom: 1px solid #e4eeeb;
  vertical-align: middle;
}
.gp-svc-table thead th.gp-col-price,
.gp-svc-table td.gp-col-price {
  text-align: right;
  width: 14%;
}
.gp-svc-table thead th.gp-col-time,
.gp-svc-table td.gp-col-time {
  text-align: center;
  width: 20%;
}
.gp-svc-table thead th.gp-col-action,
.gp-svc-table td.gp-col-action {
  text-align: right;
  width: 18%;
}
.gp-svc-table tbody tr {
  border-bottom: 1px solid #eef4f2;
  transition: background .15s ease;
}
.gp-svc-table tbody tr:last-child { border-bottom: 0; }
.gp-svc-table tbody tr:hover { background: #fafcfb; }
.gp-svc-table td {
  padding: 14px 16px;
  vertical-align: middle;
  font-size: 14px;
  color: var(--gp-ink-2);
}
.gp-col-name { width: 48%; }
.gp-col-price { white-space: nowrap; }
.gp-col-time { }
.gp-col-action { }
.gp-price {
  display: inline-block;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gp-ink) !important;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}
.gp-price-cur {
  color: var(--gp-muted);
  font-weight: 600;
  font-size: 0.82rem;
  margin-right: 2px;
}
.gp-col-price strong {
  font-family: Manrope, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gp-ink) !important;
}
.gp-svc-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gp-ink) !important;
  font-weight: 700;
  text-decoration: none !important;
  line-height: 1.35;
}
.gp-svc-name:hover { color: var(--gp-teal) !important; }
.gp-svc-name img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}
.gp-svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gp-muted);
  background: #f3f6f5;
  border-radius: 999px;
  padding: 6px 10px;
}
.gp-svc-badge i { color: var(--gp-teal); }
.gp-svc-table .gp-svc-order {
  min-height: 34px;
  padding: 0 14px;
  font-size: 12px;
}

/* Service details page */
.gp-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}
.gp-detail-card {
  background: #fff;
  border: 1px solid #dbe8e4;
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 18px;
  box-shadow: 0 10px 28px rgba(11, 21, 24, .05);
}
.gp-detail-card h2 {
  margin: 0 0 16px;
  font-family: Syne, Manrope, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gp-ink) !important;
}
.gp-detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}
.gp-detail-meta > div {
  background: #f7faf9;
  border: 1px solid #e4eeeb;
  border-radius: 14px;
  padding: 14px 16px;
}
.gp-detail-meta dt {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gp-muted);
}
.gp-detail-meta dt i { color: var(--gp-teal); margin-right: 4px; }
.gp-detail-meta dd {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--gp-ink);
}
.gp-detail-price {
  font-family: Syne, Manrope, sans-serif;
  font-size: 1.35rem !important;
  color: var(--gp-teal) !important;
}
.gp-detail-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gp-ink-2);
}
.gp-detail-body p { margin: 0 0 10px; }
.gp-detail-empty {
  margin: 0;
  color: var(--gp-muted);
  font-size: 14px;
}
.gp-detail-buy {
  position: sticky;
  top: 88px;
  background: #0b1518;
  color: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(11, 21, 24, .2);
}
.gp-detail-buy-price {
  font-family: Syne, Manrope, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
}
.gp-detail-buy-time {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}
.gp-detail-buy-time i { color: var(--gp-teal-bright); margin-right: 6px; }
.gp-detail-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  background: var(--gp-teal) !important;
  color: #fff !important;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none !important;
  margin-bottom: 12px;
}
.gp-detail-buy-btn:hover { background: var(--gp-teal-bright) !important; }
.gp-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  padding: 8px 0 0;
  opacity: .92;
}
.gp-detail-back:hover,
.gp-detail-back:focus-visible {
  color: var(--gp-teal-bright) !important;
  opacity: 1;
}
.gp-svc-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #eef4f2;
  transition: background .15s ease;
}
.gp-svc-item:last-child { border-bottom: 0; }
.gp-svc-item:hover { background: #fafcfb; }
.gp-svc-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ecfdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.gp-svc-item-icon i { color: var(--gp-teal); font-size: 18px; }
.gp-svc-item-icon img { max-width: 100%; max-height: 100%; object-fit: contain; }
.gp-svc-item-body { min-width: 0; }
.gp-svc-item-body h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}
.gp-svc-item-body h3 a {
  color: var(--gp-ink) !important;
  text-decoration: none !important;
}
.gp-svc-item-body h3 a:hover { color: var(--gp-teal) !important; }
.gp-svc-item-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.gp-svc-delivery {
  font-size: 12px;
  font-weight: 600;
  color: var(--gp-muted);
}
.gp-svc-delivery i { color: var(--gp-teal); margin-right: 4px; }
.gp-svc-item-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.gp-svc-price {
  text-align: right;
}
.gp-svc-price strong {
  display: block;
  font-family: Syne, Manrope, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gp-teal);
  line-height: 1.1;
}
.gp-svc-price small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gp-muted);
}
.gp-svc-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--gp-teal) !important;
  color: #fff !important;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease;
}
.gp-svc-order:hover {
  background: var(--gp-teal-bright) !important;
  transform: translateY(-1px);
}
.gp-svc-empty {
  text-align: center;
  padding: 64px 24px;
  background: #fff;
  border: 1px dashed #dbe8e4;
  border-radius: 18px;
  color: var(--gp-muted);
}
.gp-svc-empty i {
  font-size: 42px;
  color: #cbd5e1;
  margin-bottom: 16px;
}
.gp-svc-empty h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: var(--gp-ink) !important;
}
.gp-svc-empty p { margin: 0; font-size: 14px; }

/* Footer extras */
.gp-footer-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gp-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gp-footer-links li { margin-bottom: 8px; }
.gp-footer-links a {
  color: rgba(255,255,255,.82) !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
}
.gp-footer-links a:hover { color: var(--gp-teal-bright) !important; }
.gp-footer-about a {
  color: var(--gp-teal-bright) !important;
  text-decoration: none !important;
  word-break: break-word;
}
.gp-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.gp-footer-copy a { color: rgba(255,255,255,.7) !important; }
#scroll-top.scroll-top {
  background: var(--gp-teal) !important;
  color: #fff !important;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(13, 148, 136, .35);
}

/* Login / Register */
.gp-page-auth .gp-page-body { max-width: 960px; }
.gp-page-auth-wide .gp-page-body { max-width: 820px; }
.gp-auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 20px;
  align-items: stretch;
}
.gp-auth-card {
  background: #fff;
  border: 1px solid #dbe8e4;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(11, 21, 24, .06);
  height: 100%;
}
.gp-auth-card-wide { max-width: 820px; margin: 0 auto; }
.gp-auth-card h2 {
  margin: 0 0 20px;
  font-family: Syne, Manrope, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gp-ink) !important;
}
.gp-auth-side {
  background: linear-gradient(160deg, #0b1518 0%, #143038 45%, #0f766e 100%);
  color: #fff;
  border-color: transparent;
  display: flex;
  flex-direction: column;
}
.gp-auth-side-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
}
.gp-auth-side h2 {
  color: #fff !important;
  padding-bottom: 16px;
  margin-bottom: 16px !important;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.gp-auth-side-text {
  margin: 0 0 18px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.6;
}
.gp-auth-benefits {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.gp-auth-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  line-height: 1.45;
}
.gp-auth-benefits i {
  color: var(--gp-teal-bright);
  margin-top: 2px;
  flex-shrink: 0;
}
.gp-auth-form { display: flex; flex-direction: column; gap: 14px; }
.gp-auth-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}
.gp-field { display: flex; flex-direction: column; gap: 6px; }
.gp-field-span { grid-column: 1 / -1; }
.gp-field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gp-ink-2);
}
.gp-field input[type="text"],
.gp-field input[type="password"],
.gp-field input[type="email"],
.gp-field select,
.gp-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid #dbe8e4;
  border-radius: 12px;
  background: #f9fcfb;
  font-size: 14px;
  color: var(--gp-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.gp-field input:focus,
.gp-field select:focus,
.gp-field textarea:focus {
  outline: none;
  border-color: var(--gp-teal);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, .15);
  background: #fff;
}
.gp-field-check .gp-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gp-ink-2);
  cursor: pointer;
  user-select: none;
}
.gp-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--gp-teal);
  -webkit-appearance: checkbox;
  appearance: auto;
  cursor: pointer;
}
.gp-auth-card-title {
  margin: 0 0 18px;
  font-family: Syne, Manrope, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gp-ink) !important;
}
.gp-auth-side .gp-auth-outline {
  background: #fff !important;
  color: var(--gp-ink) !important;
  border: none !important;
  margin-top: auto;
  min-height: 48px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.gp-auth-side .gp-auth-outline:hover {
  background: var(--gp-teal-bright) !important;
  color: #fff !important;
  transform: translateY(-1px);
}
.gp-page-auth .select2-container--default .select2-selection--single {
  min-height: 44px;
  border: 1px solid #dbe8e4;
  border-radius: 12px;
  background: #f9fcfb;
  padding: 6px 10px;
}
.gp-page-auth .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 30px;
  color: var(--gp-ink);
  padding-left: 4px;
}
.gp-page-auth .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 42px;
}
.gp-page-auth .select2-container { width: 100% !important; }
.gp-page-auth .popupContainer,
.gp-page-auth #lean_overlay { display: none !important; }
.gp-auth-section {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gp-teal);
}
.gp-auth-submit,
.gp-auth-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  width: 100%;
}
.gp-auth-submit {
  background: var(--gp-teal) !important;
  color: #fff !important;
}
.gp-auth-submit:hover { background: var(--gp-teal-bright) !important; }
.gp-auth-outline {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,.55) !important;
}
.gp-auth-outline:hover {
  background: rgba(255,255,255,.12) !important;
  border-color: #fff !important;
}
.gp-auth-foot { margin: 4px 0 0; font-size: 13px; }
.gp-auth-foot a { color: var(--gp-teal) !important; font-weight: 700; }
.gp-auth-alert {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 14px;
}
.gp-auth-alert-success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}
.gp-auth-lead {
  margin: -8px 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--gp-muted);
}
.gp-auth-switch {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--gp-muted);
}
.gp-auth-switch a { color: var(--gp-teal) !important; font-weight: 700; }
.gp-captcha-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.gp-auth-contact {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--gp-ink-2);
  line-height: 1.6;
}
.gp-auth-result {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 36px 32px;
}
.gp-auth-result h2 {
  margin: 0 0 12px;
  font-family: Syne, Manrope, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gp-ink) !important;
}
.gp-auth-result-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1;
}
.gp-auth-result-success { color: var(--gp-teal); }
.gp-auth-result-error { color: #dc2626; }
.gp-auth-result-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gp-auth-result-actions-split {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.gp-auth-result-actions .gp-auth-submit,
.gp-auth-result-actions .gp-auth-outline-dark {
  width: auto;
  min-width: 180px;
  padding: 0 24px;
}
.gp-auth-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none !important;
  background: transparent !important;
  color: var(--gp-ink) !important;
  border: 2px solid #dbe8e4 !important;
}
.gp-auth-outline-dark:hover {
  border-color: var(--gp-teal) !important;
  color: var(--gp-teal) !important;
}

@media (max-width: 1100px) {
  .gp-footer-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .gp-svc-layout { grid-template-columns: 1fr; }
  .gp-svc-sidebar { position: static; }
  .gp-page-content { padding: 20px; }
  .gp-footer-grid-4 { grid-template-columns: 1fr; }
  .gp-svc-head-row { flex-direction: column; align-items: flex-start; }
  .gp-detail-grid { grid-template-columns: 1fr; }
  .gp-detail-meta { grid-template-columns: 1fr; }
  .gp-detail-buy { position: static; }
  .gp-auth-grid { grid-template-columns: 1fr; }
  .gp-auth-form-grid { grid-template-columns: 1fr; }
  .gp-svc-table { min-width: 0; }
  .gp-svc-table thead { display: none; }
  .gp-svc-table,
  .gp-svc-table tbody,
  .gp-svc-table tr,
  .gp-svc-table td { display: block; width: 100%; }
  .gp-svc-table tr {
    padding: 14px 16px;
    border-bottom: 1px solid #eef4f2;
  }
  .gp-svc-table td {
    padding: 6px 0;
    text-align: left !important;
  }
  .gp-svc-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gp-muted);
    margin-bottom: 4px;
  }
  .gp-col-action .gp-svc-order { width: 100%; }
}

/* Free IMEI checker (/imeicheck) — imeivalidate-style */
.gp-body-checker { background: #070b14 !important; }
.gp-body-checker .gp-top { background: rgba(7,11,20,.92); border-bottom: 1px solid rgba(148,163,184,.1); }
.gp-body-checker .gp-footer { border-top: 1px solid rgba(148,163,184,.12); margin-top: 0; }
.gp-checker-page {
  position: relative;
  padding: 48px 20px 72px;
  overflow: hidden;
  background: #070b14;
  margin-bottom: 0;
}
.gp-checker-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -8%, rgba(20,184,166,.38), transparent 58%),
    radial-gradient(ellipse 45% 35% at 88% 42%, rgba(6,182,212,.14), transparent),
    linear-gradient(180deg, #070b14 0%, #0a1628 100%);
  pointer-events: none;
}
.gp-checker-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 22%, #000 20%, transparent 72%);
  pointer-events: none;
}
.gp-checker-shell { position: relative; z-index: 1; max-width: 920px; margin: 0 auto; }
.gp-checker-head { text-align: center; margin-bottom: 32px; }
.gp-checker-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px;
  border: 1px solid rgba(45,212,191,.45);
  background: rgba(20,184,166,.14);
  color: #5eead4; font-size: 13px; font-weight: 600;
  margin-bottom: 22px;
  box-shadow: 0 0 28px rgba(20,184,166,.18);
}
.gp-checker-head h1 {
  margin: 0 0 16px;
  font-family: Syne, Manrope, sans-serif;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800; line-height: 1.06;
  color: #fff;
}
.gp-checker-head h1 em {
  font-style: normal;
  color: #5eead4;
}
.gp-checker-lead {
  max-width: 640px; margin: 0 auto;
  color: #94a3b8; font-size: 1.05rem; line-height: 1.7;
}
.gp-checker-form { max-width: 880px; margin: 0 auto 12px; }
.gp-checker-bar {
  display: flex; align-items: stretch; min-height: 58px;
  padding: 1px; border-radius: 15px;
  background: linear-gradient(135deg, rgba(45,212,191,.55), rgba(6,182,212,.25), rgba(45,212,191,.35));
  box-shadow: 0 20px 50px rgba(2,6,23,.45), 0 0 60px rgba(20,184,166,.12);
}
.gp-checker-bar > div,
.gp-checker-bar > button { background: rgba(11,15,25,.94); }
.gp-checker-svc {
  position: relative;
  flex: 0 0 260px;
  max-width: 260px;
  border-right: 1px solid rgba(148,163,184,.14);
  border-radius: 14px 0 0 14px;
}
.gp-checker-svc-btn {
  width: 100%; height: 56px; border: 0; background: transparent;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 0 16px; color: #e2e8f0; font-size: 13px; font-weight: 600;
  text-align: left; cursor: pointer;
}
.gp-checker-svc-btn svg { flex-shrink: 0; color: #94a3b8; transition: transform .2s; }
.gp-checker-svc.is-open .gp-checker-svc-btn svg { transform: rotate(180deg); }
.gp-checker-svc-label {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.gp-checker-svc-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 100%;
  width: max-content;
  max-width: min(320px, calc(100vw - 32px));
  z-index: 50;
  padding: 6px;
  border-radius: 12px;
  background: #0f172a;
  border: 1px solid rgba(148,163,184,.14);
  box-shadow: 0 18px 40px rgba(2,6,23,.55);
}
.gp-checker-svc.is-open .gp-checker-svc-menu { display: block; }
.gp-checker-svc-opt {
  display: block; width: 100%;
  padding: 11px 14px; margin: 0;
  border: 0; border-radius: 8px;
  background: transparent; color: #cbd5e1;
  font-size: 13px; font-weight: 500; text-align: left;
  cursor: pointer; line-height: 1.35;
  transition: background .15s, color .15s;
}
.gp-checker-svc-opt:hover { background: rgba(148,163,184,.1); color: #e2e8f0; }
.gp-checker-svc-opt.is-selected { background: rgba(20,184,166,.14); color: #5eead4; }
.gp-checker-svc-native {
  position: absolute; width: 1px; height: 1px; opacity: 0;
  pointer-events: none; overflow: hidden;
}
.gp-checker-svc-backdrop[hidden] { display: none !important; }
.gp-checker-svc-backdrop {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(2,6,23,.75);
  backdrop-filter: blur(3px);
}
body.gp-checker-svc-open { overflow: hidden; }
.gp-checker-bar-input { flex: 1 1 auto; min-width: 0; display: flex; }
.gp-checker-bar-input input {
  width: 100%; height: 56px; border: 0; background: transparent;
  color: #f8fafc; padding: 0 18px; font-size: 15px;
}
.gp-checker-bar-input input::placeholder { color: #64748b; }
.gp-checker-bar-input input:focus { outline: none; }
.gp-checker-bar-btn {
  flex: 0 0 auto; min-width: 148px; border: 0;
  border-radius: 0 13px 13px 0;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 24px;
  background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 48%, #0d9488 100%) !important;
  color: #042f2e; font-size: 15px; font-weight: 700; cursor: pointer;
  box-shadow: 0 8px 24px rgba(20,184,166,.35);
  transition: filter .15s, transform .15s;
}
.gp-checker-bar-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.gp-checker-bar-btn:disabled,
.gp-checker-bar-btn.is-loading { opacity: .65; cursor: wait; transform: none; }
.gp-checker-hint { text-align: center; color: #64748b; font-size: 13px; margin: 0 0 36px; }
.gp-checker-alert {
  padding: 16px 18px; border-radius: 14px; margin-bottom: 20px;
  background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.25); color: #fecaca;
}
.gp-checker-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 900px; margin: 8px auto 0;
}
.gp-checker-feature {
  padding: 24px 20px; border-radius: 18px;
  border: 1px solid rgba(148,163,184,.14);
  background: rgba(15,23,42,.42);
  backdrop-filter: blur(14px);
  text-align: center;
  box-shadow: 0 16px 40px rgba(2,6,23,.28), inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.gp-checker-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(45,212,191,.32);
  box-shadow: 0 24px 48px rgba(2,6,23,.42), 0 0 32px rgba(20,184,166,.08);
}
.gp-checker-feature-ico {
  width: 52px; height: 52px; margin: 0 auto 14px;
  display: grid; place-items: center; border-radius: 14px;
  background: rgba(20,184,166,.12);
  box-shadow: 0 0 28px rgba(20,184,166,.18), inset 0 1px 0 rgba(255,255,255,.06);
}
.gp-checker-feature-ico svg { width: 26px; height: 26px; color: #2dd4bf; }
.gp-checker-feature h3 {
  margin: 0 0 6px; color: #fff; font-size: 15px; font-weight: 700;
}
.gp-checker-feature p {
  margin: 0; color: #94a3b8; font-size: 13px; line-height: 1.5;
}
.gp-body-checker .gp-footer { margin-top: 0; }
.gp-checker-modal[hidden] { display: none !important; }
.gp-checker-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.gp-checker-modal-backdrop {
  position: absolute; inset: 0; background: rgba(2,6,23,.78);
  backdrop-filter: blur(4px);
}
.gp-checker-modal-dialog {
  position: relative; width: min(920px, 100%);
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(45,212,191,.18);
  background: rgba(11,15,25,.98);
  box-shadow: 0 32px 64px rgba(2,6,23,.65);
}
.gp-checker-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid rgba(148,163,184,.12);
}
.gp-checker-modal-head h2 { margin: 0; color: #f8fafc; font-size: 1.05rem; }
.gp-checker-modal-x {
  border: 0; background: transparent; color: #94a3b8;
  font-size: 1.5rem; line-height: 1; cursor: pointer;
}
.gp-checker-modal-body {
  max-height: min(78vh, 680px); overflow: auto; padding: 0;
  background: rgba(15,23,42,.98);
  scrollbar-width: thin;
  scrollbar-color: rgba(45,212,191,.35) rgba(15,23,42,.5);
}
.gp-checker-modal-body::-webkit-scrollbar { width: 8px; }
.gp-checker-modal-body::-webkit-scrollbar-track { background: rgba(15,23,42,.5); }
.gp-checker-modal-body::-webkit-scrollbar-thumb {
  background: rgba(45,212,191,.35);
  border-radius: 8px;
}
.gp-checker-modal.is-loading .gp-checker-modal-body { overflow: hidden; }
.gp-checker-modal.is-success .gp-checker-modal-status { padding: 10px 20px; font-size: 13px; }
.gp-checker-modal-status {
  padding: 14px 22px; color: #cbd5e1; font-size: 14px;
  border-bottom: 1px solid rgba(148,163,184,.08);
}
.gp-checker-modal-status.is-loading {
  display: flex; align-items: center; gap: 16px;
  min-height: 220px; justify-content: center; flex-direction: column;
  text-align: center; border-bottom: 0;
  background: rgba(15,23,42,.98);
}
.gp-checker-modal.is-loading .gp-checker-modal-status.is-loading { min-height: 260px; }
.gp-checker-modal-status.is-loading strong { color: #f8fafc; font-size: 16px; display: block; }
.gp-checker-modal-status.is-loading small { color: #64748b; display: block; margin-top: 6px; max-width: 320px; line-height: 1.5; }
.gp-checker-modal-status.is-success { color: #5eead4; background: rgba(20,184,166,.1); }
.gp-checker-modal-status.is-error { color: #fca5a5; background: rgba(248,113,113,.08); }
.gp-checker-spin {
  width: 46px; height: 46px;
  border: 3px solid rgba(148,163,184,.18); border-top-color: #2dd4bf;
  border-radius: 50%; animation: gp-spin .75s linear infinite;
}
@keyframes gp-spin { to { transform: rotate(360deg); } }
.gp-checker-result-shell { padding: 0; }
.gp-checker-result-hero {
  padding: 18px 20px 16px;
  border-bottom: 1px solid rgba(148,163,184,.1);
  background: linear-gradient(180deg, rgba(20,184,166,.06) 0%, rgba(2,6,23,.15) 100%);
}
.gp-checker-result-device {
  margin: 0 0 10px; font-size: 1.15rem; font-weight: 700;
  color: #f8fafc; line-height: 1.35;
}
.gp-checker-result-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.gp-checker-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 10px; border-radius: 8px;
  border: 1px solid rgba(148,163,184,.14);
  background: rgba(2,6,23,.45);
  font-size: 12px; color: #cbd5e1;
}
.gp-checker-chip strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: #f8fafc; font-weight: 600;
}
.gp-checker-status-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 10px; padding: 14px 18px;
  border-bottom: 1px solid rgba(148,163,184,.08);
  background: rgba(2,6,23,.28);
}
.gp-checker-status-card {
  display: flex; flex-direction: column; gap: 5px;
  min-height: 64px; padding: 10px 12px; border-radius: 12px;
  border: 1px solid rgba(148,163,184,.12);
  background: rgba(15,23,42,.72); text-align: center;
}
.gp-checker-status-lbl {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: #64748b;
}
.gp-checker-status-card strong {
  font-size: 13px; font-weight: 600; color: #f8fafc; word-break: break-word; line-height: 1.35;
}
.gp-checker-status-card.is-good { border-color: rgba(45,212,191,.28); background: rgba(20,184,166,.08); }
.gp-checker-status-card.is-good strong { color: #5eead4; }
.gp-checker-status-card.is-warn { border-color: rgba(251,191,36,.28); background: rgba(245,158,11,.08); }
.gp-checker-status-card.is-warn strong { color: #fcd34d; }
.gp-checker-status-card.is-bad { border-color: rgba(248,113,113,.28); background: rgba(248,113,113,.08); }
.gp-checker-status-card.is-bad strong { color: #fca5a5; }
.gp-checker-details { padding: 14px 18px 18px; }
.gp-checker-details h4 {
  margin: 0 0 10px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; color: #64748b;
}
.gp-checker-detail-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px;
}
.gp-checker-detail-card {
  display: flex; flex-direction: column; gap: 4px;
  min-height: 56px; padding: 9px 11px; border-radius: 10px;
  border: 1px solid rgba(148,163,184,.1);
  background: rgba(2,6,23,.35);
}
.gp-checker-detail-lbl {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; color: #64748b; line-height: 1.3;
}
.gp-checker-detail-val {
  font-size: 12px; font-weight: 600; color: #f8fafc;
  word-break: break-word; line-height: 1.35;
}
.gp-checker-detail-card.is-good { border-color: rgba(45,212,191,.28); background: rgba(20,184,166,.06); }
.gp-checker-detail-card.is-good .gp-checker-detail-val { color: #5eead4; }
.gp-checker-detail-card.is-warn { border-color: rgba(251,191,36,.28); }
.gp-checker-detail-card.is-warn .gp-checker-detail-val { color: #fcd34d; }
.gp-checker-detail-card.is-bad { border-color: rgba(248,113,113,.28); }
.gp-checker-detail-card.is-bad .gp-checker-detail-val { color: #fca5a5; }
.gp-checker-modal-foot {
  padding: 14px 20px; border-top: 1px solid rgba(148,163,184,.12);
  display: flex; justify-content: flex-end; gap: 10px;
}
.gp-checker-modal-copy {
  min-width: 120px; height: 40px; border-radius: 10px;
  border: 1px solid rgba(148,163,184,.22);
  background: rgba(15,23,42,.85); color: #cbd5e1;
  font-weight: 600; cursor: pointer;
}
.gp-checker-modal-copy:hover { border-color: rgba(45,212,191,.35); color: #5eead4; }
.gp-checker-modal-close {
  min-width: 120px; height: 40px; border: 0; border-radius: 10px;
  background: linear-gradient(135deg, #2dd4bf, #0d9488);
  color: #042f2e; font-weight: 700; cursor: pointer;
}
body.gp-checker-modal-open { overflow: hidden; }
@media (max-width: 767px) {
  .gp-checker-bar { flex-direction: column; border-radius: 14px; overflow: visible; }
  .gp-checker-svc { flex: 1 1 auto; max-width: none; border-right: 0; border-bottom: 1px solid rgba(148,163,184,.12); border-radius: 14px 14px 0 0; }
  .gp-checker-svc.is-open .gp-checker-svc-menu {
    position: fixed; left: 12px; right: 12px; bottom: max(12px, env(safe-area-inset-bottom));
    top: auto; width: auto; min-width: 0; max-width: none;
    max-height: min(360px, 58vh); overflow-y: auto;
  }
  .gp-checker-bar-btn { width: 100%; border-radius: 0 0 13px 13px; min-height: 52px; }
  .gp-checker-features { grid-template-columns: 1fr; }
  .gp-checker-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gp-checker-status-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gp-checker-modal-foot { flex-wrap: wrap; }
  .gp-checker-modal-copy, .gp-checker-modal-close { flex: 1 1 auto; min-width: 0; }
}
@media (max-width: 479px) {
  .gp-checker-detail-grid { grid-template-columns: 1fr; }
}

