/* ============ B2B TECH AGENCY CUSTOM STYLESHEET ============ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --gp-navy: #051429;
  --gp-blue: #0A3260;
  --gp-neon: #39FF14;     /* High contrast tech neon green accent */
  --gp-teal: #35D0BA;
  --gp-green: #00B894;
  --gp-text-dark: #0F2137;
  --gp-muted: #6B7A8D;
  --gp-bg-light: #F8FAFC;
  --gp-radius: 16px;
  --gp-font: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* Structural Essentials */
body {
  font-family: var(--gp-font);
  color: var(--gp-text-dark);
  background-color: #ffffff;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.gp-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}
.gp-section {
  background: #ffffff;
  position: relative;
}
.gp-section.alt-bg {
  background: var(--gp-bg-light);
}

/* Global Headings Formatting */
h2 {
  font-family: var(--gp-font);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--gp-navy);
  text-align: center;
  margin: 0 0 40px 0;
  line-height: 1.25;
}

/* ===== GLOBAL ACTION ELEMENTS ===== */
.gp-btn-primary {
  background: var(--gp-neon);
  color: #051429 !important;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  box-shadow: 0 4px 14px rgba(57, 255, 20, 0.3);
}
.gp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(57, 255, 20, 0.5);
  background: #2eff05;
}

.gp-btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: #ffffff;
  border: 2px solid var(--gp-blue);
  border-radius: 8px;
  color: var(--gp-blue);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.gp-btn-secondary:hover {
  background: var(--gp-blue);
  color: #ffffff !important;
}

/* ===== STICKY NAV HEADER ===== */
.gp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #edf2f7;
}
.gp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gp-logo img {
  height: 38px;
  width: auto;
}

/* ===== DYNAMIC HERO ARCHITECTURE ===== */
.gp-hero {
  background: linear-gradient(135deg, var(--gp-navy) 0%, #0d2647 60%, #083c5a 100%);
  padding: 80px 24px 60px;
  color: #ffffff;
  overflow: hidden;
}
.gp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.gp-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--gp-teal);
}
.gp-hero-heading {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}
.gp-hero-sub {
  font-size: 16px;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0 0 32px 0;
}

/* Interactive Embedded Hero Lead Capture Form */
.gp-lead-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--gp-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.gp-lead-form input, .gp-lead-form select {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 14px;
  font-family: var(--gp-font);
  transition: border-color 0.2s;
}
.gp-lead-form input:focus, .gp-lead-form select:focus {
  outline: none;
  border-color: var(--gp-neon);
}
.gp-lead-form input::placeholder {
  color: #94a3b8;
}
.gp-lead-form select option {
  color: #000000;
}

.gp-micro-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
}

/* Floating Real-Time Analytics Mock Card */
.gp-dashboard-card {
  background: #ffffff;
  border-radius: var(--gp-radius);
  padding: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
.gp-dash-row {
  margin-bottom: 18px;
}
.gp-dash-row:last-child {
  margin-bottom: 0;
}
.gp-dash-row span {
  display: block;
  font-size: 12px;
  color: var(--gp-text-dark);
  margin-bottom: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gp-bar {
  background: #f1f5f9;
  border-radius: 20px;
  height: 8px;
  overflow: hidden;
}
.gp-bar-fill {
  background: linear-gradient(90deg, var(--gp-green), var(--gp-teal));
  height: 100%;
  border-radius: 20px;
}

/* ===== MARQUEE TOOL CLUSTER ===== */
.gp-tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.gp-tools-row span {
  background: var(--gp-bg-light);
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gp-blue);
}

/* =======================================================
   ================= DUAL PANEL CONVERSION SUITE =================
   ======================================================= */

.gp-panel-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px !important;
}

.gp-panel-grid-reverse {
  grid-template-columns: 0.9fr 1.1fr;
}
.gp-panel-grid-reverse .gp-panel-left {
  order: 1;
}
.gp-panel-grid-reverse .gp-panel-right {
  order: 2;
}

/* --- SECTION C: SPECIFIC STYLING (DARK NEON GLOW) --- */
.gp-dual-panel-dark {
  background: linear-gradient(135deg, #051224 0%, #0a2246 100%);
  color: #ffffff;
}
.gp-dual-panel-dark .gp-panel-heading {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  text-align: left;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.gp-highlight-text {
  color: var(--gp-neon);
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}
.gp-dual-panel-dark .gp-stat-callout {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #94a3b8;
  text-align: left;
  margin-top: 0;
  max-width: 500px;
}

.gp-pain-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.gp-pain-card-v2 {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(57, 255, 20, 0.15);
  border-radius: var(--gp-radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gp-pain-card-v2:hover {
  border-color: var(--gp-neon);
  box-shadow: 0 0 25px rgba(57, 255, 20, 0.2);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.04);
}
.gp-icon-cross {
  color: #ef4444;
  font-size: 16px;
  font-weight: bold;
}
.gp-pain-card-v2 p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
}

/* --- SECTION D: SPECIFIC STYLING (LIGHT MINIMALIST CARD) --- */
.gp-dual-panel-light {
  background: #ffffff;
}
.gp-panel-heading-alt {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--gp-navy);
  text-align: left;
  letter-spacing: -0.5px;
}
.gp-muted-text {
  display: block;
  margin-top: 16px;
  font-size: 26px;
  font-weight: 600;
  color: var(--gp-muted);
}

.gp-benefits-cluster {
  background: var(--gp-bg-light);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.gp-benefit-item-v2 {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e2e8f0;
}
.gp-benefit-item-v2:last-of-type {
  border-bottom: none;
}
.gp-icon-check {
  color: var(--gp-green);
  font-size: 16px;
  font-weight: 900;
}
.gp-benefit-item-v2 span:last-child {
  font-size: 14px;
  font-weight: 700;
  color: var(--gp-text-dark);
}

/* Pipeline Flow Engine Integrated natively inside the Left Cluster Panel */
.gp-mini-pipeline {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 2px dashed #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gp-pipe-node {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--gp-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gp-pipe-arrow {
  color: var(--gp-teal);
  font-weight: 900;
  font-size: 14px;
}

/* ===== WHAT'S INCLUDED CONTENT CLUSTER ===== */
.gp-included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.gp-included-item {
  background: var(--gp-bg-light);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gp-text-dark);
}

/* ===== SERVICES GRID COMPONENT ===== */
.gp-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.gp-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--gp-radius);
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.2s ease;
}
.gp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.05);
  border-color: #cbd5e1;
}
.gp-card h3 {
  font-size: 18px;
  color: var(--gp-navy);
  margin: 0 0 16px 0;
  font-weight: 800;
}
.gp-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gp-card li {
  font-size: 14px;
  color: var(--gp-muted);
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}
.gp-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gp-green);
  font-weight: 900;
}

/* ===== WORKFLOW FLOWLINE ===== */
.gp-process-strip-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto 24px;
}
.gp-process-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gp-bg-light);
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px 20px;
  font-weight: 700;
  color: var(--gp-text-dark);
  font-size: 14px;
}
.gp-step-num {
  background: var(--gp-blue);
  color: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.gp-timeline {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--gp-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== INDUSTRIAL CASE REVIEWS ===== */
.gp-case-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--gp-radius);
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  max-width: 700px;
  margin: 0 auto;
}
.gp-case-card h3 {
  margin: 0 0 16px 0;
  font-size: 20px;
  color: var(--gp-navy);
  font-weight: 800;
}
.gp-case-card ul {
  padding-left: 20px;
  color: var(--gp-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px 0;
}
.gp-case-result {
  font-weight: 800;
  color: var(--gp-blue);
  font-size: 15px;
  margin: 0;
}
.gp-case-note {
  font-size: 12px;
  color: var(--gp-muted);
  font-style: italic;
  margin: 8px 0 0 0;
}

/* ===== ROBUST WHY CHOOSE GRID ===== */
.gp-whychoose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.gp-whychoose-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--gp-teal);
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gp-text-dark);
}

/* ===== USER SEGMENTATION (FIT PROFILES) ===== */
.gp-whofor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.gp-whofor-col {
  background: var(--gp-bg-light);
  border: 1px solid #e2e8f0;
  border-radius: var(--gp-radius);
  padding: 36px;
}
.gp-whofor-col h3 {
  font-size: 20px;
  margin: 0 0 20px 0;
  font-weight: 800;
}
.gp-whofor-col p {
  font-size: 14px;
  margin: 0 0 12px 0;
  font-weight: 600;
  line-height: 1.5;
}
.gp-whofor-col p:last-child {
  margin-bottom: 0;
}
.gp-fit h3, .gp-fit p { color: var(--gp-green); }
.gp-notfit h3, .gp-notfit p { color: #ef4444; }

/* ===== ACCORDION/LIST FAQ ARCHITECTURE ===== */
.gp-faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.gp-faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0;
}
.gp-faq-item:first-child {
  padding-top: 0;
}
.gp-faq-item:last-child {
  border-bottom: none;
}
.gp-faq-question {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--gp-navy);
}
.gp-faq-answer p {
  margin: 0;
  color: var(--gp-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== HIGH CONVERSION TERMINAL CTA ===== */
.gp-final-cta {
  background: linear-gradient(135deg, var(--gp-navy) 0%, var(--gp-blue) 100%);
  color: #ffffff;
  text-align: center;
  padding: 40px 0;
}
.gp-final-cta h2 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 12px;
}
.gp-final-cta p {
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 16px;
  line-height: 1.6;
}
.gp-lead-form-final {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
}

/* =======================================================
   ==================== RESPONSIVE SYSTEM ====================
   ======================================================= */

@media (max-width: 992px) {
  .gp-hero-inner, .gp-panel-grid, .gp-panel-grid-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gp-panel-grid {
    padding: 60px 20px !important;
  }
  .gp-panel-grid-reverse .gp-panel-left {
    order: 2;
  }
  .gp-panel-grid-reverse .gp-panel-right {
    order: 1;
  }
  .gp-panel-heading, .gp-panel-heading-alt {
    font-size: 32px !important;
    text-align: center !important;
  }
  .gp-dual-panel-dark .gp-stat-callout {
    text-align: center !important;
    margin: 0 auto;
  }
  .gp-muted-text {
    font-size: 22px !important;
    text-align: center;
  }
  .gp-whofor-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gp-hero-heading {
    font-size: 32px;
  }
  h2 {
    font-size: 26px;
  }
  .gp-pain-grid-v2 {
    grid-template-columns: 1fr;
  }
  .gp-mini-pipeline {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .gp-pipe-arrow {
    display: inline-block;
    transform: rotate(90deg);
  }
}