/* ── OUR GP HOME PAGE — paste into Appearance > Customise > Additional CSS ── */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700family=Playfair+Display:ital,wght@0,700;1,700display=swap');

/* CSS Variables */
.ourgp {
  --primary:#007B8C;--primary-dark:#005466;--primary-deep:#003d4d;
  --accent:#3DDAD8;--accent-dark:#2abcba;--accent-soft:#B2EFED;
  --light:#E0F7F7;--lighter:#F0FBFB;
  --text-dark:#0b2830;--text-mid:#1e4f5a;--text-muted:#4a7880;
  --border:#B2EFED;
  --warm-lightest:#FFF6F2;--warm-mid:#E8C4AE;--warm-deep:#7A3B1E;
  --r-sm:6px;--r-md:12px;--r-lg:20px;
  --sh:0 2px 12px rgba(0,123,140,0.12);--sh-lg:0 8px 36px rgba(0,123,140,0.18);
  font-family:'Inter',sans-serif;
  font-size:16px;
  line-height:1.65;
  color:#0b2830;
}

/* ── ESCAPE WORDPRESS CONTAINER ── */
.ourgp,
.ourgp * {
  box-sizing:border-box !important;
}

/* Force the WP content area to allow full width */
.ourgp {
  margin-left:calc(-50vw + 50%) !important;
  margin-right:calc(-50vw + 50%) !important;
  max-width:100vw !important;
  width:100vw !important;
  position:relative !important;
}

/* ── HERO ── */
.ourgp .hero {
  background:#003d4d !important;
  color:#fff !important;
  padding:0 !important;
  position:relative !important;
  overflow:hidden !important;
  min-height:580px !important;
  display:flex !important;
  align-items:stretch !important;
  width:100% !important;
}
.ourgp .hero-bg-img {
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center !important;
  z-index:0 !important;
}
.ourgp .hero-overlay {
  position:absolute !important;
  inset:0 !important;
  z-index:1 !important;
  background:linear-gradient(90deg,rgba(0,61,77,0.97) 0%,rgba(0,84,102,0.95) 35%,rgba(0,84,102,0.75) 58%,rgba(0,84,102,0.2) 75%,rgba(0,84,102,0.0) 100%) !important;
}
.ourgp .hero-container {
  position:relative !important;
  z-index:2 !important;
  width:100% !important;
  max-width:1200px !important;
  margin:0 auto !important;
  padding:0 40px !important;
}
.ourgp .hero-inner {
  display:grid !important;
  grid-template-columns:1.2fr 0.8fr !important;
  gap:40px !important;
  align-items:stretch !important;
  padding:80px 0 72px !important;
}
.ourgp .hero-badge {
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
  background:rgba(255,255,255,0.15) !important;
  border:1px solid rgba(255,255,255,0.3) !important;
  color:#fff !important;
  font-size:13px !important;
  font-weight:600 !important;
  padding:7px 16px !important;
  border-radius:24px !important;
  margin-bottom:22px !important;
}
.ourgp .hero-dot {
  width:8px !important;
  height:8px !important;
  background:#3DDAD8 !important;
  border-radius:50% !important;
  animation:ourgp-blink 2s infinite !important;
  display:inline-block !important;
}
@keyframes ourgp-blink{0%,100%{opacity:1;}50%{opacity:0.4;}}
.ourgp .hero h1 {
  font-family:'Playfair Display',serif !important;
  font-size:clamp(38px,5.5vw,62px) !important;
  font-weight:700 !important;
  line-height:1.1 !important;
  margin-bottom:20px !important;
  color:#fff !important;
}
.ourgp .hero h1 em { font-style:italic !important; color:#3DDAD8 !important; }
.ourgp .hero-sub {
  font-size:18px !important;
  color:rgba(255,255,255,0.88) !important;
  margin-bottom:32px !important;
  line-height:1.65 !important;
  max-width:480px !important;
}
.ourgp .hero-cta { display:flex !important; gap:12px !important; flex-wrap:wrap !important; align-items:center !important; margin-bottom:16px !important; }
.ourgp .hero-stats { display:flex !important; gap:0 !important; margin-top:36px !important; flex-wrap:wrap !important; }
.ourgp .hero-stat { border-left:3px solid #3DDAD8 !important; padding:0 28px 0 14px !important; }
.ourgp .hero-stat-num { font-size:26px !important; font-weight:700 !important; color:#fff !important; line-height:1.1 !important; white-space:nowrap !important; }
.ourgp .hero-stat-label { font-size:12px !important; color:rgba(255,255,255,0.65) !important; margin-top:2px !important; white-space:nowrap !important; }
.ourgp .hero-right-col { display:flex !important; align-items:flex-end !important; justify-content:center !important; padding:0 0 8px 0 !important; }
.ourgp .hero-trust-card {
  display:flex !important; align-items:center !important; gap:16px !important;
  background:#FFF6F2 !important; border:2px solid #E8C4AE !important;
  border-left:5px solid #7A3B1E !important; border-radius:12px !important;
  padding:16px 24px !important; width:100% !important; max-width:380px !important;
  box-shadow:0 6px 24px rgba(0,0,0,0.22) !important;
}
.ourgp .hero-trust-shield {
  width:56px !important; height:56px !important; background:#E8C4AE !important;
  border-radius:50% !important; display:flex !important; align-items:center !important;
  justify-content:center !important; flex-shrink:0 !important;
}
.ourgp .hero-trust-shield svg { stroke:#7A3B1E !important; width:28px !important; height:28px !important; }
.ourgp .hero-trust-card-text strong { display:block !important; font-size:15px !important; font-weight:700 !important; color:#7A3B1E !important; line-height:1.35 !important; margin-bottom:6px !important; }
.ourgp .hero-trust-card-text span { font-size:14px !important; color:#7A3B1E !important; opacity:0.85 !important; }

/* ── BUTTONS ── */
.ourgp .btn-primary {
  display:inline-flex !important; align-items:center !important; gap:8px !important;
  background:#007B8C !important; color:#fff !important; font-size:15px !important;
  font-weight:700 !important; padding:14px 28px !important; border-radius:6px !important;
  text-decoration:none !important; border:2px solid #007B8C !important; cursor:pointer !important;
  transition:background .2s,transform .15s !important; font-family:'Inter',sans-serif !important;
}
.ourgp .btn-primary:hover { background:#005466 !important; border-color:#005466 !important; transform:translateY(-1px) !important; color:#fff !important; }
.ourgp .btn-outline {
  display:inline-flex !important; align-items:center !important; gap:8px !important;
  background:transparent !important; color:#007B8C !important; font-size:15px !important;
  font-weight:700 !important; padding:13px 28px !important; border-radius:6px !important;
  text-decoration:none !important; border:2px solid #007B8C !important; transition:all .2s !important;
}
.ourgp .btn-outline:hover { background:#007B8C !important; color:#fff !important; }
.ourgp .btn-white {
  display:inline-flex !important; align-items:center !important; gap:8px !important;
  background:#fff !important; color:#003d4d !important; font-size:16px !important;
  font-weight:700 !important; padding:15px 30px !important; border-radius:6px !important;
  text-decoration:none !important; border:2px solid #fff !important; transition:all .2s !important;
}
.ourgp .btn-white:hover { background:#E0F7F7 !important; color:#003d4d !important; }
.ourgp .btn-ghost-white {
  display:inline-flex !important; align-items:center !important; gap:8px !important;
  background:rgba(255,255,255,0.15) !important; color:#fff !important; font-size:16px !important;
  font-weight:700 !important; padding:15px 30px !important; border-radius:6px !important;
  text-decoration:none !important; border:2px solid rgba(255,255,255,0.5) !important; transition:all .2s !important;
}
.ourgp .btn-ghost-white:hover { background:rgba(255,255,255,0.25) !important; border-color:#fff !important; color:#fff !important; }
.ourgp .btn-wa {
  display:inline-flex !important; align-items:center !important; gap:9px !important;
  background:#25D366 !important; color:#fff !important; font-size:15px !important;
  font-weight:700 !important; padding:13px 24px !important; border-radius:6px !important;
  text-decoration:none !important; border:2px solid #25D366 !important; transition:background .2s,transform .15s !important;
}
.ourgp .btn-wa:hover { background:#1ebe5d !important; color:#fff !important; }
.ourgp .btn-wa svg { width:20px !important; height:20px !important; fill:#fff !important; flex-shrink:0 !important; }

/* ── TYPOGRAPHY ── */
.ourgp .eyebrow {
  display:block !important; font-size:11px !important; font-weight:700 !important;
  letter-spacing:0.13em !important; text-transform:uppercase !important;
  color:#3DDAD8 !important; margin-bottom:10px !important;
}
.ourgp .eyebrow-dark { color:#007B8C !important; }
.ourgp h2.section-title {
  font-family:'Playfair Display',serif !important; font-size:clamp(28px,4vw,44px) !important;
  font-weight:700 !important; color:#0b2830 !important; line-height:1.18 !important; margin-bottom:16px !important;
}
.ourgp .section-sub { font-size:17px !important; color:#1e4f5a !important; max-width:560px !important; line-height:1.7 !important; }

/* ── PAGE WRAPPER (sections below hero) ── */
.ourgp .page-body { max-width:1200px !important; margin:0 auto !important; overflow:hidden !important; box-shadow:0 0 40px rgba(0,0,0,0.08) !important; }
.ourgp .wrap { max-width:1120px !important; margin:0 auto !important; padding:0 40px !important; }

/* ── HOW IT WORKS ── */
.ourgp .how-it-works { background:#E0F7F7 !important; padding:44px 0 !important; border-top:3px solid #3DDAD8 !important; border-bottom:1px solid #B2EFED !important; }
.ourgp .how-inner { display:flex !important; align-items:stretch !important; gap:0 !important; }
.ourgp .how-step { flex:1 !important; display:flex !important; align-items:flex-start !important; gap:14px !important; padding:0 28px 0 0 !important; position:relative !important; }
.ourgp .how-step:not(:last-child)::after { content:'' !important; position:absolute !important; right:8px !important; top:14px !important; width:10px !important; height:10px !important; border-top:2px solid #007B8C !important; border-right:2px solid #007B8C !important; transform:rotate(45deg) !important; }
.ourgp .how-num { width:44px !important; height:44px !important; background:#007B8C !important; color:#fff !important; border-radius:50% !important; display:flex !important; align-items:center !important; justify-content:center !important; font-size:18px !important; font-weight:700 !important; flex-shrink:0 !important; box-shadow:0 4px 12px rgba(0,123,140,0.3) !important; }
.ourgp .how-text strong { display:block !important; font-size:15px !important; font-weight:700 !important; color:#0b2830 !important; margin-bottom:3px !important; }
.ourgp .how-text span { font-size:13px !important; color:#4a7880 !important; }

/* ── WHY CHOOSE ── */
.ourgp .why-section { padding:52px 0 !important; background:#fff !important; }
.ourgp .why-grid { display:grid !important; grid-template-columns:1fr 1fr !important; gap:48px !important; align-items:center !important; margin-top:28px !important; }
.ourgp .why-cards { display:grid !important; grid-template-columns:1fr 1fr !important; gap:16px !important; }
.ourgp .why-card { background:#fff !important; border:1.5px solid #B2EFED !important; border-radius:12px !important; padding:24px 20px !important; border-top:3px solid #3DDAD8 !important; display:flex !important; flex-direction:column !important; gap:10px !important; transition:box-shadow .2s,border-color .2s !important; }
.ourgp .why-card:hover { box-shadow:0 2px 12px rgba(0,123,140,0.12) !important; border-color:#2abcba !important; }
.ourgp .why-card-icon { width:42px !important; height:42px !important; background:#E0F7F7 !important; border-radius:6px !important; display:flex !important; align-items:center !important; justify-content:center !important; flex-shrink:0 !important; }
.ourgp .why-card-icon svg { width:23px !important; height:23px !important; stroke:#007B8C !important; fill:none !important; }
.ourgp .why-card-header { display:flex !important; align-items:center !important; gap:12px !important; }
.ourgp .why-card h3 { font-size:15px !important; font-weight:700 !important; color:#0b2830 !important; margin:0 !important; }
.ourgp .why-card p { font-size:14px !important; color:#4a7880 !important; line-height:1.6 !important; }
.ourgp .why-img img { width:100% !important; max-height:520px !important; object-fit:cover !important; object-position:top !important; border-radius:20px !important; box-shadow:0 8px 36px rgba(0,123,140,0.18) !important; border:3px solid #B2EFED !important; }
.ourgp .why-accred { margin-top:24px !important; display:flex !important; align-items:center !important; gap:12px !important; background:#FFF6F2 !important; border:1.5px solid #E8C4AE !important; border-radius:12px !important; padding:16px 18px !important; border-left:4px solid #7A3B1E !important; }
.ourgp .why-accred svg { width:24px !important; height:24px !important; stroke:#7A3B1E !important; fill:none !important; flex-shrink:0 !important; }
.ourgp .why-accred p { font-size:13px !important; color:#7A3B1E !important; line-height:1.55 !important; }
.ourgp .why-accred strong { color:#7A3B1E !important; font-weight:700 !important; }

/* ── SERVICES ── */
.ourgp .services-section { background:#F0FBFB !important; padding:52px 0 !important; border-top:1px solid #B2EFED !important; }
.ourgp .services-header { text-align:center !important; margin-bottom:52px !important; }
.ourgp .services-header .section-sub { margin:0 auto !important; }
.ourgp .services-grid { display:grid !important; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)) !important; gap:16px !important; }
.ourgp .svc-card { background:#fff !important; border:1.5px solid #B2EFED !important; border-radius:12px !important; padding:26px 22px !important; text-decoration:none !important; color:inherit !important; display:flex !important; flex-direction:column !important; gap:10px !important; border-bottom:3px solid #3DDAD8 !important; transition:box-shadow .2s,border-color .2s,transform .15s !important; }
.ourgp .svc-card:hover { box-shadow:0 8px 36px rgba(0,123,140,0.18) !important; border-color:#007B8C !important; transform:translateY(-3px) !important; }
.ourgp .svc-top { display:flex !important; justify-content:space-between !important; align-items:flex-start !important; }
.ourgp .svc-icon { width:50px !important; height:50px !important; background:#E0F7F7 !important; border-radius:6px !important; display:flex !important; align-items:center !important; justify-content:center !important; }
.ourgp .svc-icon svg { width:25px !important; height:25px !important; stroke:#007B8C !important; fill:none !important; }
.ourgp .svc-price { font-size:13px !important; font-weight:700 !important; color:#005466 !important; background:#E0F7F7 !important; padding:4px 12px !important; border-radius:20px !important; border:1px solid #B2EFED !important; white-space:nowrap !important; }
.ourgp .svc-card h3 { font-size:16px !important; font-weight:700 !important; color:#0b2830 !important; }
.ourgp .svc-card p { font-size:14px !important; color:#4a7880 !important; line-height:1.55 !important; flex:1 !important; }
.ourgp .svc-link { font-size:13px !important; font-weight:700 !important; color:#007B8C !important; display:flex !important; align-items:center !important; gap:4px !important; margin-top:4px !important; }
.ourgp .svc-link svg { width:14px !important; height:14px !important; }
.ourgp .svc-cta { text-align:center !important; margin-top:44px !important; display:flex !important; gap:14px !important; justify-content:center !important; flex-wrap:wrap !important; }

/* ── SPEAK ── */
.ourgp .speak-section { padding:52px 0 !important; background:#fff !important; }
.ourgp .speak-inner { display:grid !important; grid-template-columns:1fr 1fr !important; gap:60px !important; align-items:center !important; }
.ourgp .speak-img img { width:100% !important; border-radius:20px !important; box-shadow:0 8px 36px rgba(0,123,140,0.18) !important; border:3px solid #B2EFED !important; }
.ourgp .speak-content p { color:#1e4f5a !important; margin-bottom:16px !important; font-size:16px !important; line-height:1.7 !important; }
.ourgp .speak-modes { display:flex !important; gap:10px !important; flex-wrap:wrap !important; margin:24px 0 28px !important; }
.ourgp .speak-mode { display:flex !important; align-items:center !important; gap:7px !important; background:#E0F7F7 !important; color:#005466 !important; border:1.5px solid #B2EFED !important; font-size:13px !important; font-weight:700 !important; padding:9px 16px !important; border-radius:24px !important; }
.ourgp .speak-mode svg { width:16px !important; height:16px !important; fill:none !important; stroke:#007B8C !important; }
.ourgp .speak-cta { display:flex !important; gap:12px !important; flex-wrap:wrap !important; }

/* ── TESTIMONIALS ── */
.ourgp .testimonials-section { background:linear-gradient(135deg,#003d4d 0%,#007B8C 70%,#005466 100%) !important; padding:52px 0 !important; overflow:hidden !important; }
.ourgp .testi-header { text-align:center !important; margin-bottom:48px !important; }
.ourgp .testi-header h2 { color:#fff !important; }
.ourgp .testi-header .eyebrow { color:#3DDAD8 !important; }
.ourgp .testi-header p { color:rgba(255,255,255,0.78) !important; font-size:17px !important; margin:0 auto !important; max-width:520px !important; }
.ourgp .testi-track-outer { overflow:hidden !important; border-radius:12px !important; }
.ourgp .testi-track { display:flex !important; transition:transform 0.65s cubic-bezier(.4,0,.2,1) !important; }
.ourgp .testi-slide { min-width:300px !important; max-width:320px !important; margin-right:20px !important; flex-shrink:0 !important; }
.ourgp .testi-card { background:rgba(255,255,255,0.10) !important; border:1.5px solid rgba(61,218,216,0.3) !important; border-radius:12px !important; padding:22px 20px !important; border-top:3px solid #3DDAD8 !important; height:100% !important; }
.ourgp .testi-stars { display:flex !important; gap:3px !important; margin-bottom:16px !important; }
.ourgp .star { color:#3DDAD8 !important; font-size:18px !important; }
.ourgp .testi-card blockquote { font-size:14px !important; color:rgba(255,255,255,0.92) !important; line-height:1.6 !important; font-style:italic !important; margin-bottom:18px !important; }
.ourgp .testi-author { display:flex !important; align-items:center !important; gap:12px !important; }
.ourgp .author-av { width:42px !important; height:42px !important; background:#3DDAD8 !important; border-radius:50% !important; display:flex !important; align-items:center !important; justify-content:center !important; font-size:14px !important; font-weight:700 !important; color:#003d4d !important; flex-shrink:0 !important; }
.ourgp .author-name { font-size:14px !important; font-weight:700 !important; color:#fff !important; }
.ourgp .author-loc { font-size:12px !important; color:rgba(255,255,255,0.5) !important; margin-top:1px !important; }
.ourgp .testi-controls { display:flex !important; align-items:center !important; justify-content:center !important; gap:20px !important; margin-top:36px !important; }
.ourgp .testi-btn { width:36px !important; height:36px !important; border-radius:50% !important; background:rgba(255,255,255,0.12) !important; border:1.5px solid rgba(61,218,216,0.4) !important; color:#fff !important; cursor:pointer !important; display:flex !important; align-items:center !important; justify-content:center !important; }
.ourgp .testi-btn svg { width:16px !important; height:16px !important; }
.ourgp .testi-dots { display:flex !important; gap:6px !important; align-items:center !important; }
.ourgp .testi-dot { width:8px !important; height:8px !important; border-radius:50% !important; background:rgba(255,255,255,0.3) !important; cursor:pointer !important; border:none !important; padding:0 !important; margin:0 !important; display:inline-block !important; flex-shrink:0 !important; transition:background .2s,transform .2s !important; }
.ourgp .testi-dot.active { background:#3DDAD8 !important; transform:scale(1.4) !important; }

/* ── CTA BAND ── */
.ourgp .cta-band { background:#E0F7F7 !important; border-top:3px solid #3DDAD8 !important; border-bottom:3px solid #3DDAD8 !important; padding:40px 0 !important; }
.ourgp .cta-band-inner { display:flex !important; align-items:center !important; justify-content:space-between !important; gap:32px !important; flex-wrap:wrap !important; }
.ourgp .cta-band h2 { font-family:'Playfair Display',serif !important; font-size:clamp(24px,3.5vw,36px) !important; color:#003d4d !important; margin-bottom:8px !important; line-height:1.2 !important; }
.ourgp .cta-band p { color:#1e4f5a !important; font-size:16px !important; max-width:480px !important; }
.ourgp .cta-band-actions { display:flex !important; gap:14px !important; flex-wrap:wrap !important; align-items:center !important; flex-shrink:0 !important; }
.ourgp .cta-phone { font-size:20px !important; font-weight:700 !important; color:#007B8C !important; text-decoration:none !important; display:flex !important; align-items:center !important; gap:7px !important; }
.ourgp .cta-phone svg { width:20px !important; height:20px !important; }

/* ── NEWS ── */
.ourgp .news-section { padding:52px 0 !important; background:#fff !important; }
.ourgp .news-header { display:flex !important; justify-content:space-between !important; align-items:flex-end !important; margin-bottom:44px !important; flex-wrap:wrap !important; gap:16px !important; }
.ourgp .news-grid { display:grid !important; grid-template-columns:repeat(2,1fr) !important; gap:28px !important; }
.ourgp .news-card { background:#fff !important; border:1.5px solid #B2EFED !important; border-radius:12px !important; overflow:hidden !important; text-decoration:none !important; color:inherit !important; display:flex !important; flex-direction:column !important; border-bottom:3px solid #3DDAD8 !important; transition:box-shadow .2s,transform .15s !important; }
.ourgp .news-card:hover { box-shadow:0 8px 36px rgba(0,123,140,0.18) !important; transform:translateY(-3px) !important; }
.ourgp .news-card img { width:100% !important; height:200px !important; object-fit:cover !important; display:block !important; }
.ourgp .news-body { padding:22px !important; flex:1 !important; display:flex !important; flex-direction:column !important; gap:10px !important; }
.ourgp .news-tag { font-size:11px !important; font-weight:700 !important; letter-spacing:0.08em !important; text-transform:uppercase !important; color:#007B8C !important; background:#E0F7F7 !important; border:1px solid #B2EFED !important; padding:3px 10px !important; border-radius:20px !important; display:inline-block !important; align-self:flex-start !important; }
.ourgp .news-card h3 { font-size:17px !important; font-weight:700 !important; color:#0b2830 !important; line-height:1.4 !important; }
.ourgp .news-card p { font-size:14px !important; color:#4a7880 !important; line-height:1.6 !important; flex:1 !important; }
.ourgp .news-meta { font-size:12px !important; color:#4a7880 !important; }
.ourgp .news-link { font-size:13px !important; font-weight:700 !important; color:#007B8C !important; display:flex !important; align-items:center !important; gap:4px !important; margin-top:6px !important; }
.ourgp .news-link svg { width:14px !important; height:14px !important; }

/* ── PARTNERS ── */
.ourgp .partners-section { background:#F0FBFB !important; border-top:1px solid #B2EFED !important; padding:44px 0 !important; }
.ourgp .partners-inner { display:grid !important; grid-template-columns:auto 1fr !important; gap:40px !important; align-items:start !important; }
.ourgp .partner-logo-col { display:flex !important; flex-direction:column !important; align-items:center !important; gap:12px !important; background:#fff !important; border:1.5px solid #B2EFED !important; border-radius:12px !important; padding:28px 32px !important; min-width:200px !important; border-bottom:3px solid #3DDAD8 !important; }
.ourgp .partner-logo-col img { height:140px !important; width:auto !important; display:block !important; }
.ourgp .partner-visit { font-size:12px !important; font-weight:700 !important; color:#007B8C !important; text-decoration:none !important; letter-spacing:0.05em !important; text-transform:uppercase !important; }
.ourgp .partner-content h3 { font-family:'Playfair Display',serif !important; font-size:22px !important; font-weight:700 !important; color:#0b2830 !important; margin-bottom:12px !important; }
.ourgp .partner-content p { font-size:15px !important; color:#1e4f5a !important; line-height:1.7 !important; margin-bottom:10px !important; }
.ourgp .partner-content a { color:#007B8C !important; text-decoration:none !important; font-weight:600 !important; }
.ourgp .partner-tag { display:inline-flex !important; align-items:center !important; gap:6px !important; background:#E0F7F7 !important; color:#005466 !important; font-size:13px !important; font-weight:600 !important; padding:6px 14px !important; border-radius:20px !important; border:1px solid #B2EFED !important; margin-top:8px !important; text-decoration:none !important; }
.ourgp .partner-tag svg { width:14px !important; height:14px !important; stroke:#007B8C !important; fill:none !important; }

/* ── RESPONSIVE ── */
@media(max-width:1000px){
  .ourgp .hero-inner { grid-template-columns:1fr !important; gap:28px !important; }
  .ourgp .why-grid { grid-template-columns:1fr 1fr !important; gap:40px !important; }
  .ourgp .why-cards { grid-template-columns:1fr 1fr !important; gap:12px !important; }
  .ourgp .speak-inner { grid-template-columns:1fr !important; gap:44px !important; }
  .ourgp .speak-img { display:none !important; }
  .ourgp .how-inner { flex-direction:column !important; gap:20px !important; }
  .ourgp .how-step::after { display:none !important; }
  .ourgp .cta-band-inner { flex-direction:column !important; align-items:flex-start !important; }
  .ourgp .testi-slide { min-width:calc(50% - 11px) !important; }
  .ourgp .wrap { padding:0 28px !important; }
}
@media(max-width:768px){
  .ourgp .hero { min-height:0 !important; }
  .ourgp .hero-container { padding:0 20px !important; }
  .ourgp .hero-inner { padding:48px 0 36px !important; }
  .ourgp .wrap { padding:0 20px !important; }
  .ourgp h2.section-title { font-size:26px !important; }
  .ourgp .why-grid { grid-template-columns:1fr !important; }
  .ourgp .why-img { display:none !important; }
  .ourgp .why-cards { grid-template-columns:1fr !important; }
  .ourgp .services-grid { grid-template-columns:1fr 1fr !important; gap:12px !important; }
  .ourgp .news-grid { grid-template-columns:1fr !important; }
  .ourgp .partners-inner { display:flex !important; flex-direction:column !important; gap:20px !important; }
  .ourgp .partner-logo-col { flex-direction:row !important; padding:16px 20px !important; min-width:unset !important; width:100% !important; }
  .ourgp .testi-slide { min-width:100% !important; max-width:100% !important; margin-right:0 !important; }
}
@media(max-width:480px){
  .ourgp .hero-stat { padding:0 16px 0 12px !important; }
  .ourgp .hero-cta { flex-direction:column !important; align-items:stretch !important; }
  .ourgp .hero-cta .btn-white,.ourgp .hero-cta .btn-ghost-white { justify-content:center !important; }
  .ourgp .svc-cta { flex-direction:column !important; align-items:center !important; }
  .ourgp .cta-band-actions { flex-direction:column !important; align-items:stretch !important; }
  .ourgp .speak-cta { flex-direction:column !important; }
}.uag-blocks-common-selector{z-index:var(--z-index-desktop) !important}@media(max-width: 976px){.uag-blocks-common-selector{z-index:var(--z-index-tablet) !important}}@media(max-width: 767px){.uag-blocks-common-selector{z-index:var(--z-index-mobile) !important}}.uagb-google-map__wrap{display:flex}.uagb-google-map__wrap .uagb-google-map__iframe{width:100%;box-shadow:none;border:none;padding:0;margin:0} .uagb-block-ce290302 .uagb-google-map__iframe{height: 200px;}@media only screen and (max-width: 976px) { .uagb-block-ce290302 .uagb-google-map__iframe{height: 300px;}}@media only screen and (max-width: 767px) { .uagb-block-ce290302 .uagb-google-map__iframe{height: 300px;}}.wp-block-uagb-advanced-heading h1,.wp-block-uagb-advanced-heading h2,.wp-block-uagb-advanced-heading h3,.wp-block-uagb-advanced-heading h4,.wp-block-uagb-advanced-heading h5,.wp-block-uagb-advanced-heading h6,.wp-block-uagb-advanced-heading p,.wp-block-uagb-advanced-heading div{word-break:break-word}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0}.wp-block-uagb-advanced-heading .uagb-separator{font-size:0;border-top-style:solid;display:inline-block;margin:0 0 10px 0}.wp-block-uagb-advanced-heading .uagb-highlight{color:#f78a0c;border:0;transition:all .3s ease}.uag-highlight-toolbar{border-left:0;border-top:0;border-bottom:0;border-radius:0;border-right-color:#1e1e1e}.uag-highlight-toolbar .components-button{border-radius:0;outline:none}.uag-highlight-toolbar .components-button.is-primary{color:#fff}.wp-block-uagb-advanced-heading.uagb-block-54bddf18.wp-block-uagb-advanced-heading .uagb-heading-text{color: var(--ast-global-color-5);}.wp-block-uagb-advanced-heading.uagb-block-54bddf18.wp-block-uagb-advanced-heading .uagb-desc-text{margin-bottom: 15px;}.wp-block-uagb-advanced-heading.uagb-block-54bddf18.wp-block-uagb-advanced-heading .uagb-highlight{font-style: normal;font-weight: Default;background: #007cba;color: #fff;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-54bddf18.wp-block-uagb-advanced-heading .uagb-highlight::-moz-selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-54bddf18.wp-block-uagb-advanced-heading .uagb-highlight::selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-54bddf18 .uagb-heading-text{font-size: 17px;}