
:root {
  --gp-primary: #ff2b2b;
  --gp-primary-deep: #b30012;
  --gp-navy: #0b1633;
  --gp-navy-2: #0a1020;
  --gp-text: #0d1321;
  --gp-muted: #6b7280;
  --gp-card: rgba(255,255,255,0.08);
  --gp-border: rgba(255,255,255,0.12);
  --gp-radius: 18px;
  --gp-shadow: 0 14px 40px rgba(0,0,0,0.18);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height:1.55;
  color:#0d1321;
  background:#ffffff;
}
a{ color: inherit; text-decoration: none; }
img{ max-width:100%; height:auto; }

.screen-reader-text{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}
.skip-link:focus{
  position:fixed !important; left:16px; top:16px;
  width:auto; height:auto; margin:0; clip:auto;
  padding:10px 14px; background:#fff; border-radius:10px;
  box-shadow: var(--gp-shadow); z-index:99999;
}

.gp-container{
  width:min(1140px, calc(100% - 40px));
  margin: 0 auto;
}
.gp-container--wide{
  width:min(1320px, calc(100% - 40px));
}
.gp-mt-20{ margin-top:20px; }
.gp-mt-24{ margin-top:24px; }
.gp-mt-32{ margin-top:32px; }
.gp-mb-12{ margin-bottom:12px; }
.gp-mb-16{ margin-bottom:16px; }
.gp-mb-24{ margin-bottom:24px; }

.gp-h1{ font-size: clamp(30px, 4vw, 46px); letter-spacing:-0.02em; margin:0 0 12px; }
.gp-h2{ font-size: clamp(24px, 3vw, 34px); letter-spacing:-0.02em; margin:0 0 10px; }
.gp-h3{ font-size: 18px; margin:0 0 8px; }
.gp-lead{ font-size: 16px; color: var(--gp-muted); margin:0; max-width: 70ch; }
.gp-text{ color:#111827; margin:0; }
.gp-muted{ color: var(--gp-muted); }

.gp-btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 650;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.gp-btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,0.16); }
.gp-btn--primary{ background: var(--gp-primary); color:#fff; }
.gp-btn--primary:hover{ background: #ff1f1f; }
.gp-btn--outline{ background: transparent; border-color: rgba(255,255,255,0.35); color:#fff; }
.gp-btn--ghost{ background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); color:#fff; }
.gp-btn--sm{ padding: 10px 14px; font-size: 14px; }

.gp-link{ color: var(--gp-primary); font-weight:650; }

.gp-header{
  position: sticky; top:0; z-index:1000;
  background: rgba(10,16,32,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.gp-header__inner{
  display:flex; align-items:center; gap:16px;
  min-height: 98px;
  padding: 8px 0;
}
.gp-brand{ display:flex; align-items:center; gap:12px; min-width:0; }
.gp-brand__link{ display:flex; align-items:center; gap:10px; min-width:0; }
.gp-brand__logoImage{ display:block; width:clamp(133px, 10.5vw, 168px); max-width:30vw; height:auto; object-fit:contain; }
.gp-brand__name{ color:#fff; font-weight:800; letter-spacing:-0.01em; }
.gp-logo-dot{ width:10px; height:10px; background: var(--gp-primary); border-radius:999px; box-shadow: 0 0 0 5px rgba(255,43,43,0.22); }
.custom-logo{ max-height:44px; width:auto; }

.gp-nav{ margin-left:auto; }
.gp-nav__list{
  display:flex; align-items:center; gap:14px;
  list-style:none; padding:0; margin:0;
}
.gp-nav__list a{
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  font-weight:700;
  line-height: 1.2;
  white-space: nowrap;
  padding: 10px 2px;
  position: relative;
}
.gp-nav__list a::after{
  content:"";
  position:absolute;
  left:0; bottom:6px;
  width:100%; height:2px;
  background: var(--gp-primary);
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .18s ease;
}
.gp-nav__list a:hover::after,
.gp-nav__list .current-menu-item > a::after{ transform: scaleX(1); }
.gp-header__cta{ display:flex; align-items:center; gap:10px; white-space: nowrap; }
.gp-header__cta .gp-btn{ padding: 12px 18px; }

.gp-nav__toggle{
  display:none;
  margin-left:auto;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 10px 12px;
  cursor:pointer;
}
.gp-nav__toggle-line{
  display:block;
  width: 20px; height:2px;
  background: rgba(255,255,255,0.9);
  margin:4px 0;
}

@media (max-width: 1080px){
  .gp-header__inner{ min-height: 80px; }
  .gp-brand__logoImage{ width:clamp(112px, 25vw, 144px); max-width:42vw; }
  .gp-header__cta{ display:none; }
  .gp-nav__toggle{ display:block; }
  .gp-nav{
    position: fixed;
    top: 70px; left: 16px; right: 16px;
    background: rgba(10,16,32,0.94);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    padding: 14px;
    transform: translateY(-10px);
    opacity:0;
    pointer-events:none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .gp-nav.is-open{ opacity:1; transform: translateY(0); pointer-events:auto; }
  .gp-nav__list{ flex-direction:column; align-items:flex-start; gap:6px; }
  .gp-nav__list a{ padding: 10px 8px; width:100%; }
  .gp-nav__list a::after{ bottom: 4px; left: 8px; width: calc(100% - 16px); }
}
@media (max-width: 420px){
  .gp-header__inner{ min-height: 72px; }
  .gp-brand__logoImage{ width:clamp(98px, 34vw, 119px); max-width:48vw; }
  .gp-header__inner{ gap:10px; }
}

.gp-section{ padding: 70px 0; }
.gp-section--light{ background: #f6f7fb; }
.gp-section__head{ display:flex; flex-direction:column; gap:10px; }

.gp-grid{ display:grid; gap:18px; }
.gp-grid--2{ grid-template-columns: 1.5fr 0.8fr; }
.gp-grid--3{ grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px){ .gp-grid--2{ grid-template-columns: 1fr; } }
@media (max-width: 980px){ .gp-grid--3{ grid-template-columns: 1fr; } }

.gp-card{
  border-radius: var(--gp-radius);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(17,24,39,0.06);
}
.gp-card__body{ padding: 18px; }
.gp-card--link{ transition: transform .15s ease, box-shadow .15s ease; }
.gp-card--link:hover{ transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.12); }

.gp-icon{ font-size: 22px; width:44px; height:44px; border-radius: 14px; display:flex; align-items:center; justify-content:center; background: rgba(255,43,43,0.10); }

.gp-service-badge{
  display:inline-flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius: 14px;
  background: rgba(255,43,43,0.12);
  color: var(--gp-primary-deep);
  font-weight:800;
  margin-bottom: 10px;
}

.gp-hero{
  position:relative;
  background: radial-gradient(1200px 600px at 15% 35%, rgba(255,43,43,0.22), transparent 55%),
              radial-gradient(1000px 600px at 85% 40%, rgba(179,0,18,0.22), transparent 55%),
              linear-gradient(180deg, var(--gp-navy-2), var(--gp-navy));
  color:#fff;
  padding: 70px 0 52px;
  overflow:hidden;
}
.gp-hero__bg{
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.10), transparent 38%),
    radial-gradient(circle at 70% 40%, rgba(255,255,255,0.08), transparent 44%),
    radial-gradient(circle at 50% 70%, rgba(255,255,255,0.06), transparent 40%);
  opacity: 0.9;
}
.gp-hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items:center;
}
@media (max-width: 980px){ .gp-hero__inner{ grid-template-columns: 1fr; } }

.gp-badge{
  display:inline-flex; align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  font-weight: 650;
  width: fit-content;
  margin-bottom: 14px;
}
.gp-hero__title{ font-size: clamp(34px, 4.6vw, 56px); line-height:1.05; letter-spacing:-0.03em; margin:0 0 14px; }
.gp-hero__subtitle{ color: rgba(255,255,255,0.86); margin: 0 0 18px; max-width: 62ch; }
.gp-hero__actions{ display:flex; gap:12px; flex-wrap:wrap; }

.gp-hero__trust{ display:flex; flex-wrap:wrap; gap:10px; }
.gp-pill{
  display:inline-flex; align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
  font-weight: 650;
  font-size: 14px;
}

.gp-hero-card{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}
.gp-hero-card__img{
  height: 210px;
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.05);
}
.gp-hero-card__content{ padding: 16px 16px 18px; }
.gp-hero-card__kicker{ font-weight:800; margin-bottom: 10px; }
.gp-list{ margin: 0 0 14px; padding-left: 18px; color: rgba(255,255,255,0.88); }
.gp-hero-card__actions{ display:flex; gap:10px; flex-wrap:wrap; }

.gp-hero__wave{
  position:absolute; left:0; right:0; bottom:-1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.06));
  mask-image: radial-gradient(80px 18px at 20px 20px, #000 98%, transparent 102%),
              radial-gradient(80px 18px at 100px 20px, #000 98%, transparent 102%),
              radial-gradient(80px 18px at 180px 20px, #000 98%, transparent 102%);
  opacity: .35;
}

.gp-rotator{
  display:inline-block;
  padding-left: 6px;
  color: #fff;
  position:relative;
}
.gp-rotator::after{
  content:"";
  display:inline-block;
  width: 10px; height: 1em;
  margin-left: 6px;
  border-right: 2px solid rgba(255,255,255,0.7);
  transform: translateY(3px);
  animation: gpCaret 1s infinite;
}
@keyframes gpCaret {
  0%, 50% { opacity:1; }
  51%, 100% { opacity:0; }
}

.gp-cta{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,43,43,0.10), rgba(255,255,255,0.0));
  border: 1px solid rgba(17,24,39,0.08);
}
@media (max-width: 720px){ .gp-cta{ flex-direction:column; align-items:flex-start; } }

.gp-footer{
  background: linear-gradient(180deg, var(--gp-navy), #070c18);
  color: rgba(255,255,255,0.86);
  padding: 56px 0 24px;
}
.gp-footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 20px;
}
@media (max-width: 980px){ .gp-footer__grid{ grid-template-columns: 1fr; } }
.gp-footer__title{ font-weight:900; color:#fff; font-size: 20px; margin-bottom: 8px; }
.gp-footer__brand{ display:inline-flex; align-items:center; width:fit-content; margin-bottom: 12px; }
.gp-footer__logoImage{ display:block; width:clamp(123px, 11.2vw, 161px); max-width:100%; height:auto; object-fit:contain; }
.gp-footer__heading{ color:#fff; margin: 6px 0 10px; }
.gp-footer__text{ margin:0; color: rgba(255,255,255,0.78); }
.gp-footer__meta{ display:flex; align-items:center; gap:10px; margin-top: 12px; }
.gp-dot{ width:6px; height:6px; background: rgba(255,255,255,0.35); border-radius: 999px; }
.gp-footer__links{ list-style:none; padding:0; margin:0; display:grid; gap: 8px; }
.gp-footer__links a{ color: rgba(255,255,255,0.82); }
.gp-footer__links a:hover{ color:#fff; text-decoration: underline; text-decoration-color: var(--gp-primary); }
.gp-footer__social,
.gp-footer__share{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  margin-top:16px;
}

.gp-footer__share{ margin-top:12px; }

.gp-footer__share > span{
  flex:0 0 100%;
  color:rgba(255,255,255,0.68);
  font-size:13px;
  font-weight:800;
  line-height:1.2;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.gp-social-link,
.gp-share-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  border:1px solid rgba(255,255,255,0.22);
  border-radius:999px;
  padding:8px 12px;
  color:#fff !important;
  background:rgba(255,255,255,0.08);
  font-size:14px;
  font-weight:850;
  line-height:1;
  text-decoration:none !important;
  transition:background .18s ease, border-color .18s ease, transform .18s ease;
}

.gp-social-link:hover,
.gp-social-link:focus,
.gp-share-link:hover,
.gp-share-link:focus{
  border-color:rgba(255,43,43,0.78);
  background:rgba(255,43,43,0.18);
  color:#fff !important;
  transform:translateY(-1px);
}

.gp-social-link__mark{
  display:inline-grid;
  place-items:center;
  min-width:22px;
  height:22px;
  margin-right:8px;
  border-radius:6px;
  color:#0b1224;
  background:#fff;
  font-size:13px;
  font-weight:950;
  text-transform:lowercase;
}

.gp-footer__bottom{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display:flex; justify-content:space-between; gap: 14px; flex-wrap:wrap;
  color: rgba(255,255,255,0.65);
}
.gp-footer__bottomlinks{ display:flex; align-items:center; gap: 10px; }
.gp-footer__bottomlinks a{ color: rgba(255,255,255,0.70); }
.gp-footer__bottomlinks a:hover{ color:#fff; }

.gp-content-area :is(h2,h3,h4){ margin-top: 22px; }
.gp-content-area a{ color: var(--gp-primary-deep); text-decoration: underline; text-decoration-color: rgba(255,43,43,0.35); }

.gp-reveal{ opacity:0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.gp-reveal.is-visible{ opacity:1; transform: translateY(0); }

