/* ═══════════════════════════════════════════════════════
   Growth Partner Tech — Brand Stylesheet (Light Mode)
   growthpartnerco.in/gpc-tech/
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #04112b;
  --navy-2:      #071428;
  --blue:        #1a56db;
  --blue-2:      #1d4ed8;
  --blue-light:  #eff6ff;
  --blue-mid:    #dbeafe;
  --blue-glow:   rgba(26,86,219,0.25);
  --gold:        #d97706;
  --gold-light:  #fef3c7;
  --green:       #16a34a;
  --green-light: #dcfce7;
  --red:         #dc2626;
  --white:       #ffffff;
  --bg:          #f8faff;
  --bg-2:        #ffffff;
  --bg-card:     #ffffff;
  --text:        #04112b;
  --text-2:      #1e3a5f;
  --muted:       #64748b;
  --muted-2:     #94a3b8;
  --border:      #e2e8f0;
  --border-blue: rgba(26,86,219,0.25);
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:      0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-blue: 0 8px 32px rgba(26,86,219,0.2);
  --radius-sm:   10px;
  --radius:      16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font:        'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Gradient Text ── */
.g-text {
  background: linear-gradient(135deg, #1a56db, #3b82f6, #1a56db);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}
.g-text-gold {
  background: linear-gradient(135deg, #d97706, #f59e0b, #d97706);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ═══════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════ */
.announce-bar {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1px;
  position: relative;
  z-index: 60;
}
.announce-bar span { opacity: 0.75; font-weight: 400; }
.announce-gold { color: #fbbf24; font-weight: 700; }

/* ═══════════════════════
   NAV
   ═══════════════════════ */
.gpt-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.gpt-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

/* Circular logo image */
.gpt-logo-img-circle {
  width: 62px; height: 62px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
  border: 2px solid var(--border-blue);
  box-shadow: 0 2px 14px var(--blue-glow);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.gpt-logo-img-circle img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transform: scale(1.18);
}

/* Brand name */
.gpt-logo-text { display: flex; flex-direction: column; gap: 2px; }
.gpt-logo-brand {
  display: flex; align-items: center; gap: 0px; line-height: 1;
}
.gpt-brand-growth {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700; font-size: 19px;
  color: #0f1e3c;
  letter-spacing: -0.4px;
  line-height: 1;
  animation: logoFadeSlide 0.5s ease both;
}
.gpt-brand-tech {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800; font-size: 19px;
  background: linear-gradient(120deg, #1a56db 0%, #3b82f6 50%, #6366f1 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.4px; line-height: 1;
  animation: logoFadeSlide 0.5s 0.06s ease both, techShimmer 4s 0.8s linear infinite;
}
.gpt-logo-tagline {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 8px; font-weight: 600; color: #64748b;
  letter-spacing: 1.8px; text-transform: uppercase; line-height: 1;
  margin-top: 3px;
  animation: logoFadeSlide 0.5s 0.12s ease both;
}

/* Logo circle pulse ring */
.gpt-logo-img-circle {
  position: relative;
}
.gpt-logo-img-circle::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(26,86,219,0.25);
  animation: ringPulse 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes logoFadeSlide {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes techShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 220% center; }
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1);   opacity: 0.6; }
  50%       { transform: scale(1.1); opacity: 0; }
}
.gpt-nav-links { display: flex; align-items: center; gap: 28px; }
.gpt-nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color var(--transition);
}
.gpt-nav-links a:hover { color: var(--navy); }
.gpt-nav-socials { display: flex; align-items: center; gap: 8px; }
.gpt-social-icon {
  width: 32px; height: 32px; border-radius: 8px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px;
  transition: all var(--transition);
}
.gpt-social-icon:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.gpt-nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  padding: 10px 22px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 4px 14px var(--blue-glow);
}
.gpt-nav-cta:hover { background: var(--blue-2); transform: translateY(-1px); box-shadow: 0 8px 24px var(--blue-glow); }
@media (max-width: 768px) { .gpt-nav-links, .gpt-nav-socials { display: none; } }

/* ═══════════════════════
   HERO
   ═══════════════════════ */
.gpt-hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 5% 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #e8f0fe 0%, #f0f6ff 40%, #f8faff 100%);
}

/* Grid overlay */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,86,219,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,86,219,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  pointer-events: none;
}

/* Orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(70px); pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,86,219,0.18), transparent 70%);
  top: -150px; left: 50%; transform: translateX(-50%);
  animation: floatOrb 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(59,130,246,0.12), transparent 70%);
  bottom: 0; right: -80px;
  animation: floatOrbB 11s ease-in-out infinite;
}
.hero-orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(217,119,6,0.08), transparent 70%);
  bottom: 80px; left: -60px;
  animation: floatOrbB 8s ease-in-out infinite 1.5s;
}
@keyframes floatOrb {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-28px); }
}
@keyframes floatOrbB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Particle canvas */
.bg-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

.gpt-hero-inner {
  position: relative; z-index: 2;
  max-width: 860px; margin: 0 auto;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light);
  border: 1px solid rgba(26,86,219,0.2);
  border-radius: 100px; padding: 8px 20px;
  font-size: 12px; font-weight: 700; color: var(--blue);
  letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.gpt-hero-h1 {
  font-size: clamp(34px, 6.5vw, 68px);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.07; margin-bottom: 22px;
  color: var(--navy);
}

.gpt-hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted); max-width: 560px;
  margin: 0 auto 36px; line-height: 1.75;
}
.gpt-hero-sub strong { color: var(--navy); }

/* Price block */
.hero-price-block {
  display: inline-flex; align-items: center; gap: 24px;
  background: var(--white); border: 1.5px solid var(--border-blue);
  border-radius: var(--radius); padding: 18px 32px;
  margin-bottom: 36px; box-shadow: var(--shadow-blue);
  flex-wrap: wrap; justify-content: center;
}
.hero-price-label { font-size: 11px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.hero-price-amount { font-size: 44px; font-weight: 900; letter-spacing: -0.05em; color: var(--navy); line-height: 1; }
.hero-price-amount sup { font-size: 22px; font-weight: 700; vertical-align: super; }
.hero-divider { width: 1px; height: 52px; background: var(--border); }
.hero-includes { display: flex; flex-direction: column; gap: 5px; }
.hero-include-item { font-size: 12.5px; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 5px; }
.hero-delivery { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.hero-delivery-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-light); border: 1px solid rgba(217,119,6,0.25);
  border-radius: 100px; padding: 5px 14px;
  font-size: 12px; font-weight: 700; color: var(--gold);
}
.hero-delivery-note { font-size: 11px; color: var(--muted-2); }

/* CTA buttons */
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }

.btn-wa-gpt {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  padding: 15px 32px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all var(--transition);
}
.btn-wa-gpt:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.4); background: #22c55e; }

.btn-ghost-gpt {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--border); color: var(--text-2);
  padding: 14px 26px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600;
  transition: all var(--transition); background: var(--white);
}
.btn-ghost-gpt:hover { border-color: var(--blue); color: var(--blue); box-shadow: var(--shadow-sm); }

.btn-primary-gpt {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  padding: 15px 32px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700;
  box-shadow: var(--shadow-blue); transition: all var(--transition);
}
.btn-primary-gpt:hover { background: var(--blue-2); transform: translateY(-2px); box-shadow: 0 8px 32px var(--blue-glow); }

/* Trust row */
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); font-weight: 500; }
.trust-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-light); display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--green); font-weight: 700; flex-shrink: 0;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted-2); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1px;
}
.scroll-mouse {
  width: 22px; height: 34px; border: 1.5px solid var(--muted-2);
  border-radius: 11px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 6px; background: var(--muted-2);
  border-radius: 2px; animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel { 0%{transform:translateY(0);opacity:1;} 100%{transform:translateY(8px);opacity:0;} }

/* ═══════════════════════
   STATS BAR
   ═══════════════════════ */
.gpt-stats {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.gpt-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 640px) { .gpt-stats-grid { grid-template-columns: repeat(2, 1fr); } }
.gpt-stat {
  padding: 32px 20px; text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.gpt-stat:last-child { border-right: none; }
@media (max-width: 640px) {
  .gpt-stat:nth-child(2) { border-right: none; }
  .gpt-stat:nth-child(3) { border-right: 1px solid var(--border); }
  .gpt-stat:nth-child(1), .gpt-stat:nth-child(2) { border-bottom: 1px solid var(--border); }
}
.gpt-stat-number {
  font-size: 36px; font-weight: 900; letter-spacing: -0.05em;
  line-height: 1; margin-bottom: 6px; color: var(--blue);
}
.gpt-stat-label { font-size: 12px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.8px; }

/* ═══════════════════════
   SECTIONS
   ═══════════════════════ */
.gpt-section { padding: 96px 5%; }
.gpt-section-inner { max-width: 1100px; margin: 0 auto; }
.gpt-section-alt { background: var(--bg); }
.gpt-section-white { background: var(--white); }

.gpt-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--blue); margin-bottom: 14px;
}
.gpt-label::before { content:''; width:20px; height:2px; background:var(--blue); border-radius:2px; }
.gpt-section-title {
  font-size: clamp(26px, 4vw, 42px); font-weight: 900;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; color: var(--navy);
}
.gpt-section-sub {
  font-size: 16px; color: var(--muted);
  max-width: 540px; line-height: 1.75; margin-bottom: 52px;
}

/* ═══════════════════════
   INCLUDES GRID
   ═══════════════════════ */
.gpt-includes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 900px) { .gpt-includes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gpt-includes-grid { grid-template-columns: 1fr; } }

.gpt-include-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.gpt-include-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}
.gpt-card-icon-wrap {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.gpt-card-icon-wrap svg {
  width: 28px; height: 28px;
  display: block; flex-shrink: 0;
  stroke: currentColor; fill: none;
}
.icon-domain    { background: linear-gradient(135deg,#dbeafe,#c7d2fe); color: #1a56db; }
.icon-hosting   { background: linear-gradient(135deg,#fef9c3,#fde68a); color: #92400e; }
.icon-ssl       { background: linear-gradient(135deg,#d1fae5,#a7f3d0); color: #065f46; }
.icon-mobile    { background: linear-gradient(135deg,#e0f2fe,#bae6fd); color: #0369a1; }
.icon-whatsapp  { background: linear-gradient(135deg,#dcfce7,#bbf7d0); color: #15803d; }
.icon-seo       { background: linear-gradient(135deg,#fef3c7,#fde68a); color: #b45309; }
.icon-analytics { background: linear-gradient(135deg,#fce7f3,#fbcfe8); color: #be185d; }
.icon-maps      { background: linear-gradient(135deg,#fee2e2,#fecaca); color: #dc2626; }
.icon-support   { background: linear-gradient(135deg,#ede9fe,#ddd6fe); color: #6d28d9; }
.icon-whatsapp svg { fill: currentColor; stroke: none; }

.gpt-include-card:hover .gpt-card-icon-wrap {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(26,86,219,0.18);
}
.gpt-include-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.gpt-include-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* Brand logo row inside include cards */
.gpt-include-brand-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.gpt-include-brand-logo {
  height: 22px; width: auto; max-width: 80px;
  object-fit: contain; border-radius: 4px;
}
.gpt-include-free-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.8px;
  background: linear-gradient(135deg,#1a56db,#6366f1);
  color: #fff; padding: 2px 8px; border-radius: 20px;
}
.gpt-include-stat-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  background: #f1f5f9; color: #475569;
  padding: 3px 9px; border-radius: 20px;
  border: 1px solid #e2e8f0;
}

/* ═══════════════════════
   PROCESS STEPS
   ═══════════════════════ */
.gpt-process {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; position: relative;
}
@media (max-width: 640px) { .gpt-process { grid-template-columns: 1fr; } }
.gpt-process::before {
  content: '';
  position: absolute; top: 44px;
  left: calc(16% + 24px); right: calc(16% + 24px);
  height: 1.5px;
  background: linear-gradient(90deg, var(--blue), #3b82f6, var(--blue));
  z-index: 0; opacity: 0.4;
}
@media (max-width: 640px) { .gpt-process::before { display: none; } }

.gpt-step {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
  text-align: center; position: relative; z-index: 1;
  transition: all var(--transition);
}
.gpt-step:hover { border-color: var(--border-blue); transform: translateY(-4px); box-shadow: var(--shadow-blue); }
.gpt-step-num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue), #3b82f6);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: #fff;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-blue);
}
.gpt-step-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--gold); background: var(--gold-light);
  border: 1px solid rgba(217,119,6,0.2);
  padding: 4px 12px; border-radius: 100px; margin-bottom: 12px;
}
.gpt-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.gpt-step p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════
   PORTFOLIO
   ═══════════════════════ */
.gpt-portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 900px) { .gpt-portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gpt-portfolio-grid { grid-template-columns: 1fr; } }

.gpt-portfolio-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all var(--transition);
}
.gpt-portfolio-card:hover { border-color: var(--border-blue); transform: translateY(-5px); box-shadow: var(--shadow-blue); }
.gpt-portfolio-thumb {
  height: 175px; position: relative;
  display: flex; align-items: center; justify-content: center; font-size: 52px;
}
.gpt-portfolio-thumb-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-mid));
}
.gpt-portfolio-thumb span { position: relative; z-index: 1; }
.gpt-portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(26,86,219,0.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
  font-size: 13px; font-weight: 600; color: #fff; z-index: 2;
}
.gpt-portfolio-card:hover .gpt-portfolio-overlay { opacity: 1; }
.gpt-portfolio-info { padding: 18px; }
.gpt-portfolio-info h4 { font-size: 14px; font-weight: 700; margin-bottom: 5px; color: var(--navy); }
.gpt-portfolio-info p { font-size: 12px; color: var(--muted); line-height: 1.5; }
.gpt-portfolio-tag {
  display: inline-block; font-size: 10px; font-weight: 600;
  padding: 3px 10px; border-radius: 100px; margin-top: 10px;
  background: var(--blue-light); color: var(--blue);
  border: 1px solid var(--border-blue);
}

/* ═══════════════════════
   PRICING
   ═══════════════════════ */
.gpt-pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: start;
}
@media (max-width: 900px) { .gpt-pricing-grid { grid-template-columns: 1fr; max-width: 440px; } }

.gpt-price-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  position: relative; transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.gpt-price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Featured/Hero plan */
.gpt-price-card.hero-plan {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue), 0 0 0 4px rgba(26,86,219,0.06);
  transform: scale(1.03);
}
.gpt-price-card.hero-plan:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 20px 60px rgba(26,86,219,0.2), 0 0 0 4px rgba(26,86,219,0.08);
}
.hero-plan-header {
  position: absolute; top: -1px; left: 0; right: 0;
  background: var(--blue); height: 5px; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.plan-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; padding: 5px 14px; border-radius: 100px; margin-bottom: 18px;
}
.badge-hot { background: var(--blue); color: #fff; box-shadow: 0 4px 14px var(--blue-glow); }
.badge-ai { background: linear-gradient(135deg, #7c3aed, #4f46e5); color: #fff; box-shadow: 0 4px 14px rgba(124,58,237,0.3); }
.badge-enterprise { background: var(--navy); color: #fff; }

.plan-name { font-size: 22px; font-weight: 800; margin-bottom: 6px; color: var(--navy); letter-spacing: -0.02em; }
.plan-tagline { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.55; }

.plan-price { display: flex; align-items: flex-end; gap: 3px; margin-bottom: 6px; }
.plan-currency { font-size: 22px; font-weight: 700; color: var(--muted); padding-bottom: 5px; }
.plan-amount { font-size: 52px; font-weight: 900; letter-spacing: -0.05em; line-height: 1; color: var(--navy); }
.plan-period { font-size: 12px; color: var(--muted); margin-bottom: 6px; }

.plan-saving {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 600; color: var(--green);
  background: var(--green-light); border: 1px solid rgba(22,163,74,0.2);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 26px;
}

.plan-divider { height: 1px; background: var(--border); margin: 22px 0; }

.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--text-2);
  padding: 9px 0; border-bottom: 1px solid var(--border);
}
.plan-features li:last-child { border-bottom: none; }

.feat-icon {
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0; margin-top: 1px;
}
.feat-yes { background: var(--green-light); color: var(--green); }
.feat-bonus { background: #ede9fe; color: #7c3aed; }
.feat-cross { background: #f1f5f9; color: var(--muted-2); font-size: 9px; }

.feat-label { color: var(--navy); font-weight: 600; }
.feat-sub { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; font-weight: 400; }
.feat-tag {
  margin-left: auto; font-size: 9.5px; font-weight: 700;
  padding: 2px 8px; border-radius: 100px; flex-shrink: 0; white-space: nowrap;
}
.feat-tag-free { background: var(--green-light); color: var(--green); border: 1px solid rgba(22,163,74,0.2); }
.feat-tag-bonus { background: var(--gold-light); color: var(--gold); border: 1px solid rgba(217,119,6,0.2); }
.feat-tag-ai { background: #ede9fe; color: #7c3aed; border: 1px solid rgba(124,58,237,0.2); }

.plan-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 15px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700; transition: all var(--transition);
}
.plan-cta-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 16px var(--blue-glow);
}
.plan-cta-primary:hover { background: var(--blue-2); transform: translateY(-2px); box-shadow: 0 8px 28px var(--blue-glow); }
.plan-cta-ai {
  background: linear-gradient(135deg, #7c3aed, #4f46e5); color: #fff;
  box-shadow: 0 4px 16px rgba(124,58,237,0.3);
}
.plan-cta-ai:hover { opacity: 0.9; transform: translateY(-2px); }
.plan-cta-ghost {
  border: 1.5px solid var(--border); color: var(--text-2); background: var(--white);
}
.plan-cta-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* ═══════════════════════
   WHY US
   ═══════════════════════ */
.gpt-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 900px) { .gpt-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gpt-why-grid { grid-template-columns: 1fr; } }

.gpt-why-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all var(--transition);
}
.gpt-why-card:hover { border-color: var(--border-blue); transform: translateY(-3px); box-shadow: var(--shadow); }
.gpt-why-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.gpt-why-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.gpt-why-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════
   TRUST BAR
   ═══════════════════════ */
.gpt-trust-bar {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 24px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 48px;
  box-shadow: var(--shadow-sm);
}
.gpt-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-2); font-weight: 600; }
.gpt-trust-item-icon { font-size: 18px; }

/* ═══════════════════════
   FAQ
   ═══════════════════════ */
.gpt-faq-list { max-width: 760px; }
.gpt-faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.gpt-faq-item:last-child { border-bottom: none; }
.gpt-faq-q { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.gpt-faq-a { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ═══════════════════════
   FINAL CTA
   ═══════════════════════ */
.gpt-cta-section { padding: 96px 5%; background: var(--navy); position: relative; overflow: hidden; }
.gpt-cta-section::before {
  content:''; position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.gpt-cta-card {
  max-width: 820px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
}
.gpt-cta-card h2 {
  font-size: clamp(28px, 5vw, 48px); font-weight: 900;
  letter-spacing: -0.04em; margin-bottom: 16px; color: #fff;
}
.gpt-cta-card > p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }

/* ═══════════════════════
   FOOTER
   ═══════════════════════ */
.gpt-footer {
  background: var(--navy-2); border-top: 1px solid rgba(255,255,255,0.07);
  padding: 32px 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.gpt-footer-left { font-size: 13px; color: rgba(255,255,255,0.4); }
.gpt-footer-left a { color: #93c5fd; }
.gpt-footer-right { display: flex; gap: 12px; }
.gpt-footer-social {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 14px;
  transition: all var(--transition);
}
.gpt-footer-social:hover { border-color: var(--blue); color: #fff; background: rgba(26,86,219,0.2); }

/* ═══════════════════════
   CLIENT LOGO CARDS
   ═══════════════════════ */
.gpt-client-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}
.gpt-client-logo-card {
  display: flex; flex-direction: column; align-items: center;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px 10px 12px;
  text-decoration: none; transition: all .22s;
  position: relative; overflow: hidden; gap: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.gpt-client-logo-card:hover {
  border-color: var(--blue); background: var(--white);
  box-shadow: 0 6px 24px rgba(26,86,219,.12);
  transform: translateY(-3px);
}
.gpt-logo-img-wrap {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; overflow: hidden;
  background: var(--white); border: 1px solid var(--border);
  flex-shrink: 0;
}
.gpt-logo-img-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 4px;
}
.gpt-logo-img-wrap img.is-fav {
  width: 48px; height: 48px; object-fit: contain;
  padding: 4px;
}
.gpt-logo-name {
  font-size: 10.5px; color: var(--muted); text-align: center;
  line-height: 1.3; word-break: break-all;
  transition: color .2s;
}
.gpt-client-logo-card:hover .gpt-logo-name { color: var(--blue); }
.gpt-logo-ext {
  position: absolute; top: 8px; right: 10px;
  font-size: 11px; color: var(--muted-2); opacity: 0;
  transition: opacity .2s;
}
.gpt-client-logo-card:hover .gpt-logo-ext { opacity: 1; }

/* ═══════════════════════
   PROCESS STEP VISUALS
   ═══════════════════════ */
.gpt-step-visual {
  width: 100%; border-radius: 14px; overflow: hidden;
  margin-bottom: 18px; border: 1px solid var(--border);
  background: var(--white);
}
/* WhatsApp Chat Mock */
.gpt-wa-chat-mock {
  font-size: 12px;
}
.wa-mock-header {
  background: #075e54; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px; color: #fff;
}
.wa-mock-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center;
  justify-content: center; font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}
.wa-mock-name  { font-weight: 600; font-size: 13px; }
.wa-mock-online{ font-size: 10px; color: #a7f3d0; }
.wa-mock-body  { padding: 12px; background: #ece5dd; display: flex; flex-direction: column; gap: 8px; }
.wa-msg { max-width: 80%; padding: 7px 11px; border-radius: 8px; font-size: 11.5px; line-height: 1.4; }
.wa-msg-in  { background: #fff; border-radius: 0 8px 8px 8px; align-self: flex-start; }
.wa-msg-out { background: #dcf8c6; border-radius: 8px 0 8px 8px; align-self: flex-end; }

/* Browser Mini Mock */
.gpt-browser-mini {
  border-radius: 10px 10px 0 0; overflow: hidden;
}
.gpt-browser-mini-bar {
  background: #f1f5f9; padding: 8px 12px;
  display: flex; align-items: center; gap: 6px;
}
.gpt-browser-mini-bar span {
  width: 8px; height: 8px; border-radius: 50%; display: block;
}
.gpt-browser-mini-bar span:nth-child(1) { background: #ef4444; }
.gpt-browser-mini-bar span:nth-child(2) { background: #f59e0b; }
.gpt-browser-mini-bar span:nth-child(3) { background: #22c55e; }
.gpt-browser-mini-url {
  flex: 1; background: #fff; border: 1px solid #e2e8f0;
  border-radius: 4px; padding: 2px 8px; font-size: 10px;
  color: #64748b; margin-left: 4px;
}
.gpt-browser-mini-body { padding: 12px; background: #f8faff; }
.bm-hero-strip { height: 36px; background: linear-gradient(90deg,var(--blue),#3b82f6); border-radius: 6px; margin-bottom: 10px; }
.bm-row { display: flex; gap: 8px; margin-bottom: 10px; }
.bm-card { flex: 1; height: 28px; background: #e2e8f0; border-radius: 6px; }
.bm-text-lines { display: flex; flex-direction: column; gap: 5px; }
.bm-text-lines div { height: 7px; background: #e2e8f0; border-radius: 4px; }
.gpt-step-tools {
  display: flex; gap: 6px; flex-wrap: wrap; padding: 10px 12px;
  border-top: 1px solid var(--border); background: var(--white);
}
.gpt-step-tools span {
  background: var(--blue-light); color: var(--blue);
  font-size: 10px; font-weight: 700; padding: 3px 8px;
  border-radius: 999px;
}

/* Launch Mock */
.gpt-launch-mock {
  padding: 24px 16px; text-align: center;
}
.gpt-launch-icon { font-size: 36px; margin-bottom: 8px; animation: rocketBounce 2s ease-in-out infinite; }
@keyframes rocketBounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-6px);} }
.gpt-launch-url {
  font-weight: 700; color: var(--navy); font-size: 14px;
  margin-bottom: 10px; letter-spacing: .02em;
}
.gpt-launch-badges {
  display: flex; justify-content: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap;
}
.gpt-launch-badges span {
  background: var(--green-light); color: var(--green);
  font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 999px;
}
.gpt-launch-bar {
  height: 6px; background: #e2e8f0; border-radius: 999px; overflow: hidden;
}
.gpt-launch-progress {
  height: 100%; background: linear-gradient(90deg,var(--blue),#22c55e);
  border-radius: 999px; width: 0;
  animation: loadProgress 2s ease forwards 0.5s;
}
@keyframes loadProgress { to { width: 100%; } }

/* ═══════════════════════
   CLIENT MARQUEE
   ═══════════════════════ */
.gpt-marquee-section {
  background: var(--bg);
  padding: 28px 0 32px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gpt-marquee-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.gpt-marquee-track-wrap {
  overflow: hidden;
  margin-bottom: 10px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.gpt-marquee-track {
  display: flex;
  gap: 10px;
  width: max-content;
}
.gpt-marquee-left  { animation: marqueeLeft  38s linear infinite; }
.gpt-marquee-right { animation: marqueeRight 42s linear infinite; }
.gpt-marquee-track-wrap:hover .gpt-marquee-left,
.gpt-marquee-track-wrap:hover .gpt-marquee-right { animation-play-state: paused; }
@keyframes marqueeLeft  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.gpt-marquee-pill-fav {
  width: 16px; height: 16px; border-radius: 3px;
  object-fit: contain; flex-shrink: 0;
}
.gpt-marquee-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px 7px 8px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 999px; font-size: 12.5px; font-weight: 500;
  color: var(--text-2); text-decoration: none; white-space: nowrap;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.gpt-marquee-pill:hover {
  border-color: var(--blue); color: var(--blue);
  box-shadow: 0 2px 12px var(--blue-glow); transform: translateY(-1px);
}
.mp-cat {
  font-size: 9.5px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 2px 7px; border-radius: 999px;
}
.mp-cat-int  { background: #ede9fe; color: #7c3aed; }
.mp-cat-evt  { background: #fce7f3; color: #be185d; }
.mp-cat-re   { background: #dcfce7; color: #15803d; }
.mp-cat-ca   { background: #fef3c7; color: #b45309; }
.mp-cat-ph   { background: #e0f2fe; color: #0369a1; }
.mp-cat-edu  { background: #fef9c3; color: #854d0e; }
.mp-cat-dnt  { background: #f0fdf4; color: #166534; }
.mp-cat-fit  { background: #fff1f2; color: #be123c; }
.mp-cat-jwl  { background: #fdf4ff; color: #a21caf; }
.mp-cat-law  { background: #f0f9ff; color: #0c4a6e; }
.mp-cat-rst  { background: #fff7ed; color: #c2410c; }

/* ═══════════════════════
   TRUST BADGES
   ═══════════════════════ */
.gpt-trust-badges {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; margin: 32px 0 44px;
}
.gpt-trust-badge {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  min-width: 190px;
}
.gpt-trust-badge > span { font-size: 26px; flex-shrink: 0; }
.gpt-trust-badge strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; }
.gpt-trust-badge small  { font-size: 11.5px; color: var(--muted); }

/* ═══════════════════════
   CLIENT CATEGORIES
   ═══════════════════════ */
.gpt-client-category {
  margin-bottom: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
  transition: box-shadow .25s;
}
.gpt-client-category:hover { box-shadow: 0 6px 28px rgba(26,86,219,.08); }
.gpt-client-cat-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.gpt-client-cat-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  font-size: 18px; flex-shrink: 0;
}
.gpt-client-cat-header h3 {
  font-size: 15px; font-weight: 700; color: var(--navy); flex: 1;
}
.gpt-client-cat-count {
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--blue);
  background: var(--blue-light); padding: 3px 10px; border-radius: 999px;
}
.gpt-client-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.gpt-client-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 13px; border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 12.5px; font-weight: 500; color: var(--text-2);
  text-decoration: none; transition: all .2s; background: var(--bg);
}
.gpt-client-pill span { font-size: 10px; opacity: .5; transition: opacity .2s; }
.gpt-client-pill:hover {
  background: var(--blue); border-color: var(--blue); color: #fff;
}
.gpt-client-pill:hover span { opacity: 1; }

/* ═══════════════════════
   GOOGLE REVIEWS SECTION
   ═══════════════════════ */
.gpt-grating {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap; margin-bottom: 36px;
}
.gpt-grating-score {
  font-weight: 800; font-size: 24px; color: var(--navy);
}
.gpt-grating-stars {
  color: #FBBC04; font-size: 20px; letter-spacing: 2px;
}
.gpt-grating-label {
  color: var(--muted); font-size: 13px;
}

.gpt-rev-wrap {
  display: flex; align-items: center; gap: 14px;
}
.gpt-rev-btn {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--navy); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.gpt-rev-btn:hover:not(:disabled) {
  background: var(--blue); border-color: var(--blue); color: #fff;
  box-shadow: 0 4px 16px var(--blue-glow);
}
.gpt-rev-btn:disabled { opacity: .3; cursor: not-allowed; }

.gpt-rev-outer {
  flex: 1; overflow: hidden; padding: 6px 0 12px;
}
.gpt-rev-track {
  display: flex; will-change: transform;
}

.gpt-rev-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; padding: 24px;
  display: flex; flex-direction: column; gap: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: box-shadow .25s;
}
.gpt-rev-card:hover { box-shadow: 0 8px 32px rgba(26,86,219,.1); }

.gpt-rev-header {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px;
}
.gpt-rev-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.gpt-rev-meta { flex: 1; min-width: 0; }
.gpt-rev-name  { font-weight: 700; font-size: 14px; color: var(--navy); }
.gpt-rev-role  { font-size: 11px; color: var(--muted); margin-top: 2px; }
.gpt-rev-stars-row { display: flex; align-items: center; gap: 4px; margin-top: 5px; }
.gpt-rev-stars { color: #FBBC04; font-size: 13px; letter-spacing: 1px; }
.gpt-rev-time  { font-size: 10px; color: var(--muted-2); }
.gpt-rev-text  {
  color: var(--text-2); font-size: 13.5px; line-height: 1.75;
  margin: 0 0 14px; flex: 1;
}
.gpt-rev-result {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--green);
  padding-top: 12px; border-top: 1px solid var(--border);
}

.gpt-rev-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 20px;
}
.gpt-rev-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--border); border: none; cursor: pointer;
  transition: all .2s; padding: 0;
}
.gpt-rev-dot.active {
  background: var(--blue); width: 24px;
}

/* ═══════════════════════
   FLOATING WA
   ═══════════════════════ */
.gpt-wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 58px; height: 58px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  animation: floatWA 3s ease-in-out infinite;
  transition: transform var(--transition);
}
.gpt-wa-float:hover { transform: scale(1.1) !important; box-shadow: 0 8px 36px rgba(37,211,102,0.6); }
@keyframes floatWA { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-6px);} }

/* ═══════════════════════
   MOBILE
   ═══════════════════════ */
@media (max-width: 480px) {
  .gpt-section { padding: 72px 5%; }
  .gpt-hero { padding: 90px 5% 60px; }
  .hero-price-block { flex-direction: column; gap: 12px; padding: 20px; }
  .hero-divider { display: none; }
  .gpt-cta-section { padding: 72px 5%; }
  .gpt-footer { flex-direction: column; text-align: center; }
  .gpt-trust-badges { gap: 10px; }
  .gpt-trust-badge { min-width: 140px; padding: 12px 14px; }
  .gpt-client-category { padding: 16px; }
  .gpt-client-cat-header { flex-wrap: wrap; gap: 8px; }
  .gpt-client-logo-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 8px; }
  .gpt-logo-img-wrap { width: 48px; height: 48px; }
  .gpt-step-visual { display: none; }
}
