/* ==========================================================================
   GetProDeveloper - Design System (v3, "premium studio" pass)
   Softer, richer visual language: violet-to-emerald gradient brand system,
   glassy header, glowing colour-matched shadows instead of flat/hard drop
   shadows, refined typography rhythm. Same class names throughout so every
   template part keeps working - only the look changes, not a single word
   of copy. Still no external libraries.
   ========================================================================== */
:root {
	--gpd-ink:        #0E1220;
	--gpd-paper:      #F8F8FC;
	--gpd-signal:     #5B4FE9;
	--gpd-signal-dark:#4438C7;
	--gpd-circuit:    #14C793;
	--gpd-amber:      #FFB443;
	--gpd-line:       #E8E7F3;
	--gpd-ink-muted:  #62667A;
	--gpd-surface:    #FFFFFF;
	--gpd-error:      #EF4444;

	--gpd-color-primary:    var(--gpd-signal);
	--gpd-color-secondary:  var(--gpd-ink);
	--gpd-color-accent:     var(--gpd-circuit);
	--gpd-color-bg:         var(--gpd-paper);
	--gpd-color-surface:    var(--gpd-surface);
	--gpd-color-text:       var(--gpd-ink);
	--gpd-color-text-muted: var(--gpd-ink-muted);
	--gpd-color-border:     var(--gpd-line);
	--gpd-color-success:    var(--gpd-circuit);
	--gpd-color-warning:    var(--gpd-amber);
	--gpd-color-error:      var(--gpd-error);

	--gpd-font-heading: "Space Grotesk", "Segoe UI", sans-serif;
	--gpd-font-body: "Inter", "Segoe UI", sans-serif;
	--gpd-font-mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;

	--gpd-container: 1240px;
	--gpd-radius: 14px;
	--gpd-radius-lg: 26px;
	--gpd-transition: 200ms cubic-bezier(.2,.8,.3,1);

	/* New tokens for the v3 pass - gradients + colour-matched shadows */
	--gpd-gradient-brand: linear-gradient(135deg, #7A6CF0 0%, #5B4FE9 48%, #14C793 100%);
	--gpd-gradient-brand-soft: linear-gradient(135deg, rgba(91,79,233,.10), rgba(20,199,147,.10));
	--gpd-gradient-dark: linear-gradient(160deg, #1B1B3A 0%, #10111F 55%, #191142 100%);
	--gpd-shadow-glow:  0 18px 40px -14px rgba(91,79,233,.55);
	--gpd-shadow-soft:  0 2px 6px rgba(14,18,32,.05), 0 14px 30px rgba(14,18,32,.06);
	--gpd-shadow-lift:  0 12px 24px rgba(14,18,32,.06), 0 32px 64px -16px rgba(91,79,233,.28);
	--gpd-shadow-ink:   0 24px 48px -18px rgba(14,18,32,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--gpd-font-body); color: var(--gpd-ink); background: var(--gpd-paper); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--gpd-font-heading); font-weight: 700; line-height: 1.1; margin: 0 0 .5em; letter-spacing: -0.02em; color: var(--gpd-ink); }
p { margin: 0 0 1em; color: var(--gpd-ink-muted); }
a { color: inherit; }
img { max-width: 100%; }
.gpd-container { max-width: var(--gpd-container); margin: 0 auto; padding: 0 24px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.gpd-skip-link:focus { position: fixed; top: 8px; left: 8px; background: #fff; padding: 8px 12px; z-index: 9999; border-radius: 8px; box-shadow: var(--gpd-shadow-lift); }
:focus-visible { outline: 2.5px solid var(--gpd-signal); outline-offset: 3px; border-radius: 4px; }

.gpd-eyebrow { font-family: var(--gpd-font-mono); font-weight: 700; font-size: .76rem; text-transform: uppercase; letter-spacing: .09em; color: var(--gpd-signal-dark); display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px 7px 14px; border-radius: 999px; background: var(--gpd-gradient-brand-soft); border: 1px solid rgba(91,79,233,.16); margin-bottom: 18px; }
.gpd-eyebrow::before { content: "// "; color: var(--gpd-circuit); font-weight: 800; }

/* Header - glassy, quiet border, soft lift once scrolled */
.gpd-header { position: sticky; top: 0; z-index: 100; background: rgba(248,248,252,.72); backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%); border-bottom: 1px solid var(--gpd-line); transition: box-shadow var(--gpd-transition), background var(--gpd-transition); }
.gpd-header.is-scrolled { box-shadow: 0 12px 32px -16px rgba(14,18,32,.18); background: rgba(248,248,252,.92); }
.gpd-header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 24px; }
.gpd-logo-mark, .gpd-logo-mark--footer { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--gpd-ink); transition: opacity var(--gpd-transition); }
.gpd-logo-mark svg { flex-shrink: 0; color: var(--gpd-signal); }
.gpd-logo-word { font-family: var(--gpd-font-heading); font-weight: 700; font-size: 1.32rem; letter-spacing: -.02em; }
.gpd-logo-word-accent { background: var(--gpd-gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gpd-logo-mark:hover { opacity: .82; }
.gpd-footer-brand .gpd-logo-mark--footer { margin-bottom: 14px; }

/* Scroll progress bar - fills as the visitor reads down the page */
.gpd-scroll-progress { position: absolute; left: 0; bottom: -1px; height: 2.5px; width: 0%; background: var(--gpd-gradient-brand); transition: width 80ms linear; }

.gpd-menu { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.gpd-menu a { position: relative; display: inline-block; text-decoration: none; color: var(--gpd-ink); font-size: .95rem; font-weight: 600; padding-bottom: 4px; transition: color 150ms ease; }
.gpd-menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; border-radius: 2px; background: var(--gpd-gradient-brand); transition: right 260ms cubic-bezier(.2,.8,.3,1); }
.gpd-menu a:hover { color: var(--gpd-signal); }
.gpd-menu a:hover::after { right: 0; }
.gpd-menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.gpd-menu-toggle-bar { display: block; width: 22px; height: 2.5px; border-radius: 2px; background: var(--gpd-ink); margin: 5px 0; transition: transform var(--gpd-transition), opacity var(--gpd-transition); }
.gpd-menu-toggle[aria-expanded="true"] .gpd-menu-toggle-bar:nth-child(2) { transform: translateY(7.5px) rotate(45deg); }
.gpd-menu-toggle[aria-expanded="true"] .gpd-menu-toggle-bar:nth-child(3) { opacity: 0; }
.gpd-menu-toggle[aria-expanded="true"] .gpd-menu-toggle-bar:nth-child(4) { transform: translateY(-7.5px) rotate(-45deg); }

/* Buttons - soft, glowing, confident lift instead of hard skeuomorphic edges */
.gpd-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 30px; border-radius: 12px; font-weight: 700; font-size: .96rem; letter-spacing: -.005em; text-decoration: none; border: 1.5px solid transparent; cursor: pointer; overflow: hidden; will-change: transform; transition: transform 180ms cubic-bezier(.2,.8,.3,1), box-shadow var(--gpd-transition), background var(--gpd-transition), border-color var(--gpd-transition), color var(--gpd-transition); }
.gpd-btn:hover { transform: translate(var(--gpd-mx, 0), calc(var(--gpd-my, 0) - 3px)); }
.gpd-btn:active { transform: translateY(-1px) scale(.98); }
.gpd-btn[disabled], .gpd-btn.is-loading { opacity: .55; cursor: not-allowed; transform: none; }
.gpd-btn.is-loading::after { content: ""; width: 14px; height: 14px; margin-left: 8px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: gpd-spin .6s linear infinite; }
.gpd-btn-primary { background: var(--gpd-gradient-brand); background-size: 160% 160%; background-position: 0% 50%; color: #fff; box-shadow: var(--gpd-shadow-glow); }
.gpd-btn-primary:hover { background-position: 100% 50%; box-shadow: 0 26px 54px -14px rgba(91,79,233,.6); }
.gpd-btn-primary:active { box-shadow: 0 10px 24px -10px rgba(91,79,233,.5); }
.gpd-btn-secondary { background: var(--gpd-surface); color: var(--gpd-ink); border-color: var(--gpd-line); box-shadow: var(--gpd-shadow-soft); }
.gpd-btn-secondary:hover { border-color: var(--gpd-signal); color: var(--gpd-signal-dark); box-shadow: var(--gpd-shadow-lift); }
.gpd-btn-lg { padding: 18px 36px; font-size: 1.04rem; border-radius: 14px; }
@keyframes gpd-spin { to { transform: rotate(360deg); } }

/* Pulse ring - reserved for the single highest-priority CTA per page */
.gpd-btn-pulse { animation: gpd-pulse-ring 2.6s ease-out infinite; }
.gpd-btn-pulse:hover { animation-play-state: paused; }
@keyframes gpd-pulse-ring {
	0%   { box-shadow: var(--gpd-shadow-glow), 0 0 0 0 rgba(91,79,233,.5); }
	70%  { box-shadow: var(--gpd-shadow-glow), 0 0 0 18px rgba(91,79,233,0); }
	100% { box-shadow: var(--gpd-shadow-glow), 0 0 0 0 rgba(91,79,233,0); }
}
@media (prefers-reduced-motion: reduce) { .gpd-btn-pulse { animation: none; } }

/* Hero - soft gradient mesh backdrop, calmer type, more breathing room */
.gpd-hero { padding: 100px 0 64px; }
.gpd-hero::before {
	content: ""; position: absolute; inset: 0 0 auto 0; height: 680px; z-index: 0; pointer-events: none;
	background:
		radial-gradient(560px circle at 12% 15%, rgba(91,79,233,.14), transparent 62%),
		radial-gradient(520px circle at 88% 8%, rgba(20,199,147,.12), transparent 60%);
}
.gpd-hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.gpd-hero h1 { font-size: clamp(2.5rem, 5vw, 4.3rem); color: var(--gpd-ink); }
.gpd-hero-copy > p { font-size: 1.16rem; max-width: 46ch; font-weight: 450; color: var(--gpd-ink-muted); }
.gpd-hero-actions { display: flex; gap: 18px; margin-top: 34px; flex-wrap: wrap; }

/* Hero visual - cursor-reactive glow behind the terminal */
.gpd-hero-visual { position: relative; }
.gpd-hero-visual::before {
	content: ""; position: absolute; inset: -60px; z-index: 0; pointer-events: none; opacity: 0;
	background: radial-gradient(480px circle at var(--gpd-spot-x, 50%) var(--gpd-spot-y, 40%), rgba(91,79,233,.4), transparent 62%);
	transition: opacity 300ms ease;
}
.gpd-hero-visual:hover::before, .gpd-hero-visual.is-active::before { opacity: 1; }
.gpd-hero-visual .gpd-terminal { position: relative; z-index: 1; }
.gpd-hero-glow { content: ""; position: absolute; inset: -40px; z-index: 0; pointer-events: none; opacity: .55; filter: blur(2px);
	background: radial-gradient(420px circle at 78% 12%, rgba(20,199,147,.30), transparent 60%), radial-gradient(360px circle at 15% 85%, rgba(91,79,233,.28), transparent 62%);
}

.gpd-hero-markets { display: flex; flex-wrap: wrap; gap: 10px 18px; list-style: none; margin: 22px 0 0; padding: 0; }
.gpd-hero-markets li { font-size: .86rem; font-weight: 600; color: var(--gpd-ink-muted); display: inline-flex; align-items: center; gap: 6px; }

/* Signature: build terminal */
.gpd-terminal { background: var(--gpd-gradient-dark); border-radius: var(--gpd-radius-lg); overflow: hidden; box-shadow: var(--gpd-shadow-ink), 0 0 0 1px rgba(255,255,255,.07) inset, var(--gpd-shadow-glow); transition: transform 220ms cubic-bezier(.2,.8,.3,1); transform: perspective(900px) rotateX(var(--gpd-tilt-x, 0deg)) rotateY(var(--gpd-tilt-y, 0deg)); }
.gpd-terminal-bar { display: flex; gap: 7px; padding: 16px 20px; background: rgba(255,255,255,.045); border-bottom: 1px solid rgba(255,255,255,.06); }
.gpd-terminal-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.22); }
.gpd-terminal-dot:nth-child(1) { background: #FF6259; }
.gpd-terminal-dot:nth-child(2) { background: #FFBD2E; }
.gpd-terminal-dot:nth-child(3) { background: #29CB5A; }
.gpd-terminal-body { font-family: var(--gpd-font-mono); font-size: .9rem; color: #D8DCF5; padding: 26px 24px 34px; min-height: 230px; }
.gpd-terminal-line { display: block; margin: 0 0 13px; opacity: 0; white-space: pre-wrap; font-weight: 500; }
.gpd-terminal-line.is-shown { opacity: 1; }
.gpd-terminal-line .gpd-t-prompt { color: #9C90FF; font-weight: 700; }
.gpd-terminal-line .gpd-t-ok { color: var(--gpd-circuit); font-weight: 700; }
.gpd-terminal-cursor { display: inline-block; width: 8px; height: 16px; background: var(--gpd-circuit); vertical-align: middle; border-radius: 1px; animation: gpd-blink 1s step-end infinite; }
@keyframes gpd-blink { 50% { opacity: 0; } }

/* Cards / Services - lighter borders, elevation-based hover instead of hard lines */
.gpd-services-grid, .gpd-pricing, .gpd-process, .gpd-faq, .gpd-cta { padding: 92px 0; }
.gpd-section-head { max-width: 640px; margin-bottom: 48px; position: relative; }
.gpd-section-head h2 { position: relative; display: inline-block; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.gpd-section-head h2::after { content: ""; position: absolute; left: 0; bottom: -10px; height: 4px; width: 52px; background: var(--gpd-gradient-brand); border-radius: 4px; transform-origin: left; transform: scaleX(0); transition: transform 550ms cubic-bezier(.2,.8,.3,1) 120ms; }
.gpd-section-head.is-visible h2::after { transform: scaleX(1); }
.gpd-cards { display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; gap: 22px; }
.gpd-card { display: flex; flex-direction: column; height: 100%; padding: 32px 28px; background: var(--gpd-surface); border: 1px solid var(--gpd-line); border-radius: var(--gpd-radius); text-decoration: none; color: inherit; box-shadow: var(--gpd-shadow-soft); transition: box-shadow 220ms ease, transform 220ms cubic-bezier(.2,.8,.3,1), border-color var(--gpd-transition); transform: perspective(900px) rotateX(var(--gpd-tilt-x, 0deg)) rotateY(var(--gpd-tilt-y, 0deg)) translateY(0); }
.gpd-card:hover { box-shadow: var(--gpd-shadow-lift); transform: perspective(900px) rotateX(var(--gpd-tilt-x, 0deg)) rotateY(var(--gpd-tilt-y, 0deg)) translateY(-7px); border-color: rgba(91,79,233,.35); }
.gpd-service-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.gpd-service-card p { font-size: .93rem; margin: 0; }

/* Pricing */
.gpd-currency-switch { display: inline-flex; gap: 4px; background: var(--gpd-line); padding: 4px; border-radius: 999px; margin-top: 20px; }
.gpd-currency-btn { border: 0; background: transparent; padding: 8px 17px; border-radius: 999px; font-family: var(--gpd-font-mono); font-weight: 700; font-size: .82rem; cursor: pointer; color: var(--gpd-ink-muted); transition: background 180ms ease, color 180ms ease, transform 180ms ease; }
.gpd-currency-btn:hover { color: var(--gpd-ink); }
.gpd-currency-btn.is-active { background: var(--gpd-ink); color: #fff; transform: scale(1.04); }
.gpd-pricing-note { margin-top: 28px; font-size: .84rem; color: var(--gpd-ink-muted); }
.gpd-pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; gap: 22px; }
.gpd-pricing-card { position: relative; display: flex; flex-direction: column; height: 100%; padding: 36px 28px; background: var(--gpd-surface); border: 1px solid var(--gpd-line); border-radius: var(--gpd-radius-lg); text-align: left; box-shadow: var(--gpd-shadow-soft); transition: transform 220ms cubic-bezier(.2,.8,.3,1), box-shadow 220ms ease, border-color var(--gpd-transition); }
.gpd-pricing-card:hover { transform: translateY(-9px); border-color: rgba(91,79,233,.35); box-shadow: var(--gpd-shadow-lift); }
.gpd-pricing-card.is-popular { border-color: transparent; background: linear-gradient(var(--gpd-surface), var(--gpd-surface)) padding-box, var(--gpd-gradient-brand) border-box; border-width: 2px; border-style: solid; box-shadow: var(--gpd-shadow-glow); }
.gpd-pricing-card.is-popular:hover { box-shadow: 0 32px 64px -14px rgba(91,79,233,.4); }
.gpd-badge { position: absolute; top: -14px; left: 26px; background: var(--gpd-gradient-brand); color: #fff; font-family: var(--gpd-font-mono); font-size: .72rem; font-weight: 800; letter-spacing: .05em; padding: 7px 15px; border-radius: 999px; text-transform: uppercase; box-shadow: 0 8px 18px -6px rgba(91,79,233,.5); }
.gpd-pricing-card h3 { font-size: 1.16rem; }
.gpd-price { font-family: var(--gpd-font-mono); font-size: 2.3rem; font-weight: 700; color: var(--gpd-ink); margin: 6px 0 18px; }
.gpd-pricing-card .gpd-btn { width: 100%; margin-top: 18px; flex-shrink: 0; }
.gpd-pricing-card h3 { flex-shrink: 0; }
.gpd-pricing-card .gpd-price { flex-shrink: 0; }

/* Process */
.gpd-process-steps { display: grid; grid-template-columns: repeat(5, 1fr); list-style: none; padding: 0; gap: 16px; margin: 0; position: relative; }
.gpd-process-steps::before { content: ""; position: absolute; top: 22px; left: 4%; right: 4%; height: 2px; background: var(--gpd-line); z-index: 0; }
.gpd-process-steps li { position: relative; z-index: 1; padding: 0; }
.gpd-process-steps span { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; font-family: var(--gpd-font-mono); font-size: .8rem; font-weight: 700; letter-spacing: .02em; color: #fff; background: var(--gpd-gradient-brand); padding: 0 12px; border-radius: 999px; margin-bottom: 16px; box-shadow: 0 10px 22px -8px rgba(91,79,233,.5); }
.gpd-process-steps li strong { display: block; font-family: var(--gpd-font-heading); font-size: 1.06rem; }

/* Accordion */
.gpd-accordion-item { border-bottom: 1px solid var(--gpd-line); }
.gpd-accordion-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; text-align: left; background: none; border: 0; padding: 24px 0; font-weight: 700; font-size: 1.06rem; cursor: pointer; color: var(--gpd-ink); transition: color 160ms ease; }
.gpd-accordion-trigger:hover { color: var(--gpd-signal); }
.gpd-accordion-trigger::after { content: "+"; font-family: var(--gpd-font-mono); font-size: 1.4rem; font-weight: 700; color: var(--gpd-signal); transition: transform var(--gpd-transition); }
.gpd-accordion-trigger[aria-expanded="true"]::after { transform: rotate(45deg); }
.gpd-accordion-panel { padding: 0 0 24px; max-width: 68ch; }

/* CTA - rich gradient block, hard contrast kept but warmer */
.gpd-cta { text-align: center; }
.gpd-cta-inner { position: relative; overflow: hidden; padding: 76px 24px; background: var(--gpd-gradient-dark); color: #fff; border-radius: var(--gpd-radius-lg); box-shadow: var(--gpd-shadow-ink); }
.gpd-cta-inner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(480px circle at 15% 0%, rgba(91,79,233,.5), transparent 60%), radial-gradient(420px circle at 90% 100%, rgba(20,199,147,.35), transparent 60%); pointer-events: none; }
.gpd-cta-inner > * { position: relative; z-index: 1; }
.gpd-cta-inner h2 { color: #fff; font-size: clamp(1.85rem, 3vw, 2.65rem); }
.gpd-cta-inner p { color: #B7BBDC; font-size: 1.06rem; }

/* Footer */
.gpd-footer { background: var(--gpd-surface); margin-top: 0; padding-top: 66px; border-top: 1px solid var(--gpd-line); }
.gpd-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.gpd-footer-title { font-family: var(--gpd-font-mono); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; color: var(--gpd-ink); }
.gpd-footer-menu { list-style: none; padding: 0; margin: 0; }
.gpd-footer-menu li { margin-bottom: 9px; }
.gpd-footer-menu a { text-decoration: none; color: var(--gpd-ink-muted); font-size: .9rem; font-weight: 500; transition: color 150ms ease; }
.gpd-footer-menu a:hover { color: var(--gpd-signal); }
.gpd-footer-bottom { border-top: 1px solid var(--gpd-line); margin-top: 44px; padding: 22px 24px; font-size: .8rem; color: var(--gpd-ink-muted); display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; }
.gpd-footer-legal { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.gpd-footer-legal a { color: var(--gpd-ink-muted); text-decoration: none; }
.gpd-footer-legal a:hover { color: var(--gpd-signal); text-decoration: underline; }

/* Announcement bar */
.gpd-announcement-bar { background: var(--gpd-gradient-dark); color: #fff; text-align: center; padding: 11px 16px; font-size: .82rem; font-family: var(--gpd-font-mono); font-weight: 600; letter-spacing: .01em; }
.gpd-announcement-bar p { margin: 0; color: #fff; }

/* 404 */
.gpd-404 { text-align: center; padding: 110px 24px; }
.gpd-404-actions { display: flex; gap: 16px; justify-content: center; margin: 30px 0; flex-wrap: wrap; }

/* Reveal animation */
.gpd-reveal { opacity: 0; transform: translateY(22px); transition: opacity 500ms ease, transform 500ms ease; }
.gpd-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.gpd-reveal { opacity: 1; transform: none; transition: none; }
	.gpd-btn:hover, .gpd-card:hover, .gpd-pricing-card:hover, .gpd-terminal { transform: none; }
	.gpd-terminal-line { opacity: 1 !important; }
	.gpd-terminal-cursor { animation: none; }
	.gpd-hero-visual::before { display: none; }
}

/* Decorative background gears - tie visually to the logo mark, appear on
   scroll, spin slowly forever. Purely decorative: hidden on mobile so they
   never add weight or clutter on small screens. */
.gpd-hero, .gpd-services-grid, .gpd-pricing, .gpd-footer { position: relative; overflow: hidden; }
.gpd-gear-decor { position: absolute; z-index: 0; color: var(--gpd-signal); pointer-events: none; }
.gpd-gear-decor.is-visible { opacity: .07; }
.gpd-gear-decor svg { width: 100%; height: 100%; display: block; animation: gpd-gear-spin 26s linear infinite; }
.gpd-gear-decor--hero { top: -50px; right: -40px; }
.gpd-gear-decor--services { bottom: -40px; left: -50px; }
.gpd-gear-decor--pricing { top: 10px; right: -60px; }
.gpd-gear-decor--footer { bottom: -60px; left: -70px; }
.gpd-hero-inner, .gpd-services-grid .gpd-container, .gpd-pricing .gpd-container, .gpd-footer-grid, .gpd-footer-bottom { position: relative; z-index: 1; }
@keyframes gpd-gear-spin { to { transform: rotate(360deg); } }
@media (max-width: 768px) { .gpd-gear-decor { display: none; } }
@media (prefers-reduced-motion: reduce) { .gpd-gear-decor svg { animation: none; } }

/* About page */
.gpd-about-hero { padding: 44px 0 12px; }
.gpd-about-hero-inner { max-width: 760px; }
.gpd-about-intro p { font-size: 1.09rem; color: var(--gpd-ink-muted); }
.gpd-about-values { padding: 54px 0; }
.gpd-about-services-link { padding: 54px 0; text-align: center; }
.gpd-about-services-inner { max-width: 560px; margin: 0 auto; }
.gpd-about-services-inner p { color: var(--gpd-ink-muted); margin-bottom: 24px; }

/* Stats strip */
.gpd-stats-strip { background: var(--gpd-gradient-dark); padding: 48px 0; }
.gpd-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.gpd-stat { color: #fff; }
.gpd-stat-number, .gpd-stat-suffix { font-family: var(--gpd-font-mono); font-weight: 700; font-size: 2.5rem; background: var(--gpd-gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.gpd-stat-label { display: block; font-size: .8rem; color: rgba(255,255,255,.68); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin-top: 6px; }

/* Floating actions */
.gpd-floating-actions { position: fixed; right: 20px; bottom: 20px; z-index: 200; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity 280ms ease, transform 280ms ease; }
.gpd-floating-actions.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.gpd-fab { display: inline-flex; align-items: center; gap: 8px; border: 0; cursor: pointer; text-decoration: none; font-family: var(--gpd-font-mono); font-weight: 700; font-size: .85rem; box-shadow: var(--gpd-shadow-lift); transition: transform 180ms ease, box-shadow 180ms ease; }
.gpd-fab:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(91,79,233,.5); }
.gpd-fab-quote { background: var(--gpd-gradient-brand); color: #fff; padding: 14px 22px; border-radius: 999px; }
.gpd-fab-quote svg { width: 16px; height: 16px; animation: gpd-gear-spin 8s linear infinite; }
.gpd-fab-top { width: 44px; height: 44px; border-radius: 50%; background: var(--gpd-ink); color: #fff; font-size: 1.1rem; justify-content: center; align-self: flex-end; }
@media (prefers-reduced-motion: reduce) { .gpd-floating-actions { transition: none; } .gpd-fab-quote svg { animation: none; } }
@media (max-width: 640px) { .gpd-fab-quote span { display: none; } .gpd-fab-quote { padding: 14px; border-radius: 50%; } }

/* Breadcrumbs */
.gpd-breadcrumbs { padding: 22px 0 0; font-size: .82rem; color: var(--gpd-ink-muted); font-weight: 500; }
.gpd-breadcrumbs a { color: var(--gpd-ink-muted); text-decoration: none; }
.gpd-breadcrumbs a:hover { color: var(--gpd-signal); }
.gpd-breadcrumbs span { margin: 0 6px; }
.gpd-breadcrumbs [aria-current] { color: var(--gpd-ink); font-weight: 700; }

/* Service single / archive */
.gpd-service-hero { padding: 64px 0 48px; border-bottom: 1px solid var(--gpd-line); }
.gpd-service-hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.gpd-service-hero-desc { font-size: 1.1rem; max-width: 52ch; font-weight: 450; }
.gpd-service-hero-media img { border-radius: var(--gpd-radius-lg); width: 100%; height: auto; box-shadow: var(--gpd-shadow-lift); }
.gpd-service-body { padding: 64px 0; }
.gpd-service-body-grid { display: grid; grid-template-columns: 1fr .4fr; gap: 48px; align-items: start; }
.gpd-service-intro { max-width: 68ch; }
.gpd-service-benefits { background: var(--gpd-surface); border: 1px solid var(--gpd-line); border-radius: var(--gpd-radius); padding: 28px; position: sticky; top: 100px; box-shadow: var(--gpd-shadow-soft); }
.gpd-service-benefits ul { list-style: none; margin: 0; padding: 0; }
.gpd-service-benefits li { padding: 12px 0 12px 28px; border-bottom: 1px solid var(--gpd-line); position: relative; font-size: .94rem; font-weight: 500; }
.gpd-service-benefits li:last-child { border-bottom: 0; }
.gpd-service-benefits li::before { content: "✓"; position: absolute; left: 0; color: var(--gpd-circuit); font-weight: 800; }
.gpd-archive-hero { padding: 64px 0 30px; }
.gpd-archive-lead { max-width: 56ch; font-size: 1.1rem; }
.gpd-related-services { padding: 64px 0; background: var(--gpd-paper); border-top: 1px solid var(--gpd-line); border-bottom: 1px solid var(--gpd-line); }

/* Forms - quote (multi-step) and contact */
.gpd-quote-page, .gpd-contact-page { padding: 64px 0 104px; }
.gpd-quote-container { max-width: 680px; }
.gpd-contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.gpd-contact-details { list-style: none; padding: 0; margin: 26px 0; }
.gpd-contact-details li { padding: 9px 0; border-bottom: 1px solid var(--gpd-line); font-size: .95rem; }

.gpd-form { background: var(--gpd-surface); border: 1px solid var(--gpd-line); border-radius: var(--gpd-radius-lg); padding: 36px; box-shadow: var(--gpd-shadow-soft); }
.gpd-form label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 18px; color: var(--gpd-ink); }
.gpd-form input, .gpd-form select, .gpd-form textarea {
	display: block; width: 100%; margin-top: 7px; padding: 13px 15px; font: inherit; font-weight: 450;
	border: 1.5px solid var(--gpd-line); border-radius: var(--gpd-radius); background: var(--gpd-paper); color: var(--gpd-ink);
	transition: border-color var(--gpd-transition), box-shadow var(--gpd-transition);
}
.gpd-form input:focus, .gpd-form select:focus, .gpd-form textarea:focus {
	outline: none; border-color: var(--gpd-signal); box-shadow: 0 0 0 4px rgba(91,79,233,.14);
}
.gpd-form input:invalid:not(:placeholder-shown) { border-color: var(--gpd-error); }
.gpd-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.gpd-form-progress { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.gpd-form-progress-bar { flex: 1; height: 7px; background: var(--gpd-line); border-radius: 999px; overflow: hidden; }
.gpd-form-progress-bar span { display: block; height: 100%; background: var(--gpd-gradient-brand); width: 16.6%; transition: width 300ms ease; }
.gpd-form-progress-label { font-family: var(--gpd-font-mono); font-size: .8rem; font-weight: 600; color: var(--gpd-ink-muted); white-space: nowrap; }

.gpd-form-step { display: none; animation: gpd-step-in 240ms ease; }
.gpd-form-step.is-active { display: block; }
@keyframes gpd-step-in { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: none; } }
.gpd-form-step h2 { font-size: 1.22rem; margin-bottom: 22px; }
@media (prefers-reduced-motion: reduce) { .gpd-form-step { animation: none; } }

.gpd-quote-review { border: 1px solid var(--gpd-line); border-radius: var(--gpd-radius); overflow: hidden; }
.gpd-review-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 15px; border-bottom: 1px solid var(--gpd-line); font-size: .88rem; }
.gpd-review-row:last-child { border-bottom: 0; }
.gpd-review-row span { color: var(--gpd-ink-muted); }
.gpd-review-row strong { text-align: right; font-weight: 700; }

.gpd-form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 32px; }
.gpd-form-nav .gpd-btn:only-child { margin-left: auto; }

.gpd-form-error { background: #FDECEC; border: 1.5px solid var(--gpd-error); color: #7A150F; padding: 14px 17px; border-radius: var(--gpd-radius); font-size: .9rem; font-weight: 500; margin-top: 16px; }
.gpd-form-success { background: #E4FBF1; border: 1.5px solid var(--gpd-circuit); color: #0A5C42; padding: 16px 17px; border-radius: var(--gpd-radius); font-size: .95rem; font-weight: 500; margin-top: 16px; }

/* Checkout & payment result pages */
.gpd-checkout-page { padding: 64px 0 104px; }
.gpd-checkout-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 32px; align-items: start; }
.gpd-checkout-summary { position: sticky; top: 100px; }
.gpd-checkout-line { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--gpd-line); font-size: .92rem; }
.gpd-checkout-line:last-of-type { border-bottom: 0; }
.gpd-checkout-note { font-size: .82rem; margin-top: 16px; color: var(--gpd-ink-muted); }
.gpd-checkout-currency { font-family: var(--gpd-font-mono); font-size: .75rem; font-weight: 600; color: var(--gpd-ink-muted); letter-spacing: .05em; margin-left: 4px; }
.gpd-payment-badges { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.gpd-card-badge { display: inline-flex; align-items: center; padding: 7px 13px; border: 1.5px solid var(--gpd-line); border-radius: 8px; font-family: var(--gpd-font-mono); font-size: .72rem; font-weight: 700; letter-spacing: .03em; color: var(--gpd-ink-muted); }
.gpd-checkout-secure { text-align: center; font-size: .8rem; color: var(--gpd-ink-muted); margin-top: 14px; font-weight: 500; }

.gpd-gateway-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.gpd-gateway-option { display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--gpd-line); border-radius: var(--gpd-radius); padding: 14px 17px; cursor: pointer; font-weight: 600; transition: border-color var(--gpd-transition), box-shadow var(--gpd-transition); }
.gpd-gateway-option:has(input:checked) { border-color: var(--gpd-signal); box-shadow: 0 0 0 4px rgba(91,79,233,.12); }
.gpd-gateway-option input { width: auto; margin: 0; }

.gpd-payment-result { text-align: center; padding: 108px 24px; max-width: 560px; margin: 0 auto; }
.gpd-result-icon { display: inline-flex; align-items: center; justify-content: center; width: 70px; height: 70px; border-radius: 50%; font-size: 1.9rem; font-weight: 700; margin-bottom: 24px; }
.gpd-result-success .gpd-result-icon { background: #E4FBF1; color: var(--gpd-circuit); }
.gpd-result-failed .gpd-result-icon { background: #FDECEC; color: var(--gpd-error); }
.gpd-result-cancelled .gpd-result-icon { background: var(--gpd-paper); color: var(--gpd-ink-muted); border: 1.5px solid var(--gpd-line); }
.gpd-result-ref { font-family: var(--gpd-font-mono); font-size: .85rem; color: var(--gpd-ink-muted); font-weight: 600; }
.gpd-result-next { text-align: left; background: var(--gpd-surface); border: 1px solid var(--gpd-line); border-radius: var(--gpd-radius); padding: 28px; margin: 32px 0; box-shadow: var(--gpd-shadow-soft); }
.gpd-result-next ol { margin: 0; padding-left: 20px; }
.gpd-result-next li { margin-bottom: 6px; font-size: .92rem; }
.gpd-result-actions { display: flex; gap: 16px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* Generic page / post content (page.php, single.php) */
.gpd-page { padding: 40px 0 96px; }
.gpd-page-title { font-size: clamp(2rem, 3.4vw, 2.9rem); margin-top: 10px; }
.gpd-content, .gpd-entry-content { max-width: 760px; margin: 0 auto; font-size: 1.02rem; }
.gpd-content > *:first-child, .gpd-entry-content > *:first-child { margin-top: 0; }
.gpd-entry-content h2 { font-size: 1.4rem; margin-top: 1.4em; }
.gpd-entry-content h3 { font-size: 1.15rem; margin-top: 1.2em; }
.gpd-entry-content a { color: var(--gpd-signal-dark); text-decoration: underline; text-decoration-color: rgba(91,79,233,.35); text-underline-offset: 2px; }
.gpd-entry-content a:hover { text-decoration-color: currentColor; }
.gpd-entry-content ul, .gpd-entry-content ol { padding-left: 22px; }
.gpd-entry-content img { border-radius: var(--gpd-radius); }
.gpd-meta { font-family: var(--gpd-font-mono); font-size: .82rem; color: var(--gpd-ink-muted); font-weight: 600; margin: 4px 0 24px; }

/* Content: blog, case studies, portfolio */
.gpd-blog-listing { padding: 26px 0 80px; }
.gpd-blog-grid { display: grid; grid-template-columns: 2.2fr 1fr; gap: 40px; align-items: start; }
.gpd-blog-posts { min-width: 0; }
.gpd-blog-card { display: grid; grid-template-columns: 200px 1fr; gap: 22px; margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--gpd-line); }
.gpd-blog-card-media { display: block; border-radius: var(--gpd-radius); overflow: hidden; background: var(--gpd-surface); aspect-ratio: 4/3; }
.gpd-blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms ease; }
.gpd-blog-card:hover .gpd-blog-card-media img { transform: scale(1.05); }
.gpd-blog-card-body { min-width: 0; }
.gpd-blog-meta { font-family: var(--gpd-font-mono); font-size: .78rem; font-weight: 600; margin: 0 0 8px; color: var(--gpd-ink-muted); }
.gpd-blog-card h2 { font-size: 1.26rem; margin-bottom: 8px; }
.gpd-blog-card h2 a { text-decoration: none; color: var(--gpd-ink); }
.gpd-blog-card h2 a:hover { color: var(--gpd-signal); }
.gpd-blog-sidebar { position: sticky; top: 100px; }
.gpd-blog-widget { margin-bottom: 34px; }
.gpd-pagination { margin-top: 26px; }
.gpd-single-post h1 { font-size: clamp(1.95rem, 3vw, 2.65rem); margin-top: 10px; }
.gpd-single-post-media { margin: 28px 0; border-radius: var(--gpd-radius-lg); overflow: hidden; box-shadow: var(--gpd-shadow-lift); }
.gpd-single-post-media img { width: 100%; height: auto; display: block; }
.gpd-post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 34px; }
.gpd-tag { font-family: var(--gpd-font-mono); font-size: .75rem; font-weight: 600; background: var(--gpd-paper); border: 1px solid var(--gpd-line); padding: 7px 14px; border-radius: 999px; text-decoration: none; color: var(--gpd-ink-muted); transition: border-color 150ms ease, color 150ms ease; }
.gpd-tag:hover { border-color: var(--gpd-signal); color: var(--gpd-signal); }

.gpd-case-study-hero { padding: 64px 0 34px; }
.gpd-case-study-media { margin-bottom: 46px; border-radius: var(--gpd-radius-lg); overflow: hidden; box-shadow: var(--gpd-shadow-lift); }
.gpd-case-study-media img { width: 100%; height: auto; display: block; }
.gpd-case-study-body { max-width: 760px; margin: 0 auto 64px; }
.gpd-case-study-section { padding: 32px 0; border-bottom: 1px solid var(--gpd-line); }
.gpd-case-study-section:last-child { border-bottom: 0; }
.gpd-case-study-section h2 { font-size: 1.22rem; }
.gpd-case-study-features { padding-left: 20px; }
.gpd-case-study-features li { margin-bottom: 7px; }

.gpd-portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gpd-portfolio-card { position: relative; padding: 0 0 22px; overflow: hidden; border: 1px solid var(--gpd-line); border-radius: var(--gpd-radius); background: var(--gpd-surface); box-shadow: var(--gpd-shadow-soft); transition: box-shadow 220ms ease, transform 220ms ease; }
.gpd-portfolio-card:hover { box-shadow: var(--gpd-shadow-lift); transform: translateY(-6px); }
.gpd-portfolio-media { aspect-ratio: 4/3; overflow: hidden; margin-bottom: 18px; background: var(--gpd-paper); }
.gpd-portfolio-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms ease; }
.gpd-portfolio-card:hover .gpd-portfolio-media img { transform: scale(1.06); }
.gpd-portfolio-card h3, .gpd-portfolio-card p, .gpd-portfolio-card .gpd-eyebrow { padding: 0 20px; }
.gpd-badge-muted { position: static; display: inline-block; background: var(--gpd-line); color: var(--gpd-ink-muted); margin: 0 20px 8px; }

/* Responsive */
@media (max-width: 1024px) {
	.gpd-cards, .gpd-pricing-grid { grid-template-columns: repeat(2, 1fr); }
	.gpd-stats-grid { grid-template-columns: repeat(2, 1fr); }
	.gpd-footer-grid { grid-template-columns: 1fr 1fr; }
	.gpd-process-steps { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
	.gpd-process-steps::before { display: none; }
	.gpd-blog-grid { grid-template-columns: 1fr; }
	.gpd-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.gpd-hero-inner { grid-template-columns: 1fr; padding-top: 8px; }
	.gpd-hero-visual { order: -1; }
	.gpd-primary-nav { position: fixed; inset: 0 0 0 30%; background: #fff; transform: translateX(100%); transition: transform var(--gpd-transition); z-index: 200; padding: 96px 24px 24px; box-shadow: -20px 0 50px rgba(14,18,32,.12); }
	.gpd-primary-nav.is-open { transform: translateX(0); }
	.gpd-menu { flex-direction: column; gap: 20px; }
	.gpd-menu-toggle { display: block; }
	.gpd-header-cta { display: none; }
	.gpd-service-hero-inner, .gpd-service-body-grid { grid-template-columns: 1fr; }
	.gpd-service-benefits { position: static; }
	.gpd-contact-grid, .gpd-checkout-grid { grid-template-columns: 1fr; }
	.gpd-form-row { grid-template-columns: 1fr; }
	.gpd-form { padding: 28px; }
	.gpd-checkout-summary { position: static; }
	.gpd-blog-card { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
	.gpd-cards, .gpd-pricing-grid, .gpd-footer-grid, .gpd-process-steps, .gpd-portfolio-grid { grid-template-columns: 1fr; }
	.gpd-services-grid, .gpd-pricing, .gpd-process, .gpd-faq, .gpd-cta { padding: 56px 0; }
}

/* Reactive floating icon backdrop - homepage only */
.gpd-home { position: relative; z-index: 0; overflow-x: hidden; }
.gpd-float-icons { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.gpd-float-icon { position: absolute; display: block; color: var(--gpd-signal); opacity: 0; filter: none; transform: translateY(0); transition: opacity 900ms ease; }
.gpd-float-icon.is-visible { opacity: .1; }
.gpd-float-icon:nth-child(3n) { color: var(--gpd-circuit); }
.gpd-float-icon:nth-child(4n) { color: var(--gpd-amber); }
@media (max-width: 900px) { .gpd-float-icons { display: none; } }
@media (prefers-reduced-motion: reduce) { .gpd-float-icon { transition: none; } }

/* Footer social icons - hidden entirely until the site owner adds URLs */
.gpd-social-list { display: flex; gap: 10px; list-style: none; margin: 18px 0 0; padding: 0; }
.gpd-social-link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 999px; background: var(--gpd-paper); border: 1px solid var(--gpd-line); color: var(--gpd-ink-muted); transition: color 160ms ease, border-color 160ms ease, transform 160ms ease, background 160ms ease; }
.gpd-social-link:hover { color: #fff; background: var(--gpd-gradient-brand); border-color: transparent; transform: translateY(-3px); }

/* Payment trust row - shown in the footer, listing only gateways that
   are actually enabled and configured (see gpd_payment_trust_row()) */
.gpd-trust-row { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; padding: 18px 0; margin-top: 6px; border-top: 1px solid var(--gpd-line); color: var(--gpd-ink-muted); font-size: .85rem; }
.gpd-trust-lock { display: inline-flex; color: var(--gpd-signal); }
.gpd-trust-badge { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 999px; background: var(--gpd-paper); border: 1px solid var(--gpd-line); font-weight: 600; font-size: .78rem; color: var(--gpd-ink); }

/* Extra "reactive" micro-interactions */
.gpd-service-card, .gpd-portfolio-card, .gpd-pricing-card, .gpd-card { will-change: transform; }
.gpd-hero-copy { transition: transform 200ms ease; }

.gpd-menu-item { position: relative; }
.gpd-menu-link { display: inline-flex; align-items: center; gap: 4px; }
.gpd-caret { font-size: .7rem; transition: transform 160ms ease; }
.gpd-has-dropdown:hover .gpd-caret,
.gpd-has-dropdown:focus-within .gpd-caret { transform: rotate(180deg); }

.gpd-dropdown-panel {
	position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
	background: var(--gpd-surface); border: 1px solid var(--gpd-line); border-radius: var(--gpd-radius);
	padding: 10px; min-width: 240px; display: flex; flex-direction: column; gap: 2px;
	box-shadow: var(--gpd-shadow-lift);
	opacity: 0; visibility: hidden; pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
	z-index: 50;
}
.gpd-has-dropdown:hover .gpd-dropdown-panel,
.gpd-has-dropdown:focus-within .gpd-dropdown-panel {
	opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(4px);
}
.gpd-dropdown-link { padding: 10px 12px; border-radius: 8px; font-size: .88rem; font-weight: 500; color: var(--gpd-ink); text-decoration: none; transition: background 150ms ease, color 150ms ease; }
.gpd-dropdown-link:hover { background: var(--gpd-paper); color: var(--gpd-signal); }
.gpd-dropdown-viewall { margin-top: 4px; padding-top: 12px; border-top: 1px solid var(--gpd-line); color: var(--gpd-signal); }

@media (max-width: 768px) {
	.gpd-dropdown-panel {
		position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
		box-shadow: none; border: 0; border-left: 2px solid var(--gpd-line); border-radius: 0;
		margin: 4px 0 4px 12px; padding: 4px 0 4px 12px; min-width: 0;
	}
	.gpd-caret { display: none; }
}

/* Pricing card feature checklist - reuses the checkmark pattern from
   .gpd-service-benefits so packages and service pages feel consistent. */
.gpd-pricing-card .gpd-entry-content { flex: 1 1 auto; max-width: none; margin: 0; font-size: .94rem; }
.gpd-pricing-card .gpd-entry-content p { margin: 0 0 16px; font-size: .92rem; }
.gpd-pricing-card .gpd-entry-content ul { list-style: none; padding: 0; margin: 0 0 4px; }
.gpd-pricing-card .gpd-entry-content li { position: relative; padding: 9px 0 9px 26px; border-bottom: 1px solid var(--gpd-line); font-weight: 500; font-size: .9rem; }
.gpd-pricing-card .gpd-entry-content li:last-child { border-bottom: 0; }
.gpd-pricing-card .gpd-entry-content li::before { content: "✓"; position: absolute; left: 0; color: var(--gpd-circuit); font-weight: 800; }

/* Currency switcher - a touch more breathing room and a centred, calmer
   layout so it doesn't look cramped next to the section heading. */
.gpd-section-head.gpd-reveal:has(.gpd-currency-switch) { text-align: center; }
.gpd-currency-switch { margin-left: auto; margin-right: auto; }
.gpd-currency-btn { padding: 9px 20px; }

@media (max-width: 480px) {
	.gpd-currency-switch { width: 100%; justify-content: center; flex-wrap: wrap; }
}

/* Service card icon badge */
.gpd-service-icon-badge {
	display: inline-flex; align-items: center; justify-content: center;
	width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
	background: linear-gradient(135deg, rgba(91,79,233,.1), rgba(91,79,233,.04));
	color: var(--gpd-signal); transition: transform 220ms ease, background 220ms ease;
}
.gpd-service-card:hover .gpd-service-icon-badge { transform: scale(1.08) rotate(-4deg); background: linear-gradient(135deg, rgba(91,79,233,.16), rgba(91,79,233,.06)); }
@media (prefers-reduced-motion: reduce) {
	.gpd-service-card:hover .gpd-service-icon-badge { transform: none; }
}
