/* =============================================================
   GPRESS HOMEPAGE — Custom CSS
   Child theme of GeneratePress
   ============================================================= */

/*  Google Font import  */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

/* =============================================================
   GENERATEPRESS LAYOUT OVERRIDE — Front Page Only
   GP sets .site-content { display:flex } which puts the
   main content area and sidebar side-by-side, and constrains
   .content-area to ~70% width. We break out of that completely.
   ============================================================= */
body.gp-homepage #page,
body.gp-homepage .site-content,
body.gp-homepage #content,
body.gp-homepage #primary,
body.gp-homepage .site-main,
body.gp-homepage .content-area {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove GP's container padding that clips full-width sections */
body.gp-homepage .one-container .site-content,
body.gp-homepage .separate-containers .inside-article,
body.gp-homepage .one-container .site-content {
  padding: 0 !important;
}

/* Remove GP footer/header that appear inside our template via get_footer() */
body.gp-homepage .site-footer {
  display: none !important;
}

/* Hide GP's default navigation header on front page since our topbar replaces it */
/* Uncomment below if you want to also hide GP's main header:
body.gp-homepage .site-header { display: none !important; }
*/

/* Fix GP's ul/ol list resets which add unwanted margins inside our cards */
body.gp-homepage .gp-section ul,
body.gp-homepage .gp-section ol {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* Fix GP's paragraph margin-bottom interfering with our card layouts */
body.gp-homepage .gp-section p {
  margin-bottom: 0;
}

/* Fix GP's img max-width (it's fine) and h1-h6 font-size:100% override */
body.gp-homepage .gp-section h1,
body.gp-homepage .gp-section h2,
body.gp-homepage .gp-section h3,
body.gp-homepage .gp-section h4,
body.gp-homepage .gp-section h5,
body.gp-homepage .gp-section h6 {
  font-size: revert;
  font-weight: revert;
  line-height: revert;
  margin-bottom: revert;
  font-family: revert;
}

/* Re-apply our font family after the revert above */
body.gp-homepage .gp-section h1,
body.gp-homepage .gp-section h2,
body.gp-homepage .gp-section h3 {
  font-family: var(--gp-font-head);
}

/*  Design Tokens  */
:root {
  --gp-primary: #6C63FF;
  --gp-primary-dark: #4f46e5;
  --gp-accent: #00D4AA;
  --gp-dark: #0d0f1a;
  --gp-dark-2: #141628;
  --gp-dark-3: #1e2138;
  --gp-light: #f8f9ff;
  --gp-alt: #f0f1ff;
  --gp-text: #1a1d33;
  --gp-muted: #6b7280;
  --gp-border: rgba(108, 99, 255, .15);
  --gp-white: #ffffff;
  --gp-radius: 14px;
  --gp-radius-lg: 22px;
  --gp-shadow: 0 4px 24px rgba(108, 99, 255, .12);
  --gp-shadow-lg: 0 12px 48px rgba(108, 99, 255, .2);
  --gp-transition: .3s cubic-bezier(.4, 0, .2, 1);
  --gp-font-body: 'Inter', sans-serif;
  --gp-font-head: 'Plus Jakarta Sans', sans-serif;
  --gp-container: 1220px;
}

/*  Reset / Base  */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.gp-homepage {
  font-family: var(--gp-font-body);
  color: var(--gp-text);
  background: var(--gp-white);
  -webkit-font-smoothing: antialiased;
}

/*  Container  */
.gp-container {
  width: 100%;
  max-width: var(--gp-container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/*  Buttons  */
.gp-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  border-radius: 50px;
  font-family: var(--gp-font-head);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: var(--gp-transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.gp-btn--primary {
  background: linear-gradient(135deg, var(--gp-primary) 0%, var(--gp-primary-dark) 100%);
  color: var(--gp-white);
  box-shadow: 0 4px 18px rgba(108, 99, 255, .35);
}

.gp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(108, 99, 255, .5);
  color: var(--gp-white);
}

.gp-btn--outline {
  border-color: var(--gp-primary);
  color: var(--gp-primary);
  background: transparent;
}

.gp-btn--outline:hover {
  background: var(--gp-primary);
  color: var(--gp-white);
  transform: translateY(-2px);
}

.gp-btn--full {
  width: 100%;
  justify-content: center;
}

/*  Section Helpers  */
.gp-section {
  padding: 5rem 0;
}

.gp-section--dark {
  background: var(--gp-dark);
}

.gp-section--alt {
  background: var(--gp-alt);
}

.gp-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.gp-section-header--light .gp-section-title,
.gp-section-header--light .gp-section-desc {
  color: var(--gp-white);
}

.gp-section-tag {
  display: inline-block;
  background: rgba(108, 99, 255, .1);
  color: var(--gp-primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .9rem;
}

.gp-section-tag--light {
  background: rgba(255, 255, 255, .12);
  color: var(--gp-accent);
}

.gp-section-title {
  font-family: var(--gp-font-head);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gp-text);
  margin-bottom: .75rem;
}

.gp-section-desc {
  color: var(--gp-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* =============================================================
   TOP BAR
   ============================================================= */
.gp-topbar {
  background: var(--gp-dark);
  color: rgba(255, 255, 255, .75);
  font-size: .82rem;
  line-height: 1;
  z-index: 200;
  position: relative;
}

.gp-topbar__inner {
  max-width: var(--gp-container);
  margin-inline: auto;
  padding: .55rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.gp-topbar__links,
.gp-topbar__contact {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.gp-topbar a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  transition: color var(--gp-transition);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.gp-topbar a:hover {
  color: var(--gp-accent);
}

.gp-topbar svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.gp-topbar__cta-btn {
  background: var(--gp-primary) !important;
  color: var(--gp-white) !important;
  padding: .3rem .9rem;
  border-radius: 50px;
  font-weight: 600;
}

.gp-topbar__cta-btn:hover {
  background: var(--gp-primary-dark) !important;
  color: var(--gp-white) !important;
}

/* =============================================================
   HERO
   ============================================================= */
.gp-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 5rem;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0f1a 0%, #1a1240 45%, #0f2040 100%);
}

.gp-hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gp-hero__particles span {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gp-primary), var(--gp-accent));
  opacity: .15;
  animation: gp-float linear infinite;
}

.gp-hero__particles span:nth-child(1) {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -60px;
  animation-duration: 20s;
}

.gp-hero__particles span:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 5%;
  opacity: .1;
  animation-duration: 25s;
  animation-delay: -5s;
}

.gp-hero__particles span:nth-child(3) {
  width: 120px;
  height: 120px;
  bottom: 15%;
  left: 10%;
  animation-duration: 18s;
  animation-delay: -8s;
}

.gp-hero__particles span:nth-child(4) {
  width: 80px;
  height: 80px;
  bottom: 30%;
  right: 20%;
  opacity: .2;
  animation-duration: 22s;
  animation-delay: -3s;
}

.gp-hero__particles span:nth-child(5) {
  width: 60px;
  height: 60px;
  top: 40%;
  left: 5%;
  animation-duration: 30s;
  animation-delay: -12s;
}

.gp-hero__particles span:nth-child(6) {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -80px;
  opacity: .07;
  animation-duration: 28s;
  animation-delay: -6s;
}

.gp-hero__particles span:nth-child(7) {
  width: 50px;
  height: 50px;
  top: 20%;
  left: 50%;
  animation-duration: 16s;
  animation-delay: -9s;
}

.gp-hero__particles span:nth-child(8) {
  width: 90px;
  height: 90px;
  top: 60%;
  right: 35%;
  opacity: .12;
  animation-duration: 24s;
  animation-delay: -14s;
}

@keyframes gp-float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.gp-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.gp-hero__eyebrow {
  display: inline-block;
  background: rgba(108, 99, 255, .2);
  border: 1px solid rgba(108, 99, 255, .35);
  color: var(--gp-accent);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.gp-hero__headline {
  font-family: var(--gp-font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--gp-white);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -.03em;
}

.gp-hero__highlight {
  background: linear-gradient(135deg, var(--gp-primary) 0%, var(--gp-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gp-hero__subtext {
  color: rgba(255, 255, 255, .72);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.gp-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.gp-hero__actions .gp-btn--outline {
  border-color: rgba(255, 255, 255, .4);
  color: rgba(255, 255, 255, .9);
}

.gp-hero__actions .gp-btn--outline:hover {
  border-color: var(--gp-white);
  background: rgba(255, 255, 255, .1);
  color: var(--gp-white);
}

.gp-hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.gp-hero__trust-item {
  text-align: center;
}

.gp-hero__trust-item strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gp-white);
  font-family: var(--gp-font-head);
}

.gp-hero__trust-item span {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
}

.gp-hero__trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .2);
}

.gp-hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 13px;
  z-index: 2;
}

.gp-hero__scroll-hint span {
  display: block;
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, .6);
  border-radius: 2px;
  margin: 6px auto 0;
  animation: gp-scroll-hint 1.6s infinite;
}

@keyframes gp-scroll-hint {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1
  }

  50% {
    transform: translateY(12px);
    opacity: .3
  }
}

/* =============================================================
   SERVICES
   ============================================================= */
.gp-services {
  background: var(--gp-white);
}

.gp-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gp-service-card {
  background: var(--gp-white);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--gp-transition);
  position: relative;
  overflow: hidden;
}

.gp-service-card__title {
  font-family: var(--gp-font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gp-text);
  margin-bottom: .6rem;
  position: relative;
  z-index: 5;
}

.gp-service-card__title a {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: color var(--gp-transition);
  position: relative;
  z-index: 10;
  cursor: pointer;
  pointer-events: auto !important;
}

.gp-service-card__title a:hover {
  color: var(--gp-primary);
}

.gp-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108, 99, 255, .04) 0%, transparent 60%);
  opacity: 0;
  transition: var(--gp-transition);
  pointer-events: none;
}

.gp-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gp-shadow-lg);
  border-color: var(--gp-primary);
}

.gp-service-card:hover::before {
  opacity: 1;
}

.gp-service-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
}

.gp-service-card__icon svg {
  width: 100%;
  height: 100%;
}

.gp-service-card__icon--1 {
  color: #6C63FF;
}

.gp-service-card__icon--2 {
  color: #00D4AA;
}

.gp-service-card__icon--3 {
  color: #FF6584;
}

.gp-service-card__icon--4 {
  color: #FCA44D;
}

.gp-service-card__icon--5 {
  color: #4ECBFB;
}

.gp-service-card__icon--6 {
  color: #A78BFA;
}



.gp-service-card__desc {
  color: var(--gp-muted);
  font-size: .93rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* =============================================================
   PROCESS
   ============================================================= */
.gp-process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.gp-process__step {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.gp-process__step-num {
  font-family: var(--gp-font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(108, 99, 255, .25);
  line-height: 1;
  margin-bottom: .5rem;
}

.gp-process__step-icon {
  width: 52px;
  height: 52px;
  background: rgba(108, 99, 255, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
  color: var(--gp-accent);
}

.gp-process__step-icon svg {
  width: 26px;
  height: 26px;
}

.gp-process__step-title {
  font-family: var(--gp-font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--gp-white);
  margin-bottom: .45rem;
}

.gp-process__step-desc {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
}

.gp-process__connector {
  flex: 0 0 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gp-primary), var(--gp-accent));
  align-self: center;
  margin-top: -60px;
  border-radius: 1px;
}

/* =============================================================
   WHY WORK WITH US
   ============================================================= */
.gp-why {
  background: var(--gp-white);
}

.gp-why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.gp-why__copy .gp-section-title {
  text-align: left;
}

.gp-why__copy .gp-section-desc {
  text-align: left;
  margin-bottom: 2rem;
}

.gp-why__features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.gp-why__feature-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--gp-light);
  border-radius: var(--gp-radius);
  border: 1px solid var(--gp-border);
  transition: var(--gp-transition);
}

.gp-why__feature-card:hover {
  box-shadow: var(--gp-shadow);
  border-color: var(--gp-primary);
  transform: translateX(4px);
}

.gp-why__feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--gp-primary);
}

.gp-why__feature-icon svg {
  width: 100%;
  height: 100%;
}

.gp-why__feature-card h3 {
  font-family: var(--gp-font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gp-text);
  margin-bottom: .3rem;
}

.gp-why__feature-card p {
  font-size: .9rem;
  color: var(--gp-muted);
  line-height: 1.6;
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.gp-testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gp-testimonial {
  background: var(--gp-dark-3);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--gp-radius-lg);
  padding: 2rem;
  transition: var(--gp-transition);
}

.gp-testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--gp-primary);
  box-shadow: 0 10px 40px rgba(108, 99, 255, .2);
}

.gp-testimonial__stars {
  color: #FBBF24;
  font-size: 1.1rem;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}

.gp-testimonial__quote {
  font-size: .97rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
}

.gp-testimonial__author {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.gp-testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gp-primary), var(--gp-accent));
  color: var(--gp-white);
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gp-testimonial__avatar--2 {
  background: linear-gradient(135deg, #FF6584, #FCA44D);
}

.gp-testimonial__avatar--3 {
  background: linear-gradient(135deg, #00D4AA, #4ECBFB);
}

.gp-testimonial__author strong {
  display: block;
  color: var(--gp-white);
  font-size: .93rem;
}

.gp-testimonial__author span {
  color: rgba(255, 255, 255, .45);
  font-size: .82rem;
}

.gp-testimonials__dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
}

.gp-testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  border: none;
  cursor: pointer;
  transition: var(--gp-transition);
  padding: 0;
}

.gp-testimonials__dot--active,
.gp-testimonials__dot:hover {
  background: var(--gp-primary);
  width: 24px;
  border-radius: 4px;
}

/* =============================================================
   FAQ
   ============================================================= */
.gp-faq {
  background: var(--gp-white);
}

.gp-faq__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.gp-faq__list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.gp-faq__item {
  background: var(--gp-light);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  overflow: hidden;
  transition: border-color var(--gp-transition);
}

.gp-faq__item[open] {
  border-color: var(--gp-primary);
}

.gp-faq__question {
  padding: 1.1rem 1.4rem;
  font-family: var(--gp-font-head);
  font-size: .98rem;
  font-weight: 700;
  color: var(--gp-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.gp-faq__question::-webkit-details-marker {
  display: none;
}

.gp-faq__question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gp-primary);
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--gp-transition);
}

details[open] .gp-faq__question::after {
  content: '−';
}

.gp-faq__answer {
  padding: 0 1.4rem 1.2rem;
  color: var(--gp-muted);
  font-size: .93rem;
  line-height: 1.7;
}

.gp-faq__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gp-faq__sidebar-title {
  font-family: var(--gp-font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gp-text);
  margin-bottom: .25rem;
}

.gp-faq__sidebar-item {
  display: flex;
  gap: .85rem;
  padding: .9rem;
  background: var(--gp-light);
  border-radius: var(--gp-radius);
  border: 1px solid var(--gp-border);
  text-decoration: none;
  transition: var(--gp-transition);
  align-items: center;
}

.gp-faq__sidebar-item:hover {
  border-color: var(--gp-primary);
  box-shadow: var(--gp-shadow);
}

.gp-faq__sidebar-thumb {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.gp-faq__sidebar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gp-faq__sidebar-thumb--placeholder {
  background: linear-gradient(135deg, var(--gp-primary), var(--gp-accent));
  opacity: .3;
}

.gp-faq__sidebar-tag {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gp-primary);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: block;
  margin-bottom: .25rem;
}

.gp-faq__sidebar-info h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gp-text);
  line-height: 1.35;
}

.gp-faq__sidebar-empty p {
  color: var(--gp-muted);
}

.gp-faq__sidebar-empty a {
  color: var(--gp-primary);
}

/* =============================================================
   CTA
   ============================================================= */
.gp-cta {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.gp-cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0f1a 0%, #1e1050 50%, #0a2040 100%);
}

.gp-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}

.gp-cta__title {
  font-family: var(--gp-font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--gp-white);
  line-height: 1.2;
  margin-bottom: .8rem;
}

.gp-cta__desc {
  color: rgba(255, 255, 255, .68);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.gp-cta__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.gp-cta__list li {
  color: rgba(255, 255, 255, .8);
  font-size: .95rem;
  display: flex;
  gap: .65rem;
}

.gp-cta__list li span {
  color: var(--gp-accent);
  font-size: 1rem;
}

.gp-cta__form-wrap {
  background: var(--gp-white);
  border-radius: var(--gp-radius-lg);
  padding: 2.25rem;
}

.gp-cta__form-wrap h3 {
  font-family: var(--gp-font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gp-text);
  margin-bottom: 1.4rem;
}

.gp-cta__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gp-cta__form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.gp-cta__form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gp-text);
}

.gp-cta__form-group input,
.gp-cta__form-group select {
  padding: .7rem 1rem;
  border: 1.5px solid var(--gp-border);
  border-radius: 8px;
  font-size: .93rem;
  font-family: var(--gp-font-body);
  color: var(--gp-text);
  background: var(--gp-light);
  transition: border-color var(--gp-transition);
  outline: none;
}

.gp-cta__form-group input:focus,
.gp-cta__form-group select:focus {
  border-color: var(--gp-primary);
}

/* =============================================================
   RESOURCES
   ============================================================= */
.gp-resources {
  background: var(--gp-white);
}

.gp-resources__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.gp-resource-card {
  border-radius: var(--gp-radius-lg);
  overflow: hidden;
  border: 1px solid var(--gp-border);
  transition: var(--gp-transition);
  background: var(--gp-white);
}

.gp-resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--gp-shadow-lg);
}

.gp-resource-card__thumb {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--gp-alt);
}

.gp-resource-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gp-resource-card:hover .gp-resource-card__thumb img {
  transform: scale(1.04);
}

.gp-resource-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gp-primary), var(--gp-accent));
  opacity: .25;
}

.gp-resource-card__category {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--gp-primary);
  color: var(--gp-white);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 50px;
}

.gp-resource-card__body {
  padding: 1.4rem 1.5rem;
}

.gp-resource-card__date {
  font-size: .8rem;
  color: var(--gp-muted);
  display: block;
  margin-bottom: .5rem;
}

.gp-resource-card__title {
  font-family: var(--gp-font-head);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: .6rem;
}

.gp-resource-card__title a {
  color: var(--gp-text);
  text-decoration: none;
}

.gp-resource-card__title a:hover {
  color: var(--gp-primary);
}

.gp-resource-card__excerpt {
  font-size: .88rem;
  color: var(--gp-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.gp-resource-card__readmore {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gp-primary);
  text-decoration: none;
}

.gp-resources__footer {
  text-align: center;
}

.gp-resources__empty {
  text-align: center;
  padding: 3rem;
  color: var(--gp-muted);
}

.gp-resources__empty a {
  color: var(--gp-primary);
}

/* =============================================================
   EVENTS
   ============================================================= */
.gp-events__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.gp-event-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--gp-white);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-lg);
  transition: var(--gp-transition);
}

.gp-event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--gp-shadow);
  border-color: var(--gp-primary);
}

.gp-event-card__num {
  font-family: var(--gp-font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gp-primary);
  opacity: .25;
  line-height: 1;
  flex-shrink: 0;
}

.gp-event-card__body {
  flex: 1;
}

.gp-event-card__date {
  font-size: .8rem;
  color: var(--gp-primary);
  font-weight: 600;
  display: block;
  margin-bottom: .4rem;
}

.gp-event-card__title {
  font-family: var(--gp-font-head);
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.gp-event-card__title a {
  color: var(--gp-text);
  text-decoration: none;
}

.gp-event-card__title a:hover {
  color: var(--gp-primary);
}

.gp-event-card__excerpt {
  font-size: .86rem;
  color: var(--gp-muted);
  line-height: 1.6;
}

.gp-event-card__link {
  color: var(--gp-primary);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  flex-shrink: 0;
  padding-top: .25rem;
}

.gp-events__empty {
  text-align: center;
  padding: 3rem;
  color: rgba(255, 255, 255, .5);
}

.gp-events__empty a {
  color: var(--gp-accent);
}

.gp-events__empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* =============================================================
   TRENDING
   ============================================================= */
.gp-trending__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gp-trending-card {
  background: var(--gp-dark-3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--gp-radius-lg);
  overflow: hidden;
  transition: var(--gp-transition);
}

.gp-trending-card:hover {
  transform: translateY(-5px);
  border-color: var(--gp-primary);
  box-shadow: 0 12px 40px rgba(108, 99, 255, .25);
}

.gp-trending-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gp-dark-2);
}

.gp-trending-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gp-trending-card:hover .gp-trending-card__thumb img {
  transform: scale(1.05);
}

.gp-trending-card__body {
  padding: 1.25rem 1.4rem;
}

.gp-trending-card__tag {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gp-accent);
  display: block;
  margin-bottom: .5rem;
}

.gp-trending-card__title {
  font-family: var(--gp-font-head);
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: .5rem;
}

.gp-trending-card__title a {
  color: var(--gp-white);
  text-decoration: none;
}

.gp-trending-card__title a:hover {
  color: var(--gp-accent);
}

.gp-trending-card__excerpt {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
  margin-bottom: .75rem;
}

.gp-trending-card__date {
  font-size: .78rem;
  color: rgba(255, 255, 255, .35);
}

.gp-trending__empty {
  text-align: center;
  padding: 3rem;
  color: rgba(255, 255, 255, .5);
}

.gp-trending__empty a {
  color: var(--gp-accent);
}

/* =============================================================
   FOOTER
   ============================================================= */
.gp-footer {
  background: var(--gp-dark);
}

.gp-footer__top {
  padding: 5rem 0 3.5rem;
}

.gp-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.gp-footer__logo {
  display: inline-block;
  font-family: var(--gp-font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gp-white);
  text-decoration: none;
  margin-bottom: 1rem;
}

.gp-footer__tagline {
  color: rgba(255, 255, 255, .5);
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.gp-footer__socials {
  display: flex;
  gap: .65rem;
}

.gp-footer__social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: var(--gp-transition);
}

.gp-footer__social-link:hover {
  background: var(--gp-primary);
  color: var(--gp-white);
}

.gp-footer__social-link svg {
  width: 16px;
  height: 16px;
}

.gp-footer__heading {
  font-family: var(--gp-font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--gp-white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
}

.gp-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.gp-footer__links li a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  font-size: .9rem;
  transition: color var(--gp-transition);
}

.gp-footer__links li a:hover {
  color: var(--gp-accent);
}

.gp-footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.gp-footer__contact-list li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, .55);
  font-size: .9rem;
  line-height: 1.5;
}

.gp-footer__contact-list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: .15rem;
  color: var(--gp-primary);
}

.gp-footer__contact-list a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
}

.gp-footer__contact-list a:hover {
  color: var(--gp-accent);
}

.gp-footer__contact-list address {
  font-style: normal;
}

.gp-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 1.25rem 0;
}

.gp-footer__bottom .gp-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.gp-footer__bottom p {
  color: rgba(255, 255, 255, .35);
  font-size: .85rem;
}

.gp-footer__bottom nav {
  display: flex;
  gap: 1.25rem;
}

.gp-footer__bottom nav a {
  color: rgba(255, 255, 255, .35);
  font-size: .85rem;
  text-decoration: none;
}

.gp-footer__bottom nav a:hover {
  color: var(--gp-white);
}

/* =============================================================
   INTERSECTION OBSERVER ANIMATIONS
   ============================================================= */
.gp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.gp-reveal.gp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
/* =============================================================
   PRICING TABLE
   ============================================================= */
.gp-pricing {
  background: var(--gp-alt); /* Light background for contrast */
}

.gp-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
  gap: 1.75rem; /* Gap between pricing cards */
  margin-top: 3rem;
}

.gp-pricing-card {
  background: var(--gp-white);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--gp-transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--gp-shadow);
}

.gp-pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gp-shadow-lg);
  border-color: var(--gp-primary);
}

.gp-pricing-card__title {
  font-family: var(--gp-font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gp-text);
  margin-bottom: 1rem;
}

.gp-pricing-card__description {
  color: var(--gp-muted);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1; /* Allows description to take available space */
}

.gp-pricing-card__price {
  margin-bottom: 1.5rem;
}

.gp-pricing-card__amount {
  font-family: var(--gp-font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gp-primary);
  display: block;
}

.gp-pricing-card__cycle {
  font-size: .9rem;
  color: var(--gp-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  display: block;
  margin-top: .2rem;
}

.gp-pricing-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
  flex-grow: 1; /* Allows features list to take available space */
}

.gp-pricing-card__features li {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--gp-text);
  font-size: .9rem;
  margin-bottom: .8rem;
}

.gp-pricing-card__features li:last-child {
  margin-bottom: 0;
}

.gp-pricing-card__features li span { /* Checkmark icon */
  color: var(--gp-accent);
  font-size: 1.1rem;
}

/* Responsive adjustments for pricing table */
@media (max-width: 1024px) {
  .gp-pricing__grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
  }
}

@media (max-width: 768px) {
  .gp-pricing__grid {
    grid-template-columns: 1fr; /* 1 column on small screens */
  }
  .gp-pricing-card {
    padding: 2rem 1.5rem;
  }
  .gp-pricing-card__title {
    font-size: 1.3rem;
  }
  .gp-pricing-card__amount {
    font-size: 2.2rem;
  }
}
   
@media (max-width: 1024px) {
  .gp-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gp-why__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gp-cta__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gp-resources__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gp-trending__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gp-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gp-faq__grid {
    grid-template-columns: 1fr;
  }

  .gp-testimonials__track {
    grid-template-columns: repeat(2, 1fr);
  }

  .gp-process__connector {
    display: none;
  }

  .gp-process__steps {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .gp-section {
    padding: 3.5rem 0;
  }

  .gp-services__grid {
    grid-template-columns: 1fr;
  }

  .gp-testimonials__track {
    grid-template-columns: 1fr;
  }

  .gp-resources__grid {
    grid-template-columns: 1fr;
  }

  .gp-trending__grid {
    grid-template-columns: 1fr;
  }

  .gp-events__grid {
    grid-template-columns: 1fr;
  }

  .gp-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gp-hero {
    min-height: 80vh;
  }

  .gp-hero__trust-divider {
    display: none;
  }

  .gp-cta__inner {
    grid-template-columns: 1fr;
  }

  .gp-topbar__links {
    display: none;
  }

  .gp-topbar__contact {
    justify-content: center;
    width: 100%;
  }

  .gp-process__step {
    min-width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .gp-section-title {
    font-size: 1.55rem;
  }

  .gp-hero__headline {
    font-size: 2rem;
  }

  .gp-topbar__cta-btn {
    display: none;
  }

  .gp-hero__trust {
    gap: 1.25rem;
  }
}