:root {
  --gp-red: #ce1126;
  --gp-blue: #0038a8;
  --gp-gold: #f8b500;
  --gp-green: #2f7d59;
  --gp-ink: #172033;
  --gp-muted: #647084;
  --gp-line: #dfe4ec;
  --gp-bg: #fbfcfd;
  --gp-soft: #f2f6f7;
  --gp-card: #ffffff;
  --gp-dark: #172033;
  --gp-radius: 18px;
  --gp-shadow: 0 24px 70px rgba(23, 32, 51, 0.12);
  --gp-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--gp-bg);
  color: var(--gp-ink);
  font-family: var(--gp-font);
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.gp-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.gp-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(251, 252, 253, 0.8);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.gp-header.is-scrolled {
  border-bottom: 1px solid rgba(223, 228, 236, 0.9);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(23, 32, 51, 0.06);
}

.gp-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.gp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.gp-brand__flag {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gp-red) 0 33%, #fff 33% 66%, var(--gp-blue) 66% 100%);
  color: transparent;
  box-shadow: inset 0 0 0 1px rgba(23, 32, 51, 0.1);
}

.gp-brand__text {
  font-size: 21px;
  background: linear-gradient(135deg, var(--gp-red), var(--gp-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gp-nav,
.gp-header__actions,
.gp-language-switcher {
  display: flex;
  align-items: center;
}

.gp-nav {
  gap: 26px;
}

.gp-nav a {
  color: var(--gp-muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.gp-nav a:hover {
  color: var(--gp-red);
}

.gp-header__actions {
  gap: 14px;
}

.gp-language-switcher {
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: #eef2f5;
}

.gp-language-switcher a {
  min-width: 38px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--gp-muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.gp-language-switcher a.is-active {
  background: var(--gp-red);
  color: #fff;
}

.gp-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gp-line);
  border-radius: 12px;
  background: #fff;
}

.gp-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--gp-ink);
}

.gp-main {
  min-height: 70vh;
}

.gp-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid var(--gp-red);
  border-radius: 12px;
  background: var(--gp-red);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.gp-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(206, 17, 38, 0.22);
}

.gp-button--outline {
  background: #fff;
  color: var(--gp-ink);
  border-color: var(--gp-line);
}

.gp-button--small {
  min-height: 38px;
  padding: 10px 15px;
  font-size: 13px;
}

.gp-button--wide {
  width: 100%;
}

.gp-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.gp-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(248, 181, 0, 0.18), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(0, 56, 168, 0.12), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #f8fbf8 48%, #f0f5fb 100%);
}

.gp-hero__image,
.gp-hero__shade {
  position: absolute;
  inset: 0;
}

.gp-hero__image {
  background-image: var(--gp-hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.gp-hero__shade {
  background:
    linear-gradient(90deg, rgba(251, 252, 253, 0.94) 0%, rgba(251, 252, 253, 0.84) 38%, rgba(251, 252, 253, 0.48) 66%, rgba(251, 252, 253, 0.18) 100%),
    linear-gradient(180deg, rgba(251, 252, 253, 0.2) 0%, rgba(251, 252, 253, 0.88) 100%);
}

.gp-hero__decor {
  position: absolute;
  inset: auto -160px -180px auto;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(206, 17, 38, 0.16), transparent 66%);
}

.gp-hero__inner {
  position: relative;
  z-index: 1;
  padding: 146px 0 74px;
  text-align: left;
}

.gp-hero__signal,
.gp-section-label,
.gp-section-heading span {
  color: var(--gp-red);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.gp-hero h1 {
  max-width: 760px;
  margin: 14px 0 22px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.02;
}

.gp-hero__subtitle {
  max-width: 690px;
  margin: 0 0 34px;
  color: var(--gp-muted);
  font-size: clamp(18px, 2.2vw, 23px);
}

.gp-hero .gp-actions {
  justify-content: flex-start;
}

.gp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 640px;
  margin: 60px 0 0;
  padding-top: 36px;
  border-top: 1px solid rgba(100, 112, 132, 0.22);
}

.gp-stats strong {
  display: block;
  color: var(--gp-blue);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.gp-stats div:first-child strong {
  color: var(--gp-red);
}

.gp-stats div:last-child strong {
  color: var(--gp-gold);
}

.gp-stats span {
  color: var(--gp-muted);
  font-size: 14px;
}

.gp-section {
  padding: 92px 0;
}

.gp-section--compact {
  padding: 46px 0;
}

.gp-section--tint {
  background: var(--gp-soft);
}

.gp-section--dark {
  background: var(--gp-dark);
  color: #fff;
}

.gp-section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.gp-section-heading h2,
.gp-about h2,
.gp-page-hero h1 {
  margin: 8px 0 14px;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.08;
}

.gp-section-heading p,
.gp-page-hero p,
.gp-about p,
.gp-contact p {
  color: var(--gp-muted);
  font-size: 18px;
}

.gp-section--dark .gp-section-heading p,
.gp-section--dark blockquote p {
  color: rgba(255, 255, 255, 0.72);
}

.gp-benefits,
.gp-card-grid,
.gp-pricing,
.gp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gp-benefits article,
.gp-card,
.gp-pricing article,
.gp-form,
.gp-sidebar__box,
.gp-contact__links a {
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  background: var(--gp-card);
  box-shadow: 0 12px 40px rgba(23, 32, 51, 0.06);
}

.gp-benefits article,
.gp-card,
.gp-pricing article,
.gp-sidebar__box {
  padding: 26px;
}

.gp-benefits h3,
.gp-card h3,
.gp-pricing h3,
.gp-sidebar h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.2;
}

.gp-benefits p,
.gp-card p {
  margin: 0;
  color: var(--gp-muted);
}

.gp-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(206, 17, 38, 0.1);
  color: var(--gp-red);
  font-weight: 900;
}

.gp-service-card {
  overflow: hidden;
  padding: 0;
}

.gp-service-card__media {
  height: 210px;
  margin: 0;
  overflow: hidden;
  background: #e9eef3;
}

.gp-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gp-service-card h3,
.gp-service-card p {
  padding-right: 26px;
  padding-left: 26px;
}

.gp-service-card h3 {
  margin-top: 24px;
}

.gp-service-card p {
  padding-bottom: 28px;
}

.gp-service-card:hover .gp-service-card__media img {
  transform: scale(1.035);
}

.gp-card--link {
  position: relative;
  min-height: 260px;
}

.gp-card--link img {
  width: calc(100% + 52px);
  max-width: none;
  height: 180px;
  margin: -26px -26px 22px;
  object-fit: cover;
  border-radius: var(--gp-radius) var(--gp-radius) 0 0;
}

.gp-card--link a {
  text-decoration: none;
}

.gp-read-more {
  display: inline-block;
  margin-top: 18px;
  color: var(--gp-red);
  font-weight: 800;
}

.gp-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 16px;
}

.gp-gallery figure {
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--gp-radius);
  background: #dfe4ec;
}

.gp-gallery figure:nth-child(1),
.gp-gallery figure:nth-child(4) {
  grid-row: span 2;
}

.gp-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-about {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.gp-about h2 span {
  color: var(--gp-blue);
}

.gp-check-list,
.gp-steps {
  padding-left: 0;
  list-style: none;
}

.gp-check-list li,
.gp-steps li {
  position: relative;
  margin: 12px 0;
  padding-left: 32px;
}

.gp-check-list li::before,
.gp-steps li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gp-green);
  color: #fff;
  content: "✓";
  font-size: 13px;
  font-weight: 900;
  line-height: 22px;
  text-align: center;
}

.gp-team {
  display: grid;
  gap: 18px;
}

.gp-team article {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--gp-line);
  border-radius: var(--gp-radius);
  background: #fff;
}

.gp-team img {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  object-fit: cover;
}

.gp-team h3,
.gp-team p {
  margin: 0;
}

.gp-testimonials blockquote {
  margin: 0;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--gp-radius);
  background: rgba(255, 255, 255, 0.06);
}

.gp-testimonials footer {
  margin-top: 18px;
  color: #fff;
  font-weight: 800;
}

.gp-pricing article {
  position: relative;
}

.gp-pricing article.is-popular {
  border-color: var(--gp-red);
  box-shadow: var(--gp-shadow);
}

.gp-pricing article > span {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(206, 17, 38, 0.1);
  color: var(--gp-red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.gp-pricing strong {
  display: block;
  margin: 18px 0 0;
  font-size: 46px;
  line-height: 1;
}

.gp-pricing small {
  color: var(--gp-muted);
}

.gp-pricing ul {
  min-height: 170px;
  padding-left: 18px;
  color: var(--gp-muted);
}

.gp-newsletter {
  padding: 0;
}

.gp-newsletter__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--gp-blue), var(--gp-red));
  color: #fff;
}

.gp-newsletter h2,
.gp-newsletter p {
  margin: 0;
}

.gp-newsletter p {
  color: rgba(255, 255, 255, 0.78);
}

.gp-newsletter form {
  display: flex;
  gap: 10px;
}

.gp-newsletter input,
.gp-form input,
.gp-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--gp-line);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--gp-ink);
  font: inherit;
}

.gp-newsletter .gp-button {
  border-color: #fff;
  background: #fff;
  color: var(--gp-ink);
}

.gp-faq {
  max-width: 860px;
  margin: 0 auto;
}

.gp-faq details {
  margin-bottom: 12px;
  border: 1px solid var(--gp-line);
  border-radius: 14px;
  background: #fff;
}

.gp-faq summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 850;
}

.gp-faq p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--gp-muted);
}

.gp-contact {
  background: var(--gp-soft);
}

.gp-contact__grid,
.gp-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
}

.gp-contact__links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.gp-contact__links a {
  display: block;
  padding: 18px;
  text-decoration: none;
}

.gp-contact__links span {
  display: block;
  color: var(--gp-muted);
}

.gp-form {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.gp-form h3 {
  margin: 0 0 8px;
}

.gp-form__status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
}

.gp-form__status.is-success {
  background: rgba(47, 125, 89, 0.12);
  color: var(--gp-green);
}

.gp-form__status.is-error {
  background: rgba(206, 17, 38, 0.1);
  color: var(--gp-red);
}

.gp-form label {
  display: grid;
  gap: 6px;
  color: var(--gp-muted);
  font-size: 14px;
  font-weight: 800;
}

.gp-page-hero {
  padding: 142px 0 74px;
  background: linear-gradient(135deg, #ffffff, #f1f6fb);
  text-align: center;
}

.gp-page-hero h1 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.gp-page-hero p {
  max-width: 760px;
  margin: 0 auto;
}

.gp-prose {
  max-width: 780px;
}

.gp-prose h2 {
  margin-top: 34px;
  font-size: 30px;
  line-height: 1.2;
}

.gp-prose h3 {
  margin-top: 26px;
  font-size: 23px;
}

.gp-prose p,
.gp-prose li {
  color: var(--gp-muted);
  font-size: 18px;
}

.gp-prose ul {
  padding-left: 22px;
}

.gp-detail__image {
  width: 100%;
  max-height: 420px;
  margin-bottom: 28px;
  border-radius: var(--gp-radius);
  object-fit: cover;
}

.gp-sidebar {
  align-self: start;
  position: sticky;
  top: 102px;
}

.gp-sidebar__box p {
  color: var(--gp-muted);
}

.gp-center {
  margin-top: 34px;
  text-align: center;
}

.gp-footer {
  padding: 60px 0 26px;
  background: #101827;
  color: rgba(255, 255, 255, 0.76);
}

.gp-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 34px;
}

.gp-brand--footer .gp-brand__text,
.gp-footer h3 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}

.gp-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.gp-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gp-footer__links li {
  margin: 8px 0;
}

.gp-footer__bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
}

.gp-whatsapp {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.36);
}

@media (max-width: 980px) {
  .gp-menu-toggle {
    display: block;
  }

  .gp-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--gp-line);
    border-radius: var(--gp-radius);
    background: #fff;
    box-shadow: var(--gp-shadow);
  }

  .gp-nav.is-open {
    display: flex;
  }

  .gp-nav a {
    padding: 12px;
  }

  .gp-header__actions {
    display: none;
  }

  .gp-benefits,
  .gp-card-grid,
  .gp-pricing,
  .gp-testimonials,
  .gp-about,
  .gp-contact__grid,
  .gp-detail,
  .gp-newsletter__inner,
  .gp-footer__grid {
    grid-template-columns: 1fr;
  }

  .gp-sidebar {
    position: static;
  }

  .gp-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .gp-container {
    width: min(100% - 26px, 1180px);
  }

  .gp-hero__inner {
    padding-top: 118px;
    text-align: center;
  }

  .gp-hero__shade {
    background:
      linear-gradient(180deg, rgba(251, 252, 253, 0.92) 0%, rgba(251, 252, 253, 0.78) 42%, rgba(251, 252, 253, 0.94) 100%);
  }

  .gp-hero h1,
  .gp-hero__subtitle {
    margin-right: auto;
    margin-left: auto;
  }

  .gp-hero .gp-actions {
    justify-content: center;
  }

  .gp-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gp-section {
    padding: 64px 0;
  }

  .gp-gallery {
    grid-template-columns: 1fr;
  }

  .gp-gallery figure,
  .gp-gallery figure:nth-child(1),
  .gp-gallery figure:nth-child(4) {
    min-height: 220px;
    grid-row: auto;
  }

  .gp-team article {
    grid-template-columns: 76px 1fr;
  }

  .gp-team img {
    width: 76px;
    height: 76px;
  }

  .gp-newsletter__inner {
    padding: 26px;
  }

  .gp-newsletter form {
    flex-direction: column;
  }
}
