/*
Theme Name: OnboardCloud Website v1.5
Theme URI: https://pressmegpt.com
Author: PressMeGPT
Author URI: https://pressmegpt.com
Description: Block theme created with PressMeGPT.com - AI WordPress Theme Generator.
Version: 1.5.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: onboardcloud-website
Tags: full-site-editing, block-patterns, custom-colors, custom-logo, custom-menu

Block theme created with PressMeGPT.com - AI WordPress Theme Generator.
*/

/* ============================================
   Theme Defaults - Header/Footer/Button
   These styles ensure the design matches the preview.
   Users can override via Site Editor.
   ============================================ */

:root {
  --pm-header-bg: #ffffff;
  --pm-header-text: #0f172a;
  --pm-footer-bg: #0f172a;
  --pm-footer-text: #f1f5f9;
  --pm-header-padding: 0;
  --pm-footer-padding: 80px 0 30px;
}

/* Header styling - frontend AND Site Editor */
header.wp-block-template-part,
.wp-block-template-part[data-area="header"] header.wp-block-group,
.editor-styles-wrapper header.wp-block-group,
.edit-site-visual-editor [data-type="core/template-part"] header.wp-block-group {
  background-color: var(--pm-header-bg);
  color: var(--pm-header-text);
  padding: var(--pm-header-padding);
}

/* Header content centering — match body content width (RULE 11) */
header.wp-block-template-part > .wp-block-group,
header.wp-block-template-part > .wp-block-group > .wp-block-group,
header.wp-block-group > .wp-block-group {
  max-width: var(--wp--style--global--wide-size, 1200px);
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
  box-sizing: border-box;
}

header.wp-block-template-part a,
.wp-block-template-part[data-area="header"] a,
.editor-styles-wrapper header.wp-block-group a,
.edit-site-visual-editor [data-type="core/template-part"] header.wp-block-group a {
  color: var(--pm-header-text);
}

/* Header navigation links */
header.wp-block-template-part .wp-block-navigation a,
header.wp-block-template-part .wp-block-navigation-item__content,
.editor-styles-wrapper header.wp-block-group .wp-block-navigation a,
.editor-styles-wrapper header.wp-block-group .wp-block-navigation-item__content {
  color: var(--pm-header-text);
}

/* Footer styling - frontend AND Site Editor */
footer.wp-block-template-part,
.wp-block-template-part[data-area="footer"] footer.wp-block-group,
.editor-styles-wrapper footer.wp-block-group,
.edit-site-visual-editor [data-type="core/template-part"] footer.wp-block-group {
  background-color: var(--pm-footer-bg);
  color: var(--pm-footer-text);
  padding: var(--pm-footer-padding);
}

/* WordPress adds padding via has-global-padding on constrained/flow layout groups.
   The design's .fse-footer padding from masterCss is already applied above via --pm-footer-padding.
   Override WP's global-padding injection so the footer uses only the design's values. */
footer.wp-block-group.has-global-padding,
.wp-block-template-part footer.wp-block-group.has-global-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

footer.wp-block-template-part a,
.wp-block-template-part[data-area="footer"] a,
.editor-styles-wrapper footer.wp-block-group a,
.edit-site-visual-editor [data-type="core/template-part"] footer.wp-block-group a {
  color: var(--pm-footer-text);
}

/* Footer social links */
footer.wp-block-template-part .wp-block-social-links a,
.editor-styles-wrapper footer.wp-block-group .wp-block-social-links a {
  color: var(--pm-footer-text);
}

/* Footer content centering — match body content width (RULE 12) */
footer.wp-block-template-part > .wp-block-group,
footer.wp-block-template-part > .wp-block-group > .wp-block-group,
footer.wp-block-group > .wp-block-group {
  max-width: var(--wp--style--global--wide-size, 1200px);
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
  box-sizing: border-box;
}

/* Footer columns — even spacing and clean layout */
footer .wp-block-columns,
footer.wp-block-group .wp-block-columns {
  gap: 2.5rem !important;
  margin-bottom: 2rem;
}

footer .wp-block-column,
footer.wp-block-group .wp-block-column {
  flex: 1 1 0% !important;
  min-width: 0;
}

/* Footer copyright centering */
footer .fse-attribution,
footer .fse-copyright,
footer .has-text-align-center {
  text-align: center !important;
  width: 100%;
}

/* Footer responsive — stack columns on tablet/mobile */
@media (max-width: 781px) {
  footer .wp-block-columns,
  footer.wp-block-group .wp-block-columns {
    flex-direction: column !important;
    gap: 2rem !important;
  }
  
  footer .wp-block-column,
  footer.wp-block-group .wp-block-column {
    flex-basis: 100% !important;
    text-align: center;
  }
  
  footer .wp-block-column .wp-block-heading {
    text-align: center;
  }
  
  footer .wp-block-navigation,
  footer .wp-block-social-links {
    justify-content: center;
  }
}

/* Sticky header - ensures header stays at top on scroll */
header.wp-block-template-part,
header.wp-block-group {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Remove gap between header, main content, and footer */
.wp-site-blocks > header,
.wp-site-blocks > footer.wp-block-template-part,
.wp-site-blocks > main,
.wp-site-blocks > header + *,
.wp-site-blocks > * + footer.wp-block-template-part {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

/* Header/Footer: zero margin, padding only */
header.wp-block-template-part,
.wp-block-template-part[data-area="header"],
header.wp-block-group {
  margin: 0 !important;
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

/* Header inner groups: zero vertical margin but preserve horizontal auto centering (RULE 11) */
.wp-block-template-part[data-area="header"] > *,
header.wp-block-group .wp-block-group {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

footer.wp-block-template-part,
.wp-block-template-part[data-area="footer"],
footer.wp-block-group {
  margin: 0 !important;
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

/* Footer inner groups: zero vertical margin but preserve horizontal auto centering (RULE 12) */
.wp-block-template-part[data-area="footer"] > *,
footer.wp-block-group .wp-block-group {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

main.wp-block-group.is-layout-flow {
  margin-top: 0;
  margin-bottom: 0;
}

/* Remove default blockGap between top-level sections — scoped to section-level elements only.
   Do NOT target .wp-block-group generically or this zeros out hero internal element margins. */
main.wp-block-group > section,
main.wp-block-group > .fse-section,
main.wp-block-group > .wp-block-group.fse-section,
main.wp-block-group > .wp-block-cover,
.wp-block-group.is-layout-flow > section,
.wp-block-group.is-layout-flow > .fse-section {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

/* Specifically target FSE sections and cover blocks */
.fse-section,
section.wp-block-group,
.wp-block-group.fse-section,
.wp-block-cover {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

/* ============================================
   HERO OVERLAY FULL COVERAGE FIX
   Ensures hero overlays cover the entire image on all screen widths
   ============================================ */
.wp-block-cover,
.fse-hero,
.fse-hero-split,
.fse-hero-creative {
  position: relative;
  width: 100%;
}

/* Overlay must cover full width/height regardless of screen size */
.wp-block-cover__background,
.wp-block-cover span[aria-hidden="true"],
.fse-hero-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
}

/* Ensure cover image also spans full width on wide screens */
.wp-block-cover__image-background,
.wp-block-cover img,
.fse-hero img.fse-hero-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  min-width: 100% !important;
}

/* Fix for wide screens - ensure cover block content stays constrained while bg stretches */
.wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ============================================
   GRID ROW LIMIT FIX
   Ensures grids never exceed 3-4 columns on desktop
   ============================================ */
.wp-block-columns,
.fse-columns,
.fse-services-grid,
.fse-features-grid,
.fse-team-grid {
  max-width: 1200px;
  margin-left: auto !important;
  margin-right: auto !important;
  flex-wrap: wrap !important;
}

/* Force max 3 columns for service/feature grids */
.fse-services-grid,
.fse-features-grid,
.fse-team-grid,
.wp-block-columns.has-6-columns,
.wp-block-columns.has-5-columns {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
  .fse-services-grid,
  .fse-features-grid,
  .fse-team-grid,
  .wp-block-columns.has-6-columns,
  .wp-block-columns.has-5-columns,
  .wp-block-columns.has-4-columns {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile: 1 column */
@media (max-width: 576px) {
  .fse-services-grid,
  .fse-features-grid,
  .fse-team-grid,
  .wp-block-columns,
  .fse-columns {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
  }
}

/* Button reset - prevent double-button from wrapper styling */
/* Reset BOTH .wp-block-buttons (outer container) AND .wp-block-button (inner wrapper) */
/* Use maximum specificity to override WordPress core styles on live site */

/* Reset outer buttons container - should never have button styling */
.wp-block-buttons,
body .wp-block-buttons,
.wp-site-blocks .wp-block-buttons,
main .wp-block-buttons,
section .wp-block-buttons,
.fse-section .wp-block-buttons,
div.wp-block-buttons,
div.wp-block-buttons[class*="fse-"],
div.wp-block-buttons[class*="btn"],
div.wp-block-buttons[class*="cta"] {
  background: none !important;
  background-color: transparent !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Reset inner button wrapper - should never have button styling */
.wp-block-button,
body .wp-block-button,
.wp-site-blocks .wp-block-button,
main .wp-block-button,
section .wp-block-button,
.fse-section .wp-block-button {
  background: none !important;
  background-color: transparent !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
}

/* Aggressively prevent button-in-button - target any wrapper div with button classes */
body div.wp-block-button,
body div.wp-block-buttons,
.wp-site-blocks div.wp-block-button,
.wp-site-blocks div.wp-block-buttons,
main div.wp-block-button,
main div.wp-block-buttons,
.fse-section div.wp-block-button,
.fse-section div.wp-block-buttons,
section div.wp-block-button,
section div.wp-block-buttons,
div.wp-block-button.fse-button,
div.wp-block-button.fse-button-primary,
div.wp-block-button.fse-button-secondary,
div.wp-block-button[class*="fse-button"],
div.wp-block-button[class*="btn"],
div.wp-block-button[class*="cta"],
div.wp-block-buttons[class*="fse-"],
div.wp-block-buttons[class*="btn"],
div.wp-block-buttons[class*="cta"] {
  background: none !important;
  background-color: transparent !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
}

/* Base button styling - NO !important on bg/color so Gutenberg color picker classes can override */
/* Gutenberg color picker adds CSS classes (e.g. has-primary-background-color), not inline styles */
.wp-block-button__link,
.wp-element-button,
a.wp-block-button__link,
a.wp-element-button {
  background-color: #06b6d4;
  color: #ffffff;
  padding: 12px 24px !important;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none !important;
  display: inline-block;
  border: none !important;
  outline: none !important;
  transition: filter 0.2s ease;
}

/* Ensure no inherited border-radius from parent containers */
.wp-block-buttons .wp-block-button__link,
.wp-block-buttons .wp-element-button,
.fse-section .wp-block-button__link,
.fse-hero .wp-block-button__link,
section .wp-block-button__link {
  border-radius: 8px;
}

/* Button hover states - only darken/lighten via filter, no color overrides */
.wp-block-button__link:hover,
.wp-block-button__link:focus,
.wp-element-button:hover,
.wp-element-button:focus {
  filter: brightness(0.85);
  text-decoration: none !important;
  outline: none !important;
  border: none !important;
  opacity: 1;
}

/* Global underline prevention for buttons */
.wp-block-button a,
.wp-block-button__link,
.wp-element-button,
.wp-block-button a:hover,
.wp-block-button__link:hover,
.wp-element-button:hover {
  text-decoration: none !important;
}

/* Prevent link hover styles from affecting buttons - NO color override */
.wp-block-button a:hover,
.wp-block-button a:focus,
.wp-block-button a:active,
.wp-block-button a:visited,
div.wp-block-button a.wp-block-button__link:hover,
div.wp-block-button a.wp-block-button__link:focus,
div.wp-block-button a.wp-block-button__link:active,
div.wp-block-button a.wp-element-button:hover,
div.wp-block-button a.wp-element-button:focus,
div.wp-block-button a.wp-element-button:active {
  text-decoration: none !important;
  filter: brightness(0.85);
}

/* Outline buttons hover - brightness only, no color change */
.wp-block-button.is-style-outline a:hover,
.wp-block-button.is-style-outline a:focus,
.wp-block-button.is-style-outline a:active {
  text-decoration: none !important;
  filter: brightness(0.85);
}

/* FSE button classes for wp:html preserved sections (creative heroes, etc.) */
a.fse-button,
.fse-button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none !important;
  border: none;
  outline: none;
  transition: filter 0.2s ease;
  cursor: pointer;
}

a.fse-button-primary,
.fse-button-primary {
  background-color: #06b6d4 !important;
  color: #ffffff !important;
}

a.fse-button-secondary,
.fse-button-secondary {
  background-color: transparent !important;
  color: #ffffff !important;
}

a.fse-button-light,
.fse-button-light {
  background-color: rgba(255,255,255,0.9) !important;
  color: #06b6d4 !important;
}

/* Secondary/Light button bridge: wrapper class -> inner link */
.wp-block-button.fse-button-secondary .wp-block-button__link,
.wp-block-button.fse-button-secondary .wp-element-button {
  background-color: transparent !important;
  color: #ffffff !important;
}

.wp-block-button.fse-button-light .wp-block-button__link,
.wp-block-button.fse-button-light .wp-element-button {
  background-color: rgba(255,255,255,0.9) !important;
  color: #06b6d4 !important;
}

/* Descendant selectors for variant wrappers - class is on wrapper div, styles reach inner <a> */
.fse-button-secondary .wp-block-button__link,
.fse-button-secondary .wp-element-button,
.fse-button-secondary > a,
div.wp-block-button.fse-button-secondary .wp-block-button__link {
  background-color: transparent !important;
  color: #ffffff !important;
  border: none !important;
}

.fse-button-primary .wp-block-button__link,
.fse-button-primary .wp-element-button,
div.wp-block-button.fse-button-primary .wp-block-button__link {
  background-color: #06b6d4 !important;
  color: #ffffff !important;
  border: none !important;
}

.fse-button-light .wp-block-button__link,
.fse-button-light .wp-element-button,
div.wp-block-button.fse-button-light .wp-block-button__link {
  background-color: #06b6d4 !important;
  color: #ffffff !important;
  border: none !important;
}

a.fse-button:hover,
.fse-button:hover,
a.fse-button:focus,
.fse-button:focus,
a.fse-button:active,
.fse-button:active {
  filter: brightness(0.85);
  text-decoration: none !important;
  opacity: 1;
}

/* Lock fse-button text colors on hover - prevent link styles bleeding in */
a.fse-button-primary:hover,
.fse-button-primary:hover {
  color: #ffffff !important;
}

a.fse-button-secondary:hover,
.fse-button-secondary:hover {
  color: #ffffff !important;
}

a.fse-button-light:hover,
.fse-button-light:hover {
  color: #ffffff !important;
}

/* Footer logo and image sizing - constrain width, force auto height for aspect ratio */
footer .wp-block-site-logo img,
footer.wp-block-group img.fse-logo,
footer .fse-logo,
.fse-footer img:not(.fse-hero-image),
.fse-footer .wp-block-image img {
  max-width: 200px;
  height: auto !important;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  object-fit: contain;
}

/* Footer logo wrapper - no max-width here, let the img rule handle sizing */
.fse-footer .wp-block-image,
.fse-footer .wp-block-site-logo,
footer .wp-block-site-logo {
  display: block;
  margin-bottom: 1rem;
  overflow: visible;
}

/* Navigation menu spacing */
.wp-block-navigation__container {
  gap: 1.5rem;
}

/* Ensure columns have proper gaps */
.wp-block-columns {
  gap: 2rem;
}

.wp-block-column > * + * {
  margin-top: 1rem;
}

/* Center buttons inside cover blocks */
.wp-block-cover .wp-block-buttons {
  justify-content: center;
}

/* ============================================
   Header CTA Buttons
   ============================================ */
header .wp-block-buttons.header-cta-buttons {
  margin-left: 10px;
  margin-right: 10px;
  gap: 0.75rem;
}

header .wp-block-buttons .wp-block-button__link {
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px 20px;
  font-weight: 600;
  white-space: nowrap;
}

/* Header outline rules removed - all header CTAs use solid backgrounds */

/* Hide header CTA buttons on mobile - hamburger menu takes over */
@media (max-width: 768px) {
  header .wp-block-buttons.header-cta-buttons {
    display: none;
  }
}

/* ============================================
   Navigation CTA Button Classes
   Add these classes to menu items in Site Editor to style as buttons
   ============================================ */
.wp-block-navigation-item.nav-button-primary .wp-block-navigation-item__content {
  background-color: #06b6d4;
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: filter 0.2s ease;
}

.wp-block-navigation-item.nav-button-primary .wp-block-navigation-item__content:hover {
  filter: brightness(0.85);
}

.wp-block-navigation-item.nav-button-secondary .wp-block-navigation-item__content {
  background-color: transparent;
  color: #06b6d4 !important;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid #06b6d4;
  font-weight: 600;
  transition: all 0.2s ease;
}

.wp-block-navigation-item.nav-button-secondary .wp-block-navigation-item__content:hover {
  background-color: #06b6d4;
  color: #ffffff !important;
}

/* ============================================
   Decorative Elements Fallback
   Ensure fse-hero-graphic and other animated elements display
   ============================================ */
.fse-hero-graphic,
.hero-graphic,
[class*="hero-graphic"] {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse-animation 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes pulse-animation {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* ============================================
   Non-Homepage Page Styles (Blog, Privacy, etc.)
   Ensures proper padding, typography, and readability
   on pages using default page/single/archive templates.
   ============================================ */

/* RULE: Never apply padding to bare main.wp-block-group — it breaks the homepage.
   Only scope to .is-layout-constrained which is used by page/single/archive templates,
   NOT the front-page template (which uses layout type "default"). */
main.wp-block-group.is-layout-constrained {
  padding: 40px 20px 60px;
}

/* Ensure homepage main has zero padding */
main.wp-block-group.is-layout-flow,
main.wp-block-group:not(.is-layout-constrained) {
  padding: 0 !important;
}

main.wp-block-group.is-layout-constrained > * {
  max-width: var(--wp--style--global--content-size, 1200px);
  margin-left: auto !important;
  margin-right: auto !important;
}

main.wp-block-group.is-layout-constrained > * + * {
  margin-top: 1.5rem !important;
  }


main.wp-block-group .wp-block-post-date,
main.wp-block-group .wp-block-post-terms {
  font-size: 0.875rem;
  opacity: 0.65;
  margin-bottom: 1rem;
}

main.wp-block-group p {
  line-height: 1.75;
}

main.wp-block-group h2.wp-block-heading {
  margin-top: 2.5rem;
}

main.wp-block-group h3.wp-block-heading {
  margin-top: 2rem;
}

main.wp-block-group ul,
main.wp-block-group ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

main.wp-block-group li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

main.wp-block-group .wp-block-post-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.wp-block-query .wp-block-group {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.wp-block-query .wp-block-group:last-child {
  border-bottom: none;
}

.wp-block-query .wp-block-post-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.wp-block-query .wp-block-post-title a {
  text-decoration: none;
}

.wp-block-query .wp-block-post-excerpt {
  line-height: 1.6;
}

.wp-block-query-pagination {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  gap: 0.75rem;
}

.wp-block-query-pagination a {
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
}

.wp-block-comments {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.wp-block-search {
  margin-top: 2rem;
}

/* ============================================
   Block editor: force animated elements visible
   (animations.js runs on frontend only, not in editor iframe)
   ============================================ */
.editor-styles-wrapper .animate-on-scroll,
.editor-styles-wrapper .animate-slide-left,
.editor-styles-wrapper .animate-slide-right,
.editor-styles-wrapper .animate-scale {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ============================================
   Custom styles from Theme Designer
   ============================================ */
:root {
 --td-color-primary: #06b6d4;
 --td-color-secondary: #0f172a;
 --td-color-background: #ffffff;
 --td-color-text: #334155;
 --td-color-heading: #0f172a;
 --td-color-link: #06b6d4;
 --td-color-btn-primary-bg: #06b6d4;
 --td-color-btn-primary-text: #ffffff;
 --td-color-btn-secondary-bg: transparent;
 --td-color-btn-secondary-text: #ffffff;
 --td-color-header-bg: #ffffff;
 --td-color-header-text: #0f172a;
 --td-color-footer-bg: #0f172a;
 --td-color-footer-text: #f1f5f9;
 --td-font-heading: 'Space Grotesk', sans-serif;
 --td-font-body: 'DM Sans', sans-serif;
}
* { min-width: 0; box-sizing: border-box; }
body { font-family: var(--td-font-body); color: var(--td-color-text); line-height: 1.6; background-color: var(--td-color-background); margin: 0; }
h1, h2, h3, h4 { font-family: var(--td-font-heading); color: var(--td-color-heading); line-height: 1.1; margin: 0 0 1rem; }
.fse-group { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; }
.fse-section { padding: 100px 0; overflow: hidden; }
.fse-header { padding: 0; background: var(--td-color-header-bg); position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 0 rgba(0,0,0,0.05); }
.fse-top-bar { background: #f8fafc; border-bottom: 1px solid #f1f5f9; padding: 8px 0; color: #64748b; font-size: 0.8rem; font-weight: 500; }
.fse-top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.fse-top-left a { color: inherit; text-decoration: none; transition: color 0.3s; }
.fse-top-left a:hover { color: var(--td-color-primary); }
.fse-header-content { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; }
.fse-header-left { display: flex; align-items: center; gap: 12px; }
.fse-logo { height: 44px; width: auto; }
.fse-site-title { font-weight: 700; font-size: 1.25rem; font-family: var(--td-font-heading); letter-spacing: -0.02em; }
.fse-header-right { display: flex; align-items: center; gap: 40px; }
.fse-nav-menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.fse-nav-menu a { text-decoration: none; color: var(--td-color-header-text); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
.fse-nav-menu a:hover { color: var(--td-color-primary); }
.fse-toggle-button { display: none; background: none; border: none; font-size: 24px; color: var(--td-color-heading); cursor: pointer; padding: 5px; }
.fse-hero { background: var(--td-color-secondary); color: #fff; padding: 120px 0; position: relative; }
.fse-hero::before {
 content: ''; position: absolute; inset: 0;
 background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(/wp-content/uploads/009-image8.jpg)' opacity='0.04'/%3E%3C/svg%3E");
}
.fse-hero-container { display: grid; grid-template-columns: 55fr 45fr; gap: 60px; align-items: center; }
.fse-hero-content h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: #fff; margin-bottom: 1.5rem; letter-spacing: -0.04em; }
.fse-label { display: block; font-family: var(--td-font-heading); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--td-color-primary); margin-bottom: 1.25rem; font-weight: 700; }
.accent-text { color: var(--td-color-primary); }
.fse-hero-content p { font-size: 1.25rem; opacity: 0.9; margin-bottom: 0.75rem; max-width: 540px; }
.fse-hero-support { font-size: 1.15rem !important; opacity: 0.75 !important; margin-bottom: 2.5rem !important; }
.fse-hero-buttons { display: flex; gap: 16px; }
.fse-hero-visual { position: relative; display: flex; justify-content: center; align-items: center; height: 100%; min-height: 450px; }
.fse-lifecycle-wrapper {
 position: relative; width: 100%; max-width: 440px; aspect-ratio: 1; padding: 20px;
 background-image: radial-gradient(circle, rgba(6, 182, 212, 0.05) 1px, transparent 1px);
 background-size: 30px 30px; border-radius: 40px; border: 1px solid rgba(255,255,255,0.05);
}
.fse-lifecycle-grid {
 display: grid; grid-template-columns: 1fr 20px 1fr; grid-template-rows: 1fr 20px 1fr; gap: 0;
 width: 100%; height: 100%; align-items: center; justify-items: center;
}
.fse-node {
 background: rgba(15, 23, 42, 0.6); border: 1px solid rgba(255,255,255,0.15); width: 140px; height: 140px;
 border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center;
 gap: 12px; backdrop-filter: blur(10px); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 position: relative; z-index: 2; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.fse-node:hover { border-color: var(--td-color-primary); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(6, 182, 212, 0.15); }
.fse-node i { font-size: 2rem; color: var(--td-color-primary); }
.fse-node span { font-family: var(--td-font-heading); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; }
.fse-node::before {
 content: attr(data-step); position: absolute; top: -10px; left: -10px; width: 28px; height: 28px;
 background: var(--td-color-primary); color: #000; border-radius: 50%; display: flex; align-items: center;
 justify-content: center; font-size: 0.75rem; font-weight: 800; font-family: var(--td-font-heading);
}
.fse-connector { position: relative; background: rgba(6, 182, 212, 0.2); }
.fse-connector.horizontal { width: 100%; height: 2px; }
.fse-connector.vertical { height: 100%; width: 2px; }
.fse-connector::after {
 content: ''; position: absolute; background: var(--td-color-primary);
}
.fse-connector.horizontal::after { width: 50%; height: 2px; top: 0; left: 25%; box-shadow: 0 0 10px var(--td-color-primary); }
.fse-connector.vertical::after { height: 50%; width: 2px; left: 0; top: 25%; box-shadow: 0 0 10px var(--td-color-primary); }

.fse-button-primary { background: var(--td-color-btn-primary-bg); color: #fff; }
.fse-button-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }

.fse-process { background: #f8fafc; padding: 80px 0; border-bottom: 1px solid #e2e8f0; }
.fse-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.fse-process-card { background: #fff; border-radius: 16px; padding: 32px 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); transition: all 0.3s ease; border: 1px solid #edf2f7; display: flex; flex-direction: column; height: 100%; }
.fse-process-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
.fse-process-icon { font-size: 1.75rem; color: var(--td-color-primary); margin-bottom: 20px; display: block; }
.fse-process-card h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 700; color: var(--td-color-heading); }
.fse-process-card p { font-size: 0.95rem; margin: 0; color: var(--td-color-text); line-height: 1.5; }
.fse-section-header { text-align: center; margin-bottom: 60px; }
.fse-section-header h2 { font-size: 2.5rem; }
.fse-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.fse-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #e2e8f0; transition: all 0.3s; display: flex; flex-direction: column; }
.fse-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.fse-card img { height: 180px; width: 100%; object-fit: cover; }
.fse-card h4 { padding: 24px 20px 8px; font-size: 1.25rem; }
.fse-card p { padding: 0 20px 24px; color: var(--td-color-text); font-size: 0.95rem; margin: 0; flex-grow: 1; }
.fse-asymmetric-columns { display: grid; grid-template-columns: 55fr 45fr; gap: 80px; align-items: center; }
.fse-asymmetric-columns-reverse { display: grid; grid-template-columns: 45fr 55fr; gap: 80px; align-items: center; }
.fse-text-col h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.fse-feature-list { list-style: none; padding: 0; margin: 0 0 2.5rem; }
.fse-feature-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; font-weight: 500; }
.fse-feature-list i { color: var(--td-color-primary); }
.fse-visual-placeholder { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.fse-highlight-alt { background: #fff; }
.fse-highlight { background: #f8fafc; }
.fse-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.fse-value-item i { font-size: 2rem; color: var(--td-color-primary); margin-bottom: 1.5rem; display: block; }
.fse-value-item h4 { font-size: 1.25rem; }
.fse-cta-banner { background: #f8fafc; color: var(--td-color-text); text-align: center; padding: 140px 0; border-top: 1px solid #e2e8f0; }
.fse-cta-content { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.fse-cta-content h2 { color: var(--td-color-heading); font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.fse-cta-content .fse-paragraph { font-size: 1.25rem; color: var(--td-color-text); margin-bottom: 2.5rem; line-height: 1.5; }
.fse-cta-email { display: block; margin-top: 2rem; font-size: 0.95rem; color: var(--td-color-text); opacity: 0.6; text-decoration: none; transition: opacity 0.3s; }
.fse-cta-email:hover { opacity: 1; text-decoration: underline; }
.fse-footer { background: var(--td-color-footer-bg); color: var(--td-color-footer-text); padding: 80px 0 30px; }
.fse-footer-columns { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.fse-footer h4 { color: #fff; margin-bottom: 24px; font-size: 1.1rem; }
.fse-footer-menu { list-style: none; padding: 0; }
.fse-footer-menu li { margin-bottom: 12px; }
.fse-footer-menu a { color: var(--td-color-footer-text); text-decoration: none; opacity: 0.7; transition: 0.3s; }
.fse-footer-menu a:hover { opacity: 1; color: var(--td-color-primary); }
.fse-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; }
.fse-copyright { font-size: 0.9rem; opacity: 0.5; }

.reveal { opacity: 1; transform: translate(0) scale(1); }
@media (max-width: 992px) {
 .fse-header-right { gap: 20px; }
 .fse-nav-menu { gap: 15px; }
 .fse-hero-container, .fse-asymmetric-columns, .fse-asymmetric-columns-reverse { grid-template-columns: 1fr; gap: 40px; }
 .fse-services-grid, .fse-process-grid, .fse-values-grid { grid-template-columns: repeat(2, 1fr); }
 .fse-footer-columns { grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; }
 .fse-hero-visual { order: -1; min-height: 450px; }
}
@media (max-width: 768px) {
 .fse-lifecycle-wrapper { max-width: 340px; }
 .fse-node { width: 110px; height: 110px; }
 .fse-node i { font-size: 1.5rem; }
 .fse-node span { font-size: 0.75rem; }
 .fse-top-bar { display: block; padding: 6px 0; font-size: 0.75rem; }
 .fse-top-bar-content { justify-content: center; }
 .fse-top-right { display: none; }
 .fse-header-content { padding: 12px 20px; }
 .fse-header-left { gap: 8px; }
 .fse-logo { height: 32px; }
 .fse-site-title { font-size: 1.1rem; }
 .fse-header-right { gap: 12px; }
 .fse-main-nav { display: none; }
 .fse-main-nav.active { 
 display: block; 
 position: fixed; 
 top: 94px; 
 left: 0; 
 right: 0; 
 background: #fff; 
 padding: 30px 24px; 
 box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
 border-top: 1px solid #f1f5f9;
 }
 .fse-nav-menu { flex-direction: column; gap: 20px; text-align: left; }
 .fse-nav-menu a { font-size: 1.1rem; }
 .fse-header-actions { display: block; }
 .fse-header-actions 
 .fse-toggle-button { display: block; margin-left: 8px; }
 .fse-services-grid, .fse-process-grid, .fse-values-grid { grid-template-columns: 1fr; }
 .fse-section { padding: 60px 0; }
 .fse-footer-columns { grid-template-columns: 1fr; gap: 40px; }
 .fse-hero-content h1 { font-size: 2.5rem; }
 .fse-hero-buttons { flex-direction: column; }
 .fse-cta-banner { padding: 80px 0; }
}



/* Spacing extracted from original design */
.wp-block-group h1.wp-block-heading { margin-bottom: 1.5rem; }
.wp-block-group h2.wp-block-heading { margin-bottom: 1.5rem; }
.wp-block-group h3.wp-block-heading { margin-bottom: 12px; }
.wp-block-group h4.wp-block-heading { margin-bottom: 24px; }
.wp-block-group p { margin-bottom: 2.5rem; }


/* ============================================
   Per-Page Scoped Styles (PressMeGPT)
   ============================================ */
/* ===== Page: about ===== */
:root {
 --td-color-primary: #06b6d4;
 --td-color-secondary: #0f172a;
 --td-color-background: #ffffff;
 --td-color-text: #334155;
 --td-color-heading: #0f172a;
 --td-color-link: #06b6d4;
 --td-color-btn-primary-bg: #06b6d4;
 --td-color-btn-primary-text: #ffffff;
 --td-color-btn-secondary-bg: transparent;
 --td-color-btn-secondary-text: #ffffff;
 --td-color-header-bg: #ffffff;
 --td-color-header-text: #0f172a;
 --td-color-footer-bg: #0f172a;
 --td-color-footer-text: #f1f5f9;
 --td-font-heading: 'Space Grotesk', sans-serif;
 --td-font-body: 'DM Sans', sans-serif;
}
body.pmgpt-page-about * { min-width: 0; box-sizing: border-box; }
body.pmgpt-page-about { font-family: var(--td-font-body); color: var(--td-color-text); line-height: 1.6; background-color: var(--td-color-background); margin: 0; }
body.pmgpt-page-about h1, body.pmgpt-page-about h2, body.pmgpt-page-about h3, body.pmgpt-page-about h4 { font-family: var(--td-font-heading); color: var(--td-color-heading); line-height: 1.1; margin: 0 0 1rem; }
body.pmgpt-page-about .fse-group { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; }
body.pmgpt-page-about .fse-section { padding: 100px 0; overflow: hidden; }
.fse-header { padding: 0; background: var(--td-color-header-bg); position: sticky !important; top: 0 !important; z-index: 1000 !important; box-shadow: 0 1px 0 rgba(0,0,0,0.05); }
body.pmgpt-page-about .fse-top-bar { background: #f8fafc; border-bottom: 1px solid #f1f5f9; padding: 8px 0; color: #64748b; font-size: 0.8rem; font-weight: 500; }
body.pmgpt-page-about .fse-top-bar-content { display: flex; justify-content: space-between; align-items: center; }
body.pmgpt-page-about .fse-top-left a { color: inherit; text-decoration: none; transition: color 0.3s; }
body.pmgpt-page-about .fse-top-left a:hover { color: var(--td-color-primary); }
.fse-header-content { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; }
.fse-header-left { display: flex; align-items: center; gap: 12px; }
body.pmgpt-page-about .fse-logo { height: 44px; width: auto; }
body.pmgpt-page-about .fse-site-title { font-weight: 700; font-size: 1.25rem; font-family: var(--td-font-heading); letter-spacing: -0.02em; }
.fse-header-right { display: flex; align-items: center; gap: 40px; }
body.pmgpt-page-about .fse-nav-menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
body.pmgpt-page-about .fse-nav-menu a { text-decoration: none; color: var(--td-color-header-text); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
body.pmgpt-page-about .fse-nav-menu a:hover { color: var(--td-color-primary); }
.fse-toggle-button { display: none; background: none; border: none; font-size: 24px; color: var(--td-color-heading); cursor: pointer; padding: 5px; }
body.pmgpt-page-about /* Hero Variants */
.fse-hero { background: var(--td-color-secondary); color: #fff; padding: 120px 0; position: relative; }
body.pmgpt-page-about .fse-hero-light { background: #f8fafc; color: var(--td-color-text); padding: 120px 0; border-bottom: 1px solid #e2e8f0; }
body.pmgpt-page-about .fse-hero-light h1 { color: var(--td-color-heading); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.04em; margin-bottom: 1.5rem; }
body.pmgpt-page-about .fse-hero-light .fse-paragraph { font-size: 1.25rem; max-width: 700px; line-height: 1.5; }
body.pmgpt-page-about .fse-hero::before {
 content: ''; position: absolute; inset: 0;
 background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(/wp-content/uploads/009-image8.jpg)' opacity='0.04'/%3E%3C/svg%3E");
}
body.pmgpt-page-about .fse-hero-container { display: grid; grid-template-columns: 58fr 42fr; gap: 60px; align-items: center; }
body.pmgpt-page-about .fse-hero-content h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: #fff; margin-bottom: 1.5rem; letter-spacing: -0.04em; }
body.pmgpt-page-about .fse-label { display: block; font-family: var(--td-font-heading); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--td-color-primary); margin-bottom: 1.25rem; font-weight: 700; }
body.pmgpt-page-about .accent-text { color: var(--td-color-primary); }
body.pmgpt-page-about .fse-hero-content p { font-size: 1.25rem; opacity: 0.9; margin-bottom: 0.75rem; max-width: 540px; }
body.pmgpt-page-about .fse-hero-support { font-size: 1.15rem !important; opacity: 0.75 !important; margin-bottom: 2.5rem !important; }
body.pmgpt-page-about .fse-hero-buttons { display: flex; gap: 16px; }
body.pmgpt-page-about .fse-hero-visual { position: relative; height: 100%; min-height: 400px; }
body.pmgpt-page-about .fse-mesh-graphic {
 position: absolute; inset: 0; border-radius: 24px;
 background: radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.4), transparent 50%),
 radial-gradient(circle at 80% 70%, rgba(15, 23, 42, 0.8), transparent 50%),
 linear-gradient(135deg, #06b6d4 0%, #0f172a 100%);
 box-shadow: 0 40px 80px rgba(0,0,0,0.3);
 border: 1px solid rgba(255,255,255,0.1);
}
body.pmgpt-page-about .fse-button { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 8px; font-weight: 500; text-decoration: none; transition: all 0.3s ease; font-size: 1rem; border: none; cursor: pointer; }
body.pmgpt-page-about .fse-button-primary { background: var(--td-color-btn-primary-bg); color: #fff; }
body.pmgpt-page-about .fse-button-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
body.pmgpt-page-about .fse-button:hover { filter: brightness(1.1); transform: translateY(-2px); text-decoration: none; }
body.pmgpt-page-about .fse-process { background: #f8fafc; padding: 80px 0; border-bottom: 1px solid #e2e8f0; }
body.pmgpt-page-about .fse-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
body.pmgpt-page-about .fse-process-card { background: #fff; border-radius: 16px; padding: 32px 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); transition: all 0.3s ease; border: 1px solid #edf2f7; display: flex; flex-direction: column; height: 100%; }
body.pmgpt-page-about .fse-process-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
body.pmgpt-page-about .fse-process-icon { font-size: 1.75rem; color: var(--td-color-primary); margin-bottom: 20px; display: block; }
body.pmgpt-page-about .fse-process-card h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 700; color: var(--td-color-heading); }
body.pmgpt-page-about .fse-process-card p { font-size: 0.95rem; margin: 0; color: var(--td-color-text); line-height: 1.5; }
body.pmgpt-page-about .fse-section-header { text-align: center; margin-bottom: 60px; }
body.pmgpt-page-about .fse-section-header h2 { font-size: 2.5rem; }
body.pmgpt-page-about .fse-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
body.pmgpt-page-about .fse-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #e2e8f0; transition: all 0.3s; display: flex; flex-direction: column; }
body.pmgpt-page-about .fse-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
body.pmgpt-page-about .fse-card img { height: 180px; width: 100%; object-fit: cover; }
body.pmgpt-page-about .fse-card h4 { padding: 24px 20px 8px; font-size: 1.25rem; }
body.pmgpt-page-about .fse-card p { padding: 0 20px 24px; color: var(--td-color-text); font-size: 0.95rem; margin: 0; flex-grow: 1; }
body.pmgpt-page-about .fse-asymmetric-columns { display: grid; grid-template-columns: 55fr 45fr; gap: 80px; align-items: center; }
body.pmgpt-page-about .fse-asymmetric-columns-reverse { display: grid; grid-template-columns: 45fr 55fr; gap: 80px; align-items: center; }
body.pmgpt-page-about .fse-text-col h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
body.pmgpt-page-about .fse-feature-list { list-style: none; padding: 0; margin: 0 0 2.5rem; }
body.pmgpt-page-about .fse-feature-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; font-weight: 500; }
body.pmgpt-page-about .fse-feature-list i { color: var(--td-color-primary); }
body.pmgpt-page-about .fse-visual-placeholder { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
body.pmgpt-page-about .fse-highlight-alt { background: #fff; }
body.pmgpt-page-about .fse-highlight { background: #f8fafc; }
body.pmgpt-page-about .fse-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
body.pmgpt-page-about .fse-value-item i { font-size: 2rem; color: var(--td-color-primary); margin-bottom: 1.5rem; display: block; }
body.pmgpt-page-about .fse-value-item h4 { font-size: 1.25rem; }
body.pmgpt-page-about .fse-cta-banner { background: #f8fafc; color: var(--td-color-text); text-align: center; padding: 140px 0; border-top: 1px solid #e2e8f0; }
body.pmgpt-page-about .fse-cta-content { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
body.pmgpt-page-about .fse-cta-content h2 { color: var(--td-color-heading); font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
body.pmgpt-page-about .fse-cta-content .fse-paragraph { font-size: 1.25rem; color: var(--td-color-text); margin-bottom: 2.5rem; line-height: 1.5; }
body.pmgpt-page-about .fse-cta-email { display: block; margin-top: 2rem; font-size: 0.95rem; color: var(--td-color-text); opacity: 0.6; text-decoration: none; transition: opacity 0.3s; }
body.pmgpt-page-about .fse-cta-email:hover { opacity: 1; text-decoration: underline; }
body.pmgpt-page-about .fse-footer { background: var(--td-color-footer-bg); color: var(--td-color-footer-text); padding: 80px 0 30px; }
body.pmgpt-page-about .fse-footer-columns { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
body.pmgpt-page-about .fse-footer h4 { color: #fff; margin-bottom: 24px; font-size: 1.1rem; }
body.pmgpt-page-about .fse-footer-menu { list-style: none; padding: 0; }
body.pmgpt-page-about .fse-footer-menu li { margin-bottom: 12px; }
body.pmgpt-page-about .fse-footer-menu a { color: var(--td-color-footer-text); text-decoration: none; opacity: 0.7; transition: 0.3s; }
body.pmgpt-page-about .fse-footer-menu a:hover { opacity: 1; color: var(--td-color-primary); }
body.pmgpt-page-about .fse-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; }
body.pmgpt-page-about .fse-copyright { font-size: 0.9rem; opacity: 0.5; }
body.pmgpt-page-about /* Lifecycle specific */
.fse-lifecycle-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; margin-top: 40px; position: relative; }
body.pmgpt-page-about .fse-lifecycle-item { background: #fff; padding: 30px 20px; border-radius: 12px; border: 1px solid #e2e8f0; position: relative; }
body.pmgpt-page-about .fse-lifecycle-item .step-num { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--td-color-primary); color: #fff; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; }
body.pmgpt-page-about .fse-lifecycle-item h3 { font-size: 1.1rem; margin-top: 5px; }
body.pmgpt-page-about /* Human Tone section */
.fse-human-section { background: #f0f9ff; padding: 60px 0; border-radius: 24px; margin: 40px 0; }
body.pmgpt-page-about .fse-human-content { max-width: 800px; margin: 0 auto; text-align: center; }
body.pmgpt-page-about .fse-human-content p { font-size: 1.25rem; font-style: italic; color: var(--td-color-secondary); }
body.pmgpt-page-about /* Animation Utils */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
body.pmgpt-page-about .animate-slide-right { opacity: 0; transform: translateX(50px); transition: all 1s ease-out; }
body.pmgpt-page-about .animate-scale { opacity: 0; transform: scale(0.95); transition: all 0.8s ease-out; }
body.pmgpt-page-about .reveal { opacity: 1; transform: translate(0) scale(1); }
@media (max-width: 992px) {
.fse-header-right { gap: 20px; }
body.pmgpt-page-about .fse-nav-menu { gap: 15px; }
body.pmgpt-page-about .fse-hero-container, body.pmgpt-page-about .fse-asymmetric-columns, body.pmgpt-page-about .fse-asymmetric-columns-reverse { grid-template-columns: 1fr; gap: 40px; }
body.pmgpt-page-about .fse-services-grid, body.pmgpt-page-about .fse-process-grid, body.pmgpt-page-about .fse-values-grid, body.pmgpt-page-about .fse-lifecycle-container { grid-template-columns: repeat(2, 1fr); }
body.pmgpt-page-about .fse-footer-columns { grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; }
body.pmgpt-page-about .fse-hero-visual { order: -1; min-height: 300px; }
}
@media (max-width: 768px) {
body.pmgpt-page-about .fse-top-bar { display: block; padding: 6px 0; font-size: 0.75rem; }
body.pmgpt-page-about .fse-top-bar-content { justify-content: center; }
body.pmgpt-page-about .fse-top-right { display: none; }
.fse-header-content { padding: 12px 20px; }
.fse-header-left { gap: 8px; }
body.pmgpt-page-about .fse-logo { height: 32px; }
body.pmgpt-page-about .fse-site-title { font-size: 1.1rem; }
.fse-header-right { gap: 12px; }
body.pmgpt-page-about .fse-main-nav { display: none; }
body.pmgpt-page-about .fse-main-nav.active { 
 display: block; 
 position: fixed; 
 top: 94px; 
 left: 0; 
 right: 0; 
 background: #fff; 
 padding: 30px 24px; 
 box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
 border-top: 1px solid #f1f5f9;
 }
body.pmgpt-page-about .fse-nav-menu { flex-direction: column; gap: 20px; text-align: left; }
body.pmgpt-page-about .fse-nav-menu a { font-size: 1.1rem; }
.fse-header-actions { display: block; }
.fse-header-actions .fse-button { padding: 8px 16px; font-size: 0.875rem; }
.fse-toggle-button { display: block; margin-left: 8px; }
body.pmgpt-page-about .fse-services-grid, body.pmgpt-page-about .fse-process-grid, body.pmgpt-page-about .fse-values-grid, body.pmgpt-page-about .fse-lifecycle-container { grid-template-columns: 1fr; }
body.pmgpt-page-about .fse-section { padding: 60px 0; }
body.pmgpt-page-about .fse-footer-columns { grid-template-columns: 1fr; gap: 40px; }
body.pmgpt-page-about .fse-hero-content h1 { font-size: 2.5rem; }
body.pmgpt-page-about .fse-hero-buttons { flex-direction: column; }
body.pmgpt-page-about .fse-cta-banner { padding: 80px 0; }
}
@keyframes fadeSlideUp {
 from { opacity: 0; transform: translateY(30px); }
 to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
 from { opacity: 0; transform: translateX(-30px); }
 to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeSlideRight {
 from { opacity: 0; transform: translateX(30px); }
 to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
 from { opacity: 0; transform: scale(0.95); }
 to { opacity: 1; transform: scale(1); }
}
body.pmgpt-page-about .animate-on-scroll { opacity: 0; }
body.pmgpt-page-about .animate-slide-left { opacity: 0; }
body.pmgpt-page-about .animate-slide-right { opacity: 0; }
body.pmgpt-page-about .animate-scale { opacity: 0; }
body.pmgpt-page-about .animate-on-scroll.visible { animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
body.pmgpt-page-about .animate-slide-left.visible { animation: fadeSlideLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
body.pmgpt-page-about .animate-slide-right.visible { animation: fadeSlideRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
body.pmgpt-page-about .animate-scale.visible { animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
body.pmgpt-page-about .fse-button { transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.2s ease; }
body.pmgpt-page-about .fse-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); filter: brightness(1.1); text-decoration: none !important; }
body.pmgpt-page-about .fse-button:hover * { text-decoration: none !important; color: inherit !important; }

/* ===== Page: build ===== */
:root {
 --td-color-primary: #06b6d4;
 --td-color-secondary: #0f172a;
 --td-color-background: #ffffff;
 --td-color-text: #334155;
 --td-color-heading: #0f172a;
 --td-color-link: #06b6d4;
 --td-color-btn-primary-bg: #06b6d4;
 --td-color-btn-primary-text: #ffffff;
 --td-color-btn-secondary-bg: transparent;
 --td-color-btn-secondary-text: #ffffff;
 --td-color-header-bg: #ffffff;
 --td-color-header-text: #0f172a;
 --td-color-footer-bg: #0f172a;
 --td-color-footer-text: #f1f5f9;
 --td-font-heading: 'Space Grotesk', sans-serif;
 --td-font-body: 'DM Sans', sans-serif;
}
body.pmgpt-page-build * { min-width: 0; box-sizing: border-box; }
body.pmgpt-page-build { font-family: var(--td-font-body); color: var(--td-color-text); line-height: 1.6; background-color: var(--td-color-background); margin: 0; }
body.pmgpt-page-build h1, body.pmgpt-page-build h2, body.pmgpt-page-build h3, body.pmgpt-page-build h4 { font-family: var(--td-font-heading); color: var(--td-color-heading); line-height: 1.1; margin: 0 0 1rem; }
body.pmgpt-page-build .fse-group { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; }
body.pmgpt-page-build .fse-section { padding: 100px 0; overflow: hidden; }
.fse-header { padding: 0; background: var(--td-color-header-bg); position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 0 rgba(0,0,0,0.05); }
body.pmgpt-page-build .fse-top-bar { background: #f8fafc; border-bottom: 1px solid #f1f5f9; padding: 8px 0; color: #64748b; font-size: 0.8rem; font-weight: 500; }
body.pmgpt-page-build .fse-top-bar-content { display: flex; justify-content: space-between; align-items: center; }
body.pmgpt-page-build .fse-top-left a { color: inherit; text-decoration: none; transition: color 0.3s; }
body.pmgpt-page-build .fse-top-left a:hover { color: var(--td-color-primary); }
.fse-header-content { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; }
.fse-header-left { display: flex; align-items: center; gap: 12px; }
body.pmgpt-page-build .fse-logo { height: 44px; width: auto; }
body.pmgpt-page-build .fse-site-title { font-weight: 700; font-size: 1.25rem; font-family: var(--td-font-heading); letter-spacing: -0.02em; }
.fse-header-right { display: flex; align-items: center; gap: 40px; }
body.pmgpt-page-build .fse-nav-menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
body.pmgpt-page-build .fse-nav-menu a { text-decoration: none; color: var(--td-color-header-text); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
body.pmgpt-page-build .fse-nav-menu a:hover { color: var(--td-color-primary); }
.fse-toggle-button { display: none; background: none; border: none; font-size: 24px; color: var(--td-color-heading); cursor: pointer; padding: 5px; }
body.pmgpt-page-build /* Build Page Specific Styles */
.fse-hero-build { background: #f8fafc; padding: 140px 0 100px; text-align: center; }
body.pmgpt-page-build .fse-hero-build h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 1.5rem; letter-spacing: -0.04em; }
body.pmgpt-page-build .fse-hero-build p { font-size: 1.25rem; max-width: 650px; margin: 0 auto; color: #64748b; }
body.pmgpt-page-build .fse-build-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
body.pmgpt-page-build .fse-build-item { padding: 32px; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; transition: 0.3s; }
body.pmgpt-page-build .fse-build-item:hover { border-color: var(--td-color-primary); transform: translateY(-4px); }
body.pmgpt-page-build .fse-build-item i { color: var(--td-color-primary); font-size: 1.5rem; margin-bottom: 1rem; }
body.pmgpt-page-build .fse-build-item h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
body.pmgpt-page-build .fse-approach-visual { display: flex; justify-content: space-between; align-items: center; margin-top: 50px; gap: 20px; position: relative; }
body.pmgpt-page-build .fse-approach-step { flex: 1; text-align: center; padding: 40px 20px; background: #f1f5f9; border-radius: 12px; position: relative; }
body.pmgpt-page-build .fse-approach-step h4 { margin-bottom: 8px; color: var(--td-color-primary); }
body.pmgpt-page-build .fse-approach-step p { font-size: 0.9rem; margin: 0; }
body.pmgpt-page-build .fse-approach-step:not(:last-child)::after { content: '\f061'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: -25px; top: 50%; transform: translateY(-50%); color: #cbd5e1; z-index: 2; }
body.pmgpt-page-build .fse-principles-grid, body.pmgpt-page-build .fse-value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
body.pmgpt-page-build .fse-card-simple { padding: 30px; background: #fff; border-radius: 16px; border: 1px solid #e2e8f0; height: 100%; }
body.pmgpt-page-build .fse-card-simple h4 { font-size: 1.15rem; margin-bottom: 12px; color: var(--td-color-heading); }
body.pmgpt-page-build .fse-card-simple p { font-size: 0.95rem; margin: 0; color: #64748b; }
body.pmgpt-page-build .fse-lifecycle-box { display: flex; justify-content: center; align-items: center; gap: 0; margin-top: 60px; flex-wrap: wrap; }
body.pmgpt-page-build .fse-lifecycle-node { padding: 20px 40px; border: 2px solid #e2e8f0; font-family: var(--td-font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.9rem; background: #fff; }
body.pmgpt-page-build .fse-lifecycle-node.active { background: var(--td-color-primary); border-color: var(--td-color-primary); color: #fff; }
body.pmgpt-page-build .fse-lifecycle-node:not(:last-child) { border-right: none; }
body.pmgpt-page-build .fse-closing { text-align: center; max-width: 800px; margin: 0 auto; }
body.pmgpt-page-build .fse-cta-section { background: var(--td-color-secondary); color: #fff; text-align: center; padding: 120px 0; }
body.pmgpt-page-build .fse-cta-section h2 { color: #fff; font-size: 3rem; margin-bottom: 1.5rem; }
body.pmgpt-page-build /* End Build Page Styles */

.fse-button { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 8px; font-weight: 500; text-decoration: none; transition: all 0.3s ease; font-size: 1rem; border: none; cursor: pointer; }
body.pmgpt-page-build .fse-button-primary { background: var(--td-color-btn-primary-bg); color: #fff; }
body.pmgpt-page-build .fse-button-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
body.pmgpt-page-build .fse-button:hover { filter: brightness(1.1); transform: translateY(-2px); text-decoration: none; }
body.pmgpt-page-build .fse-section-header { text-align: center; margin-bottom: 60px; }
body.pmgpt-page-build .fse-section-header h2 { font-size: 2.5rem; }
body.pmgpt-page-build .fse-footer { background: var(--td-color-footer-bg); color: var(--td-color-footer-text); padding: 80px 0 30px; }
body.pmgpt-page-build .fse-footer-columns { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
body.pmgpt-page-build .fse-footer h4 { color: #fff; margin-bottom: 24px; font-size: 1.1rem; }
body.pmgpt-page-build .fse-footer-menu { list-style: none; padding: 0; }
body.pmgpt-page-build .fse-footer-menu li { margin-bottom: 12px; }
body.pmgpt-page-build .fse-footer-menu a { color: var(--td-color-footer-text); text-decoration: none; opacity: 0.7; transition: 0.3s; }
body.pmgpt-page-build .fse-footer-menu a:hover { opacity: 1; color: var(--td-color-primary); }
body.pmgpt-page-build .fse-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; }
body.pmgpt-page-build .fse-copyright { font-size: 0.9rem; opacity: 0.5; }
@media (max-width: 992px) {
body.pmgpt-page-build .fse-principles-grid, body.pmgpt-page-build .fse-value-grid { grid-template-columns: repeat(2, 1fr); }
body.pmgpt-page-build .fse-approach-visual { flex-direction: column; }
body.pmgpt-page-build .fse-approach-step:not(:last-child)::after { content: '\f063'; right: auto; bottom: -25px; left: 50%; transform: translateX(-50%); top: auto; }
}
@media (max-width: 768px) {
body.pmgpt-page-build .fse-main-nav { display: none; }
.fse-toggle-button { display: block; }
body.pmgpt-page-build .fse-principles-grid, body.pmgpt-page-build .fse-value-grid { grid-template-columns: 1fr; }
body.pmgpt-page-build .fse-lifecycle-box { flex-direction: column; width: 100%; }
body.pmgpt-page-build .fse-lifecycle-node { width: 100%; border-right: 2px solid #e2e8f0 !important; border-bottom: none; }
body.pmgpt-page-build .fse-lifecycle-node:last-child { border-bottom: 2px solid #e2e8f0; }
}

/* ===== Page: contact ===== */
:root {
 --td-color-primary: #06b6d4;
 --td-color-secondary: #0f172a;
 --td-color-background: #ffffff;
 --td-color-text: #334155;
 --td-color-heading: #0f172a;
 --td-color-link: #06b6d4;
 --td-color-btn-primary-bg: #06b6d4;
 --td-color-btn-primary-text: #ffffff;
 --td-color-btn-secondary-bg: transparent;
 --td-color-btn-secondary-text: #ffffff;
 --td-color-header-bg: #ffffff;
 --td-color-header-text: #0f172a;
 --td-color-footer-bg: #0f172a;
 --td-color-footer-text: #f1f5f9;
 --td-font-heading: 'Space Grotesk', sans-serif;
 --td-font-body: 'DM Sans', sans-serif;
}
body.pmgpt-page-contact * { min-width: 0; box-sizing: border-box; }
body.pmgpt-page-contact { font-family: var(--td-font-body); color: var(--td-color-text); line-height: 1.6; background-color: var(--td-color-background); margin: 0; }
body.pmgpt-page-contact h1, body.pmgpt-page-contact h2, body.pmgpt-page-contact h3, body.pmgpt-page-contact h4 { font-family: var(--td-font-heading); color: var(--td-color-heading); line-height: 1.1; margin: 0 0 1rem; }
body.pmgpt-page-contact .fse-group { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; }
body.pmgpt-page-contact .fse-section { padding: 100px 0; overflow: hidden; }
.fse-header { padding: 0; background: var(--td-color-header-bg); position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 0 rgba(0,0,0,0.05); }
body.pmgpt-page-contact .fse-top-bar { background: #f8fafc; border-bottom: 1px solid #f1f5f9; padding: 8px 0; color: #64748b; font-size: 0.8rem; font-weight: 500; }
body.pmgpt-page-contact .fse-top-bar-content { display: flex; justify-content: space-between; align-items: center; }
body.pmgpt-page-contact .fse-top-left a { color: inherit; text-decoration: none; transition: color 0.3s; }
body.pmgpt-page-contact .fse-top-left a:hover { color: var(--td-color-primary); }
.fse-header-content { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; }
.fse-header-left { display: flex; align-items: center; gap: 12px; }
body.pmgpt-page-contact .fse-logo { height: 44px; width: auto; }
body.pmgpt-page-contact .fse-site-title { font-weight: 700; font-size: 1.25rem; font-family: var(--td-font-heading); letter-spacing: -0.02em; }
.fse-header-right { display: flex; align-items: center; gap: 40px; }
body.pmgpt-page-contact .fse-nav-menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
body.pmgpt-page-contact .fse-nav-menu a { text-decoration: none; color: var(--td-color-header-text); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
body.pmgpt-page-contact .fse-nav-menu a:hover { color: var(--td-color-primary); }
.fse-toggle-button { display: none; background: none; border: none; font-size: 24px; color: var(--td-color-heading); cursor: pointer; padding: 5px; }
body.pmgpt-page-contact /* Contact Page Specific Styles */
.fse-contact-hero { padding: 120px 0 60px; text-align: center; }
body.pmgpt-page-contact .fse-contact-hero .fse-paragraph { max-width: 650px; margin: 0 auto; font-size: 1.25rem; }
body.pmgpt-page-contact .fse-contact-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 80px; align-items: start; margin-top: 40px; }
body.pmgpt-page-contact .fse-contact-form-col { background: #fff; padding: 48px; border-radius: 20px; border: 1px solid #e2e8f0; box-shadow: 0 10px 40px rgba(0,0,0,0.03); }
body.pmgpt-page-contact .fse-form-group { margin-bottom: 24px; text-align: left; }
body.pmgpt-page-contact .fse-form-group label { display: block; font-weight: 500; margin-bottom: 8px; font-size: 0.95rem; color: var(--td-color-heading); }
body.pmgpt-page-contact .fse-form-group input, body.pmgpt-page-contact .fse-form-group textarea { 
 width: 100%; 
 padding: 14px 18px; 
 border: 1px solid #e2e8f0; 
 border-radius: 10px; 
 font-family: var(--td-font-body); 
 font-size: 1rem; 
 transition: all 0.3s ease;
 background: #fcfdfe;
}
body.pmgpt-page-contact .fse-form-group input:focus, body.pmgpt-page-contact .fse-form-group textarea:focus { 
 outline: none; 
 border-color: var(--td-color-primary); 
 background: #fff;
 box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}
body.pmgpt-page-contact .fse-info-block { margin-bottom: 56px; }
body.pmgpt-page-contact .fse-info-block h4 { margin-bottom: 12px; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--td-color-primary); font-weight: 700; }
body.pmgpt-page-contact .fse-contact-link { font-size: 1.75rem; font-weight: 700; color: var(--td-color-heading); text-decoration: none; transition: color 0.3s; font-family: var(--td-font-heading); }
body.pmgpt-page-contact .fse-contact-link:hover { color: var(--td-color-primary); }
body.pmgpt-page-contact .fse-subtext { font-size: 1rem; margin-top: 12px !important; color: #64748b; }
body.pmgpt-page-contact .fse-process { background: #f8fafc; padding: 100px 0; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
body.pmgpt-page-contact .fse-contact-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
body.pmgpt-page-contact .fse-closing-section { padding: 80px 0; text-align: center; }
body.pmgpt-page-contact .fse-closing-section .fse-paragraph { font-size: 1.25rem; font-style: italic; color: #64748b; max-width: 600px; margin: 0 auto; }
body.pmgpt-page-contact .fse-label { display: block; font-family: var(--td-font-heading); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--td-color-primary); margin-bottom: 1.25rem; font-weight: 700; }
body.pmgpt-page-contact .fse-button { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 8px; font-weight: 500; text-decoration: none; transition: all 0.3s ease; font-size: 1rem; border: none; cursor: pointer; width: 100%; }
body.pmgpt-page-contact .fse-button-primary { background: var(--td-color-btn-primary-bg); color: #fff; }
body.pmgpt-page-contact .fse-button:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
body.pmgpt-page-contact .fse-process-card { background: #fff; border-radius: 16px; padding: 40px 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.02); transition: all 0.3s ease; border: 1px solid #edf2f7; display: flex; flex-direction: column; height: 100%; text-align: left; }
body.pmgpt-page-contact .fse-process-icon { font-size: 1rem; font-weight: 700; color: #fff; background: var(--td-color-primary); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
body.pmgpt-page-contact .fse-process-card h3 { font-size: 1.35rem; margin-bottom: 12px; font-weight: 700; }
body.pmgpt-page-contact .fse-process-card p { font-size: 1rem; margin: 0; color: #64748b; }
body.pmgpt-page-contact .fse-footer { background: var(--td-color-footer-bg); color: var(--td-color-footer-text); padding: 80px 0 30px; }
body.pmgpt-page-contact .fse-footer-columns { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
body.pmgpt-page-contact .fse-footer h4 { color: #fff; margin-bottom: 24px; font-size: 1.1rem; }
body.pmgpt-page-contact .fse-footer-menu { list-style: none; padding: 0; }
body.pmgpt-page-contact .fse-footer-menu li { margin-bottom: 12px; }
body.pmgpt-page-contact .fse-footer-menu a { color: var(--td-color-footer-text); text-decoration: none; opacity: 0.7; transition: 0.3s; }
body.pmgpt-page-contact .fse-footer-menu a:hover { opacity: 1; color: var(--td-color-primary); }
body.pmgpt-page-contact .fse-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; }
body.pmgpt-page-contact .fse-copyright { font-size: 0.9rem; opacity: 0.5; }
@media (max-width: 992px) {
body.pmgpt-page-contact .fse-contact-grid { grid-template-columns: 1fr; gap: 60px; }
body.pmgpt-page-contact .fse-contact-process-grid { grid-template-columns: 1fr; }
.fse-header-right { gap: 20px; }
body.pmgpt-page-contact .fse-nav-menu { gap: 15px; }
}
@media (max-width: 768px) {
body.pmgpt-page-contact .fse-top-bar { display: none; }
.fse-header-content { padding: 12px 20px; }
body.pmgpt-page-contact .fse-logo { height: 32px; }
body.pmgpt-page-contact .fse-site-title { font-size: 1.1rem; }
body.pmgpt-page-contact .fse-main-nav { display: none; }
.fse-toggle-button { display: block; }
body.pmgpt-page-contact .fse-contact-hero { padding: 80px 0 40px; }
body.pmgpt-page-contact .fse-contact-hero h1 { font-size: 2.5rem; }
body.pmgpt-page-contact .fse-contact-form-col { padding: 30px 20px; }
body.pmgpt-page-contact .fse-contact-link { font-size: 1.35rem; }
body.pmgpt-page-contact .fse-footer-columns { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== Page: insights ===== */
:root {
 --td-color-primary: #06b6d4;
 --td-color-secondary: #0f172a;
 --td-color-background: #ffffff;
 --td-color-text: #334155;
 --td-color-heading: #0f172a;
 --td-color-link: #06b6d4;
 --td-color-btn-primary-bg: #06b6d4;
 --td-color-btn-primary-text: #ffffff;
 --td-color-btn-secondary-bg: transparent;
 --td-color-btn-secondary-text: #ffffff;
 --td-color-header-bg: #ffffff;
 --td-color-header-text: #0f172a;
 --td-color-footer-bg: #0f172a;
 --td-color-footer-text: #f1f5f9;
 --td-font-heading: 'Space Grotesk', sans-serif;
 --td-font-body: 'DM Sans', sans-serif;
}
body.pmgpt-page-insights * { min-width: 0; box-sizing: border-box; }
body.pmgpt-page-insights { font-family: var(--td-font-body); color: var(--td-color-text); line-height: 1.6; background-color: var(--td-color-background); margin: 0; }
body.pmgpt-page-insights h1, body.pmgpt-page-insights h2, body.pmgpt-page-insights h3, body.pmgpt-page-insights h4 { font-family: var(--td-font-heading); color: var(--td-color-heading); line-height: 1.1; margin: 0 0 1rem; }
body.pmgpt-page-insights .fse-group { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; }
body.pmgpt-page-insights .fse-section { padding: 100px 0; overflow: hidden; }
.fse-header { padding: 0; background: var(--td-color-header-bg); position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 0 rgba(0,0,0,0.05); }
body.pmgpt-page-insights .fse-top-bar { background: #f8fafc; border-bottom: 1px solid #f1f5f9; padding: 8px 0; color: #64748b; font-size: 0.8rem; font-weight: 500; }
body.pmgpt-page-insights .fse-top-bar-content { display: flex; justify-content: space-between; align-items: center; }
body.pmgpt-page-insights .fse-top-left a { color: inherit; text-decoration: none; transition: color 0.3s; }
body.pmgpt-page-insights .fse-top-left a:hover { color: var(--td-color-primary); }
.fse-header-content { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; }
.fse-header-left { display: flex; align-items: center; gap: 12px; }
body.pmgpt-page-insights .fse-logo { height: 44px; width: auto; }
body.pmgpt-page-insights .fse-site-title { font-weight: 700; font-size: 1.25rem; font-family: var(--td-font-heading); letter-spacing: -0.02em; }
.fse-header-right { display: flex; align-items: center; gap: 40px; }
body.pmgpt-page-insights .fse-nav-menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
body.pmgpt-page-insights .fse-nav-menu a { text-decoration: none; color: var(--td-color-header-text); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
body.pmgpt-page-insights .fse-nav-menu a:hover { color: var(--td-color-primary); }
.fse-toggle-button { display: none; background: none; border: none; font-size: 24px; color: var(--td-color-heading); cursor: pointer; padding: 5px; }
body.pmgpt-page-insights .fse-hero { background: var(--td-color-secondary); color: #fff; padding: 100px 0; position: relative; text-align: center; }
body.pmgpt-page-insights .fse-hero-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
body.pmgpt-page-insights .fse-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: #fff; margin-bottom: 1.5rem; letter-spacing: -0.04em; }
body.pmgpt-page-insights .fse-hero p { font-size: 1.25rem; opacity: 0.9; margin: 0 auto; line-height: 1.6; }
body.pmgpt-page-insights .fse-category-section { padding: 60px 0; background: #fff; }
body.pmgpt-page-insights .fse-category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
body.pmgpt-page-insights .fse-category-card { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 24px; text-align: center; text-decoration: none; transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; gap: 12px; }
body.pmgpt-page-insights .fse-category-card:hover { border-color: var(--td-color-primary); background: #fff; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
body.pmgpt-page-insights .fse-category-card i { font-size: 1.5rem; color: var(--td-color-primary); }
body.pmgpt-page-insights .fse-category-card span { font-weight: 600; color: var(--td-color-heading); font-size: 0.95rem; }
body.pmgpt-page-insights .fse-insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
body.pmgpt-page-insights .fse-article-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: all 0.3s ease; }
body.pmgpt-page-insights .fse-article-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: rgba(6, 182, 212, 0.3); }
body.pmgpt-page-insights .fse-article-image { height: 200px; background: #f1f5f9; position: relative; display: flex; align-items: center; justify-content: center; }
body.pmgpt-page-insights .fse-article-image i { font-size: 3rem; color: #cbd5e1; }
body.pmgpt-page-insights .fse-article-body { padding: 32px; flex-grow: 1; display: flex; flex-direction: column; }
body.pmgpt-page-insights .fse-article-tag { font-size: 0.75rem; text-transform: uppercase; font-weight: 700; color: var(--td-color-primary); letter-spacing: 0.1em; margin-bottom: 12px; display: block; }
body.pmgpt-page-insights .fse-article-card h3 { font-size: 1.35rem; line-height: 1.3; margin-bottom: 16px; }
body.pmgpt-page-insights .fse-article-card p { font-size: 0.95rem; color: #64748b; margin-bottom: 24px; flex-grow: 1; }
body.pmgpt-page-insights .fse-read-more { font-weight: 600; font-size: 0.9rem; color: var(--td-color-heading); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: gap 0.3s; }
body.pmgpt-page-insights .fse-article-card:hover .fse-read-more { color: var(--td-color-primary); gap: 12px; }
body.pmgpt-page-insights .fse-button { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 8px; font-weight: 500; text-decoration: none; transition: all 0.3s ease; font-size: 1rem; border: none; cursor: pointer; }
body.pmgpt-page-insights .fse-button-primary { background: var(--td-color-btn-primary-bg); color: #fff; }
body.pmgpt-page-insights .fse-button-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
body.pmgpt-page-insights .fse-button:hover { filter: brightness(1.1); transform: translateY(-2px); text-decoration: none; }
body.pmgpt-page-insights .fse-cta-banner { background: #f8fafc; color: var(--td-color-text); text-align: center; padding: 100px 0; border-top: 1px solid #e2e8f0; }
body.pmgpt-page-insights .fse-cta-content { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
body.pmgpt-page-insights .fse-cta-content h2 { color: var(--td-color-heading); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
body.pmgpt-page-insights .fse-footer { background: var(--td-color-footer-bg); color: var(--td-color-footer-text); padding: 80px 0 30px; }
body.pmgpt-page-insights .fse-footer-columns { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
body.pmgpt-page-insights .fse-footer h4 { color: #fff; margin-bottom: 24px; font-size: 1.1rem; }
body.pmgpt-page-insights .fse-footer-menu { list-style: none; padding: 0; }
body.pmgpt-page-insights .fse-footer-menu li { margin-bottom: 12px; }
body.pmgpt-page-insights .fse-footer-menu a { color: var(--td-color-footer-text); text-decoration: none; opacity: 0.7; transition: 0.3s; }
body.pmgpt-page-insights .fse-footer-menu a:hover { opacity: 1; color: var(--td-color-primary); }
body.pmgpt-page-insights .fse-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; }
body.pmgpt-page-insights .fse-copyright { font-size: 0.9rem; opacity: 0.5; }
@media (max-width: 992px) {
body.pmgpt-page-insights .fse-category-grid { grid-template-columns: repeat(3, 1fr); }
body.pmgpt-page-insights .fse-insights-grid { grid-template-columns: repeat(2, 1fr); }
body.pmgpt-page-insights .fse-footer-columns { grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
}
@media (max-width: 768px) {
.fse-header-content { padding: 12px 20px; }
body.pmgpt-page-insights .fse-logo { height: 32px; }
body.pmgpt-page-insights .fse-site-title { font-size: 1.1rem; }
body.pmgpt-page-insights .fse-main-nav { display: none; }
body.pmgpt-page-insights .fse-category-grid { grid-template-columns: repeat(2, 1fr); }
body.pmgpt-page-insights .fse-insights-grid { grid-template-columns: 1fr; }
body.pmgpt-page-insights .fse-section { padding: 60px 0; }
body.pmgpt-page-insights .fse-footer-columns { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== Page: transform ===== */
:root {
 --td-color-primary: #06b6d4;
 --td-color-secondary: #0f172a;
 --td-color-background: #ffffff;
 --td-color-text: #334155;
 --td-color-heading: #0f172a;
 --td-color-link: #06b6d4;
 --td-color-btn-primary-bg: #06b6d4;
 --td-color-btn-primary-text: #ffffff;
 --td-color-btn-secondary-bg: transparent;
 --td-color-btn-secondary-text: #ffffff;
 --td-color-header-bg: #ffffff;
 --td-color-header-text: #0f172a;
 --td-color-footer-bg: #0f172a;
 --td-color-footer-text: #f1f5f9;
 --td-font-heading: 'Space Grotesk', sans-serif;
 --td-font-body: 'DM Sans', sans-serif;
}
body.pmgpt-page-transform * { min-width: 0; box-sizing: border-box; }
body.pmgpt-page-transform { font-family: var(--td-font-body); color: var(--td-color-text); line-height: 1.6; background-color: var(--td-color-background); margin: 0; }
body.pmgpt-page-transform h1, body.pmgpt-page-transform h2, body.pmgpt-page-transform h3, body.pmgpt-page-transform h4 { font-family: var(--td-font-heading); color: var(--td-color-heading); line-height: 1.1; margin: 0 0 1rem; }
body.pmgpt-page-transform .fse-group { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; }
body.pmgpt-page-transform .fse-section { padding: 100px 0; overflow: hidden; }
.fse-header { padding: 0; background: var(--td-color-header-bg); position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 0 rgba(0,0,0,0.05); }
body.pmgpt-page-transform .fse-top-bar { background: #f8fafc; border-bottom: 1px solid #f1f5f9; padding: 8px 0; color: #64748b; font-size: 0.8rem; font-weight: 500; }
body.pmgpt-page-transform .fse-top-bar-content { display: flex; justify-content: space-between; align-items: center; }
body.pmgpt-page-transform .fse-top-left a { color: inherit; text-decoration: none; transition: color 0.3s; }
body.pmgpt-page-transform .fse-top-left a:hover { color: var(--td-color-primary); }
.fse-header-content { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; }
.fse-header-left { display: flex; align-items: center; gap: 12px; }
body.pmgpt-page-transform .fse-logo { height: 44px; width: auto; }
body.pmgpt-page-transform .fse-site-title { font-weight: 700; font-size: 1.25rem; font-family: var(--td-font-heading); letter-spacing: -0.02em; }
.fse-header-right { display: flex; align-items: center; gap: 40px; }
body.pmgpt-page-transform .fse-nav-menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
body.pmgpt-page-transform .fse-nav-menu a { text-decoration: none; color: var(--td-color-header-text); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
body.pmgpt-page-transform .fse-nav-menu a:hover { color: var(--td-color-primary); }
.fse-toggle-button { display: none; background: none; border: none; font-size: 24px; color: var(--td-color-heading); cursor: pointer; padding: 5px; }
body.pmgpt-page-transform .fse-hero-transform { background: #f8fafc; padding: 120px 0 80px; text-align: center; border-bottom: 1px solid #e2e8f0; }
body.pmgpt-page-transform .fse-hero-transform h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; margin-bottom: 1.5rem; letter-spacing: -0.04em; }
body.pmgpt-page-transform .fse-hero-transform p { font-size: 1.25rem; max-width: 700px; margin: 0 auto; color: var(--td-color-text); }
body.pmgpt-page-transform .fse-label { display: block; font-family: var(--td-font-heading); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--td-color-primary); margin-bottom: 1.25rem; font-weight: 700; }
body.pmgpt-page-transform .fse-button { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 8px; font-weight: 500; text-decoration: none; transition: all 0.3s ease; font-size: 1rem; border: none; cursor: pointer; }
body.pmgpt-page-transform .fse-button-primary { background: var(--td-color-btn-primary-bg); color: #fff; }
body.pmgpt-page-transform .fse-button:hover { filter: brightness(1.1); transform: translateY(-2px); text-decoration: none; }
body.pmgpt-page-transform .fse-section-header { text-align: center; margin-bottom: 60px; max-width: 800px; margin-left: auto; margin-right: auto; }
body.pmgpt-page-transform .fse-section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
body.pmgpt-page-transform .fse-asymmetric-columns { display: grid; grid-template-columns: 55fr 45fr; gap: 80px; align-items: center; }
body.pmgpt-page-transform .fse-text-col h2 { font-size: 2.25rem; margin-bottom: 1.5rem; }
body.pmgpt-page-transform .fse-feature-list { list-style: none; padding: 0; margin: 0; }
body.pmgpt-page-transform .fse-feature-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1.5rem; font-weight: 500; font-size: 1.1rem; }
body.pmgpt-page-transform .fse-feature-list i { color: var(--td-color-primary); margin-top: 6px; }
body.pmgpt-page-transform .fse-process-flow { display: flex; justify-content: space-between; align-items: center; position: relative; padding: 40px 0; margin-top: 20px; }
body.pmgpt-page-transform .fse-process-flow::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: #e2e8f0; z-index: 1; }
body.pmgpt-page-transform .fse-process-step { background: #fff; border: 1px solid #e2e8f0; border-radius: 50px; padding: 12px 24px; position: relative; z-index: 2; font-weight: 700; font-family: var(--td-font-heading); color: var(--td-color-heading); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
body.pmgpt-page-transform .fse-improve-list { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
body.pmgpt-page-transform .fse-improve-item { display: flex; gap: 20px; align-items: flex-start; }
body.pmgpt-page-transform .fse-improve-item i { font-size: 1.5rem; color: var(--td-color-primary); background: #f0f9ff; padding: 12px; border-radius: 12px; }
body.pmgpt-page-transform .fse-improve-item h4 { margin-bottom: 8px; font-size: 1.15rem; }
body.pmgpt-page-transform .fse-improve-item p { margin: 0; font-size: 0.95rem; }
body.pmgpt-page-transform .fse-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
body.pmgpt-page-transform .fse-card { background: #fff; border-radius: 16px; padding: 32px 24px; border: 1px solid #e2e8f0; transition: all 0.3s; display: flex; flex-direction: column; }
body.pmgpt-page-transform .fse-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); border-color: var(--td-color-primary); }
body.pmgpt-page-transform .fse-card h4 { font-size: 1.2rem; margin-bottom: 12px; }
body.pmgpt-page-transform .fse-card p { font-size: 0.95rem; color: var(--td-color-text); margin: 0; line-height: 1.5; }
body.pmgpt-page-transform .fse-card-icon { font-size: 1.5rem; color: var(--td-color-primary); margin-bottom: 20px; }
body.pmgpt-page-transform .fse-lifecycle-diagram { background: #0f172a; color: #fff; padding: 60px; border-radius: 24px; text-align: center; }
body.pmgpt-page-transform .fse-lifecycle-steps { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 40px; }
body.pmgpt-page-transform .fse-lifecycle-node { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 15px 30px; border-radius: 12px; font-weight: 700; color: #fff; }
body.pmgpt-page-transform .fse-lifecycle-node.active { background: var(--td-color-primary); border-color: var(--td-color-primary); }
body.pmgpt-page-transform .fse-lifecycle-arrow { color: rgba(255,255,255,0.3); font-size: 1.2rem; }
body.pmgpt-page-transform .fse-closing { text-align: center; max-width: 700px; margin: 0 auto; }
body.pmgpt-page-transform .fse-closing p { font-size: 1.25rem; font-style: italic; opacity: 0.8; }
body.pmgpt-page-transform .fse-cta-banner { background: #f8fafc; text-align: center; padding: 120px 0; border-top: 1px solid #e2e8f0; }
body.pmgpt-page-transform .fse-cta-content { max-width: 700px; margin: 0 auto; }
body.pmgpt-page-transform .fse-cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
body.pmgpt-page-transform .fse-cta-content p { font-size: 1.2rem; margin-bottom: 2.5rem; }
body.pmgpt-page-transform .fse-footer { background: var(--td-color-footer-bg); color: var(--td-color-footer-text); padding: 80px 0 30px; }
body.pmgpt-page-transform .fse-footer-columns { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
body.pmgpt-page-transform .fse-footer h4 { color: #fff; margin-bottom: 24px; font-size: 1.1rem; }
body.pmgpt-page-transform .fse-footer-menu { list-style: none; padding: 0; }
body.pmgpt-page-transform .fse-footer-menu li { margin-bottom: 12px; }
body.pmgpt-page-transform .fse-footer-menu a { color: var(--td-color-footer-text); text-decoration: none; opacity: 0.7; transition: 0.3s; }
body.pmgpt-page-transform .fse-footer-menu a:hover { opacity: 1; color: var(--td-color-primary); }
body.pmgpt-page-transform .fse-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; }
body.pmgpt-page-transform .fse-copyright { font-size: 0.9rem; opacity: 0.5; }
@media (max-width: 992px) {
body.pmgpt-page-transform .fse-card-grid { grid-template-columns: repeat(2, 1fr); }
body.pmgpt-page-transform .fse-asymmetric-columns { grid-template-columns: 1fr; gap: 40px; }
body.pmgpt-page-transform .fse-improve-list { grid-template-columns: 1fr; }
body.pmgpt-page-transform .fse-process-flow { flex-direction: column; gap: 20px; }
body.pmgpt-page-transform .fse-process-flow::before { display: none; }
}
@media (max-width: 768px) {
body.pmgpt-page-transform .fse-card-grid { grid-template-columns: 1fr; }
body.pmgpt-page-transform .fse-footer-columns { grid-template-columns: 1fr; }
body.pmgpt-page-transform .fse-hero-transform { padding: 80px 0 60px; }
body.pmgpt-page-transform .fse-main-nav { display: none; }
.fse-toggle-button { display: block; }
}

/* ===== Page: what-we-do ===== */
:root {
 --td-color-primary: #06b6d4;
 --td-color-secondary: #0f172a;
 --td-color-background: #ffffff;
 --td-color-text: #334155;
 --td-color-heading: #0f172a;
 --td-color-link: #06b6d4;
 --td-color-btn-primary-bg: #06b6d4;
 --td-color-btn-primary-text: #ffffff;
 --td-color-btn-secondary-bg: transparent;
 --td-color-btn-secondary-text: #ffffff;
 --td-color-header-bg: #ffffff;
 --td-color-header-text: #0f172a;
 --td-color-footer-bg: #0f172a;
 --td-color-footer-text: #f1f5f9;
 --td-font-heading: 'Space Grotesk', sans-serif;
 --td-font-body: 'DM Sans', sans-serif;
}
body.pmgpt-page-what-we-do * { min-width: 0; box-sizing: border-box; }
body.pmgpt-page-what-we-do { font-family: var(--td-font-body); color: var(--td-color-text); line-height: 1.6; background-color: var(--td-color-background); margin: 0; }
body.pmgpt-page-what-we-do h1, body.pmgpt-page-what-we-do h2, body.pmgpt-page-what-we-do h3, body.pmgpt-page-what-we-do h4 { font-family: var(--td-font-heading); color: var(--td-color-heading); line-height: 1.1; margin: 0 0 1rem; }
body.pmgpt-page-what-we-do p { margin-bottom: 1.5rem; }
body.pmgpt-page-what-we-do .fse-group { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; }
body.pmgpt-page-what-we-do .fse-section { padding: 100px 0; overflow: hidden; }
/* Header Styles */
.fse-header { padding: 0; background: var(--td-color-header-bg); position: sticky !important; top: 0 !important; z-index: 1000 !important; box-shadow: 0 1px 0 rgba(0,0,0,0.05); }
body.pmgpt-page-what-we-do .fse-top-bar { background: #f8fafc; border-bottom: 1px solid #f1f5f9; padding: 8px 0; color: #64748b; font-size: 0.8rem; font-weight: 500; }
body.pmgpt-page-what-we-do .fse-top-bar-content { display: flex; justify-content: space-between; align-items: center; }
body.pmgpt-page-what-we-do .fse-top-left a { color: inherit; text-decoration: none; transition: color 0.3s; }
body.pmgpt-page-what-we-do .fse-top-left a:hover { color: var(--td-color-primary); }
.fse-header-content { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; }
.fse-header-left { display: flex; align-items: center; gap: 12px; }
body.pmgpt-page-what-we-do .fse-logo { height: 44px; width: auto; }
body.pmgpt-page-what-we-do .fse-site-title { font-weight: 700; font-size: 1.25rem; font-family: var(--td-font-heading); letter-spacing: -0.02em; }
.fse-header-right { display: flex; align-items: center; gap: 40px; }
body.pmgpt-page-what-we-do .fse-nav-menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
body.pmgpt-page-what-we-do .fse-nav-menu a { text-decoration: none; color: var(--td-color-header-text); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
body.pmgpt-page-what-we-do .fse-nav-menu a:hover { color: var(--td-color-primary); }
.fse-toggle-button { display: none; background: none; border: none; font-size: 24px; color: var(--td-color-heading); cursor: pointer; padding: 5px; }
body.pmgpt-page-what-we-do /* Hero Section */
.fse-hero-sub { background: #f8fafc; padding: 120px 0 80px; text-align: center; border-bottom: 1px solid #e2e8f0; }
body.pmgpt-page-what-we-do .fse-hero-sub h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.04em; margin-bottom: 1.5rem; }
body.pmgpt-page-what-we-do .fse-hero-sub p { font-size: 1.25rem; max-width: 800px; margin: 0 auto; color: var(--td-color-text); }
body.pmgpt-page-what-we-do /* Core Model Section */
.fse-lifecycle-section { background: #fff; padding: 80px 0; border-bottom: 1px solid #e2e8f0; text-align: center; }
body.pmgpt-page-what-we-do .fse-lifecycle-intro { margin-bottom: 50px; font-weight: 500; color: #64748b; }
body.pmgpt-page-what-we-do .fse-lifecycle-flow { display: flex; justify-content: space-between; align-items: center; gap: 20px; max-width: 1000px; margin: 0 auto 30px; }
body.pmgpt-page-what-we-do .fse-flow-step { flex: 1; text-align: center; position: relative; padding: 30px 20px; background: #f8fafc; border-radius: 16px; border: 1px solid #e2e8f0; transition: transform 0.3s ease; }
body.pmgpt-page-what-we-do .fse-flow-step:hover { transform: translateY(-5px); border-color: var(--td-color-primary); }
body.pmgpt-page-what-we-do .fse-flow-step i { font-size: 1.75rem; color: var(--td-color-primary); margin-bottom: 15px; display: block; }
body.pmgpt-page-what-we-do .fse-flow-step span { font-weight: 700; font-family: var(--td-font-heading); font-size: 1.1rem; color: var(--td-color-heading); text-transform: uppercase; letter-spacing: 0.05em; }
body.pmgpt-page-what-we-do .fse-flow-arrow { color: #cbd5e1; font-size: 1.2rem; }
body.pmgpt-page-what-we-do /* Content Sections */
.fse-asymmetric-columns { display: grid; grid-template-columns: 55fr 45fr; gap: 80px; align-items: center; }
body.pmgpt-page-what-we-do .fse-asymmetric-columns-reverse { display: grid; grid-template-columns: 45fr 55fr; gap: 80px; align-items: center; }
body.pmgpt-page-what-we-do .fse-text-col h2 { font-size: 2.5rem; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
body.pmgpt-page-what-we-do .fse-feature-list { list-style: none; padding: 0; margin: 0 0 2rem; }
body.pmgpt-page-what-we-do .fse-feature-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1rem; font-weight: 500; color: #475569; }
body.pmgpt-page-what-we-do .fse-feature-list i { color: var(--td-color-primary); margin-top: 4px; }
body.pmgpt-page-what-we-do .fse-visual-placeholder { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.08); background: #f1f5f9; min-height: 350px; display: flex; align-items: center; justify-content: center; }
body.pmgpt-page-what-we-do .fse-visual-placeholder i { font-size: 5rem; color: rgba(0,0,0,0.05); }
body.pmgpt-page-what-we-do .fse-section-light { background: #fff; }
body.pmgpt-page-what-we-do .fse-section-alt { background: #f8fafc; }
body.pmgpt-page-what-we-do /* Summary Section */
.fse-summary-section { text-align: center; padding: 100px 0; background: #fff; border-top: 1px solid #e2e8f0; }
body.pmgpt-page-what-we-do .fse-summary-text { font-family: var(--td-font-heading); font-size: 1.75rem; font-weight: 500; color: #64748b; line-height: 1.4; }
body.pmgpt-page-what-we-do .fse-summary-text span { color: var(--td-color-heading); font-weight: 700; }
body.pmgpt-page-what-we-do .fse-summary-text i { font-size: 1rem; margin: 0 15px; color: #cbd5e1; vertical-align: middle; }
body.pmgpt-page-what-we-do /* Buttons & CTA */
.fse-button { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 8px; font-weight: 500; text-decoration: none; transition: all 0.3s ease; font-size: 1rem; border: none; cursor: pointer; }
body.pmgpt-page-what-we-do .fse-button-primary { background: var(--td-color-btn-primary-bg); color: #fff; }
body.pmgpt-page-what-we-do .fse-button:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(6, 182, 212, 0.2); }
body.pmgpt-page-what-we-do .fse-cta-banner { background: var(--td-color-secondary); color: #fff; text-align: center; padding: 120px 0; }
body.pmgpt-page-what-we-do .fse-cta-content { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
body.pmgpt-page-what-we-do .fse-cta-content h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
body.pmgpt-page-what-we-do .fse-cta-content .fse-paragraph { font-size: 1.25rem; opacity: 0.8; margin-bottom: 2.5rem; line-height: 1.5; }
body.pmgpt-page-what-we-do /* Footer Styles */
.fse-footer { background: var(--td-color-footer-bg); color: var(--td-color-footer-text); padding: 80px 0 30px; }
body.pmgpt-page-what-we-do .fse-footer-columns { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
body.pmgpt-page-what-we-do .fse-footer h4 { color: #fff; margin-bottom: 24px; font-size: 1.1rem; }
body.pmgpt-page-what-we-do .fse-footer-menu { list-style: none; padding: 0; }
body.pmgpt-page-what-we-do .fse-footer-menu li { margin-bottom: 12px; }
body.pmgpt-page-what-we-do .fse-footer-menu a { color: var(--td-color-footer-text); text-decoration: none; opacity: 0.7; transition: 0.3s; }
body.pmgpt-page-what-we-do .fse-footer-menu a:hover { opacity: 1; color: var(--td-color-primary); }
body.pmgpt-page-what-we-do .fse-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; }
body.pmgpt-page-what-we-do .fse-copyright { font-size: 0.9rem; opacity: 0.5; }
body.pmgpt-page-what-we-do /* Responsive */
@media (max-width: 992px) {
 .fse-asymmetric-columns, .fse-asymmetric-columns-reverse { grid-template-columns: 1fr; gap: 40px; }
 .fse-asymmetric-columns-reverse .fse-visual-placeholder { order: -1; }
 .fse-lifecycle-flow { flex-wrap: wrap; justify-content: center; }
 .fse-flow-arrow { transform: rotate(90deg); margin: 10px 0; }
 .fse-footer-columns { grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; }
}
@media (max-width: 768px) {
body.pmgpt-page-what-we-do .fse-hero-sub h1 { font-size: 3rem; }
body.pmgpt-page-what-we-do .fse-nav-menu { display: none; }
.fse-toggle-button { display: block; }
body.pmgpt-page-what-we-do .fse-footer-columns { grid-template-columns: 1fr; gap: 40px; }
body.pmgpt-page-what-we-do .fse-flow-step { width: 100%; }
}

/* ===== Page: our-approach ===== */
:root {
 --td-color-primary: #06b6d4;
 --td-color-secondary: #0f172a;
 --td-color-background: #ffffff;
 --td-color-text: #334155;
 --td-color-heading: #0f172a;
 --td-color-link: #06b6d4;
 --td-color-btn-primary-bg: #06b6d4;
 --td-color-btn-primary-text: #ffffff;
 --td-color-btn-secondary-bg: transparent;
 --td-color-btn-secondary-text: #ffffff;
 --td-color-header-bg: #ffffff;
 --td-color-header-text: #0f172a;
 --td-color-footer-bg: #0f172a;
 --td-color-footer-text: #f1f5f9;
 --td-font-heading: 'Space Grotesk', sans-serif;
 --td-font-body: 'DM Sans', sans-serif;
}
body.pmgpt-page-our-approach * { min-width: 0; box-sizing: border-box; }
body.pmgpt-page-our-approach { font-family: var(--td-font-body); color: var(--td-color-text); line-height: 1.6; background-color: var(--td-color-background); margin: 0; }
body.pmgpt-page-our-approach h1, body.pmgpt-page-our-approach h2, body.pmgpt-page-our-approach h3, body.pmgpt-page-our-approach h4 { font-family: var(--td-font-heading); color: var(--td-color-heading); line-height: 1.1; margin: 0 0 1.25rem; }
body.pmgpt-page-our-approach .fse-group { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; }
body.pmgpt-page-our-approach .fse-section { padding: 100px 0; overflow: hidden; }
.fse-header { padding: 0; background: var(--td-color-header-bg); position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 0 rgba(0,0,0,0.05); }
body.pmgpt-page-our-approach .fse-top-bar { background: #f8fafc; border-bottom: 1px solid #f1f5f9; padding: 8px 0; color: #64748b; font-size: 0.8rem; font-weight: 500; }
body.pmgpt-page-our-approach .fse-top-bar-content { display: flex; justify-content: space-between; align-items: center; }
body.pmgpt-page-our-approach .fse-top-left a { color: inherit; text-decoration: none; transition: color 0.3s; }
body.pmgpt-page-our-approach .fse-top-left a:hover { color: var(--td-color-primary); }
.fse-header-content { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; }
.fse-header-left { display: flex; align-items: center; gap: 12px; }
body.pmgpt-page-our-approach .fse-logo { height: 44px; width: auto; }
body.pmgpt-page-our-approach .fse-site-title { font-weight: 700; font-size: 1.25rem; font-family: var(--td-font-heading); letter-spacing: -0.02em; }
.fse-header-right { display: flex; align-items: center; gap: 40px; }
body.pmgpt-page-our-approach .fse-nav-menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
body.pmgpt-page-our-approach .fse-nav-menu a { text-decoration: none; color: var(--td-color-header-text); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
body.pmgpt-page-our-approach .fse-nav-menu a:hover { color: var(--td-color-primary); }
.fse-toggle-button { display: none; background: none; border: none; font-size: 24px; color: var(--td-color-heading); cursor: pointer; padding: 5px; }
body.pmgpt-page-our-approach .approach-hero { background: #f8fafc; padding: 120px 0 80px; text-align: center; }
body.pmgpt-page-our-approach .approach-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); max-width: 800px; margin: 0 auto 1.5rem; letter-spacing: -0.04em; }
body.pmgpt-page-our-approach .approach-hero .fse-paragraph { font-size: 1.25rem; max-width: 650px; margin: 0 auto; color: #64748b; }
body.pmgpt-page-our-approach /* Lifecycle Diagram - Improved */
.fse-lifecycle { background: #fff; border-bottom: 1px solid #f1f5f9; }
body.pmgpt-page-our-approach .lifecycle-visual { display: flex; justify-content: space-between; align-items: stretch; margin-top: 60px; position: relative; gap: 15px; }
body.pmgpt-page-our-approach .lifecycle-visual::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 2px; background: #e2e8f0; z-index: 1; transform: translateY(-50%); }
body.pmgpt-page-our-approach .lifecycle-step { flex: 1; text-align: center; background: #fff; padding: 40px 20px; border-radius: 16px; border: 2px solid #e2e8f0; position: relative; z-index: 2; transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; }
body.pmgpt-page-our-approach .lifecycle-step:hover { border-color: var(--td-color-primary); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
body.pmgpt-page-our-approach .lifecycle-step .step-badge { position: absolute; top: 12px; right: 12px; font-size: 0.75rem; font-weight: 700; color: #cbd5e1; font-family: var(--td-font-heading); }
body.pmgpt-page-our-approach .lifecycle-step i { font-size: 2rem; color: var(--td-color-primary); margin-bottom: 1.5rem; background: #f0fdfa; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
body.pmgpt-page-our-approach .lifecycle-step h4 { font-size: 1.1rem; margin-bottom: 0; text-transform: uppercase; letter-spacing: 0.1em; color: var(--td-color-heading); }
body.pmgpt-page-our-approach .lifecycle-connector { display: none; }
body.pmgpt-page-our-approach /* Hidden in favor of visual line */
.lifecycle-loop-indicator { display: flex; align-items: center; color: #cbd5e1; font-size: 1.5rem; padding: 0 10px; z-index: 2; background: #fff; }
body.pmgpt-page-our-approach .fse-principles { background: #f8fafc; }
body.pmgpt-page-our-approach .principles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 50px; }
body.pmgpt-page-our-approach .principle-card { background: #fff; padding: 40px; border-radius: 20px; border: 1px solid #e2e8f0; transition: all 0.3s ease; }
body.pmgpt-page-our-approach .principle-card:hover { box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05); }
body.pmgpt-page-our-approach .principle-card i { font-size: 1.75rem; color: var(--td-color-primary); margin-bottom: 1.5rem; display: block; }
body.pmgpt-page-our-approach .principle-card h3 { font-size: 1.35rem; margin-bottom: 1rem; }
body.pmgpt-page-our-approach .principle-card p { margin: 0; color: #64748b; font-size: 0.95rem; }
body.pmgpt-page-our-approach /* Workflow Diagram - Improved */
.fse-workflow { background: #fff; }
body.pmgpt-page-our-approach .workflow-diagram { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 60px; padding: 20px 0; }
body.pmgpt-page-our-approach .workflow-box { background: #0f172a; color: #fff; padding: 24px 20px; border-radius: 12px; font-weight: 600; font-family: var(--td-font-heading); flex: 1; max-width: 200px; text-align: center; transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; gap: 12px; }
body.pmgpt-page-our-approach .workflow-box i { font-size: 1.25rem; opacity: 0.8; }
body.pmgpt-page-our-approach .workflow-box.alt { background: var(--td-color-primary); transform: scale(1.05); box-shadow: 0 10px 25px rgba(6, 182, 212, 0.25); }
body.pmgpt-page-our-approach .workflow-arrow { color: #cbd5e1; font-size: 1.2rem; }
body.pmgpt-page-our-approach .fse-delivery { background: #f8fafc; }
body.pmgpt-page-our-approach .delivery-stack { display: flex; flex-direction: column; gap: 10px; max-width: 600px; margin: 50px auto 0; }
body.pmgpt-page-our-approach .stack-layer { background: #fff; border: 1px solid #e2e8f0; padding: 25px; border-radius: 12px; display: flex; align-items: center; gap: 20px; }
body.pmgpt-page-our-approach .stack-layer i { color: var(--td-color-primary); font-size: 1.25rem; width: 30px; text-align: center; }
body.pmgpt-page-our-approach .stack-layer span { font-weight: 600; font-family: var(--td-font-heading); }
body.pmgpt-page-our-approach .stack-layer.highlight { border-color: var(--td-color-primary); background: #f0fdfa; }
body.pmgpt-page-our-approach .fse-section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
body.pmgpt-page-our-approach .fse-section-header h2 { font-size: 2.5rem; letter-spacing: -0.02em; }
body.pmgpt-page-our-approach .fse-section-header .fse-paragraph { color: #64748b; font-size: 1.1rem; }
body.pmgpt-page-our-approach .fse-closing { text-align: center; background: #fff; padding: 120px 0; }
body.pmgpt-page-our-approach .fse-closing h2 { font-size: 2.5rem; max-width: 800px; margin: 0 auto; }
body.pmgpt-page-our-approach .fse-cta { background: #0f172a; color: #fff; text-align: center; padding: 100px 0; }
body.pmgpt-page-our-approach .fse-cta h2 { color: #fff; font-size: 3rem; margin-bottom: 2rem; }
body.pmgpt-page-our-approach .fse-button { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 8px; font-weight: 500; text-decoration: none; transition: all 0.3s ease; font-size: 1rem; border: none; cursor: pointer; }
body.pmgpt-page-our-approach .fse-button-primary { background: var(--td-color-btn-primary-bg); color: #fff; }
body.pmgpt-page-our-approach .fse-button:hover { filter: brightness(1.1); transform: translateY(-2px); text-decoration: none; box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
body.pmgpt-page-our-approach .fse-footer { background: var(--td-color-footer-bg); color: var(--td-color-footer-text); padding: 80px 0 30px; }
body.pmgpt-page-our-approach .fse-footer-columns { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
body.pmgpt-page-our-approach .fse-footer h4 { color: #fff; margin-bottom: 24px; font-size: 1.1rem; }
body.pmgpt-page-our-approach .fse-footer-menu { list-style: none; padding: 0; }
body.pmgpt-page-our-approach .fse-footer-menu li { margin-bottom: 12px; }
body.pmgpt-page-our-approach .fse-footer-menu a { color: var(--td-color-footer-text); text-decoration: none; opacity: 0.7; transition: 0.3s; }
body.pmgpt-page-our-approach .fse-footer-menu a:hover { opacity: 1; color: var(--td-color-primary); }
body.pmgpt-page-our-approach .fse-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; }
body.pmgpt-page-our-approach .fse-copyright { font-size: 0.9rem; opacity: 0.5; }
@media (max-width: 992px) {
.fse-header-right { gap: 20px; }
body.pmgpt-page-our-approach .fse-nav-menu { gap: 15px; }
body.pmgpt-page-our-approach .lifecycle-visual { flex-direction: column; gap: 30px; }
body.pmgpt-page-our-approach .lifecycle-visual::before { left: 50%; top: 0; bottom: 0; width: 2px; height: 100%; transform: translateX(-50%); }
body.pmgpt-page-our-approach .lifecycle-step { min-width: none; width: 100%; max-width: 400px; margin: 0 auto; }
body.pmgpt-page-our-approach .lifecycle-loop-indicator { display: none; }
body.pmgpt-page-our-approach .workflow-diagram { flex-direction: column; gap: 0; }
body.pmgpt-page-our-approach .workflow-box { max-width: 300px; width: 100%; }
body.pmgpt-page-our-approach .workflow-box.alt { transform: none; margin: 15px 0; }
body.pmgpt-page-our-approach .workflow-arrow { transform: rotate(90deg); margin: 15px 0; }
body.pmgpt-page-our-approach .fse-footer-columns { grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; }
}
@media (max-width: 768px) {
body.pmgpt-page-our-approach .fse-main-nav { display: none; }
.fse-toggle-button { display: block; }
body.pmgpt-page-our-approach .fse-section { padding: 60px 0; }
body.pmgpt-page-our-approach .fse-footer-columns { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== Page: cybersecurity ===== */
:root {
 --td-color-primary: #06b6d4;
 --td-color-secondary: #0f172a;
 --td-color-background: #ffffff;
 --td-color-text: #334155;
 --td-color-heading: #0f172a;
 --td-color-link: #06b6d4;
 --td-color-btn-primary-bg: #06b6d4;
 --td-color-btn-primary-text: #ffffff;
 --td-color-btn-secondary-bg: transparent;
 --td-color-btn-secondary-text: #ffffff;
 --td-color-header-bg: #ffffff;
 --td-color-header-text: #0f172a;
 --td-color-footer-bg: #0f172a;
 --td-color-footer-text: #f1f5f9;
 --td-font-heading: 'Space Grotesk', sans-serif;
 --td-font-body: 'DM Sans', sans-serif;
}
body.pmgpt-page-cybersecurity * { min-width: 0; box-sizing: border-box; }
body.pmgpt-page-cybersecurity { font-family: var(--td-font-body); color: var(--td-color-text); line-height: 1.6; background-color: var(--td-color-background); margin: 0; }
body.pmgpt-page-cybersecurity h1, body.pmgpt-page-cybersecurity h2, body.pmgpt-page-cybersecurity h3, body.pmgpt-page-cybersecurity h4 { font-family: var(--td-font-heading); color: var(--td-color-heading); line-height: 1.1; margin: 0 0 1rem; }
body.pmgpt-page-cybersecurity .fse-group { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; }
body.pmgpt-page-cybersecurity .fse-section { padding: 100px 0; overflow: hidden; }
.fse-header { padding: 0; background: var(--td-color-header-bg); position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 0 rgba(0,0,0,0.05); }
body.pmgpt-page-cybersecurity .fse-top-bar { background: #f8fafc; border-bottom: 1px solid #f1f5f9; padding: 8px 0; color: #64748b; font-size: 0.8rem; font-weight: 500; }
body.pmgpt-page-cybersecurity .fse-top-bar-content { display: flex; justify-content: space-between; align-items: center; }
body.pmgpt-page-cybersecurity .fse-top-left a { color: inherit; text-decoration: none; transition: color 0.3s; }
body.pmgpt-page-cybersecurity .fse-top-left a:hover { color: var(--td-color-primary); }
.fse-header-content { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; }
.fse-header-left { display: flex; align-items: center; gap: 12px; }
body.pmgpt-page-cybersecurity .fse-logo { height: 44px; width: auto; }
body.pmgpt-page-cybersecurity .fse-site-title { font-weight: 700; font-size: 1.25rem; font-family: var(--td-font-heading); letter-spacing: -0.02em; }
.fse-header-right { display: flex; align-items: center; gap: 40px; }
body.pmgpt-page-cybersecurity .fse-nav-menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
body.pmgpt-page-cybersecurity .fse-nav-menu a { text-decoration: none; color: var(--td-color-header-text); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
body.pmgpt-page-cybersecurity .fse-nav-menu a:hover { color: var(--td-color-primary); }
.fse-toggle-button { display: none; background: none; border: none; font-size: 24px; color: var(--td-color-heading); cursor: pointer; padding: 5px; }
body.pmgpt-page-cybersecurity .fse-hero { background: var(--td-color-secondary); color: #fff; padding: 120px 0; position: relative; }
body.pmgpt-page-cybersecurity .fse-hero::before {
 content: ''; position: absolute; inset: 0;
 background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(/wp-content/uploads/009-image8.jpg)' opacity='0.04'/%3E%3C/svg%3E");
}
body.pmgpt-page-cybersecurity .fse-hero-container { display: grid; grid-template-columns: 58fr 42fr; gap: 60px; align-items: center; }
body.pmgpt-page-cybersecurity .fse-hero-content h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: #fff; margin-bottom: 1.5rem; letter-spacing: -0.04em; }
body.pmgpt-page-cybersecurity .fse-label { display: block; font-family: var(--td-font-heading); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--td-color-primary); margin-bottom: 1.25rem; font-weight: 700; }
body.pmgpt-page-cybersecurity .accent-text { color: var(--td-color-primary); }
body.pmgpt-page-cybersecurity .fse-hero-content p { font-size: 1.25rem; opacity: 0.9; margin-bottom: 0.75rem; max-width: 540px; }
body.pmgpt-page-cybersecurity .fse-hero-support { font-size: 1.15rem !important; opacity: 0.75 !important; margin-bottom: 2.5rem !important; }
body.pmgpt-page-cybersecurity .fse-hero-buttons { display: flex; gap: 16px; }
body.pmgpt-page-cybersecurity .fse-hero-visual { position: relative; height: 100%; min-height: 400px; }
body.pmgpt-page-cybersecurity .fse-mesh-graphic {
 position: absolute; inset: 0; border-radius: 24px;
 background: radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.4), transparent 50%),
 radial-gradient(circle at 80% 70%, rgba(15, 23, 42, 0.8), transparent 50%),
 linear-gradient(135deg, #06b6d4 0%, #0f172a 100%);
 box-shadow: 0 40px 80px rgba(0,0,0,0.3);
 border: 1px solid rgba(255,255,255,0.1);
}
body.pmgpt-page-cybersecurity .fse-button { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 8px; font-weight: 500; text-decoration: none; transition: all 0.3s ease; font-size: 1rem; border: none; cursor: pointer; }
body.pmgpt-page-cybersecurity .fse-button-primary { background: var(--td-color-btn-primary-bg); color: #fff; }
body.pmgpt-page-cybersecurity .fse-button-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
body.pmgpt-page-cybersecurity .fse-button:hover { filter: brightness(1.1); transform: translateY(-2px); text-decoration: none; }
body.pmgpt-page-cybersecurity .fse-process { background: #f8fafc; padding: 80px 0; border-bottom: 1px solid #e2e8f0; }
body.pmgpt-page-cybersecurity .fse-process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
body.pmgpt-page-cybersecurity .fse-process-card { background: #fff; border-radius: 16px; padding: 32px 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); transition: all 0.3s ease; border: 1px solid #edf2f7; display: flex; flex-direction: column; height: 100%; text-align: center; }
body.pmgpt-page-cybersecurity .fse-process-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
body.pmgpt-page-cybersecurity .fse-process-icon { font-size: 1.75rem; color: var(--td-color-primary); margin-bottom: 20px; display: block; }
body.pmgpt-page-cybersecurity .fse-process-card h3 { font-size: 1.1rem; margin-bottom: 12px; font-weight: 700; color: var(--td-color-heading); }
body.pmgpt-page-cybersecurity .fse-process-card p { font-size: 0.85rem; margin: 0; color: var(--td-color-text); line-height: 1.5; }
body.pmgpt-page-cybersecurity .fse-section-header { text-align: center; margin-bottom: 60px; }
body.pmgpt-page-cybersecurity .fse-section-header h2 { font-size: 2.5rem; }
body.pmgpt-page-cybersecurity .fse-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
body.pmgpt-page-cybersecurity .fse-card { background: #fff; border-radius: 16px; padding: 32px 24px; border: 1px solid #e2e8f0; transition: all 0.3s; display: flex; flex-direction: column; }
body.pmgpt-page-cybersecurity .fse-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
body.pmgpt-page-cybersecurity .fse-card h4 { font-size: 1.25rem; margin-bottom: 12px; }
body.pmgpt-page-cybersecurity .fse-card p { color: var(--td-color-text); font-size: 0.95rem; margin: 0; flex-grow: 1; }
body.pmgpt-page-cybersecurity .fse-card i { font-size: 2rem; color: var(--td-color-primary); margin-bottom: 20px; }
body.pmgpt-page-cybersecurity .fse-asymmetric-columns { display: grid; grid-template-columns: 55fr 45fr; gap: 80px; align-items: center; }
body.pmgpt-page-cybersecurity .fse-text-col h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
body.pmgpt-page-cybersecurity .fse-highlight { background: #f8fafc; }
body.pmgpt-page-cybersecurity .fse-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
body.pmgpt-page-cybersecurity .fse-value-item { text-align: center; }
body.pmgpt-page-cybersecurity .fse-value-item i { font-size: 2rem; color: var(--td-color-primary); margin-bottom: 1.5rem; display: block; }
body.pmgpt-page-cybersecurity .fse-value-item h4 { font-size: 1.25rem; }
body.pmgpt-page-cybersecurity .fse-cta-banner { background: #f8fafc; color: var(--td-color-text); text-align: center; padding: 100px 0; border-top: 1px solid #e2e8f0; }
body.pmgpt-page-cybersecurity .fse-cta-content { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
body.pmgpt-page-cybersecurity .fse-cta-content h2 { color: var(--td-color-heading); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
body.pmgpt-page-cybersecurity .fse-footer { background: var(--td-color-footer-bg); color: var(--td-color-footer-text); padding: 80px 0 30px; }
body.pmgpt-page-cybersecurity .fse-footer-columns { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
body.pmgpt-page-cybersecurity .fse-footer h4 { color: #fff; margin-bottom: 24px; font-size: 1.1rem; }
body.pmgpt-page-cybersecurity .fse-footer-menu { list-style: none; padding: 0; }
body.pmgpt-page-cybersecurity .fse-footer-menu li { margin-bottom: 12px; }
body.pmgpt-page-cybersecurity .fse-footer-menu a { color: var(--td-color-footer-text); text-decoration: none; opacity: 0.7; transition: 0.3s; }
body.pmgpt-page-cybersecurity .fse-footer-menu a:hover { opacity: 1; color: var(--td-color-primary); }
body.pmgpt-page-cybersecurity .fse-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; }
body.pmgpt-page-cybersecurity .fse-copyright { font-size: 0.9rem; opacity: 0.5; }
body.pmgpt-page-cybersecurity .fse-risk-diagram { display: flex; flex-direction: column; gap: 10px; padding: 20px 0; }
body.pmgpt-page-cybersecurity .fse-risk-layer { background: #fff; border: 1px solid #e2e8f0; padding: 15px 25px; border-radius: 12px; text-align: center; font-weight: 700; color: var(--td-color-heading); box-shadow: 0 4px 10px rgba(0,0,0,0.02); transition: all 0.3s; }
body.pmgpt-page-cybersecurity .fse-risk-layer:hover { transform: scale(1.02); border-color: var(--td-color-primary); }
body.pmgpt-page-cybersecurity .fse-risk-layer:nth-child(1) { width: 100%; opacity: 1; }
body.pmgpt-page-cybersecurity .fse-risk-layer:nth-child(2) { width: 90%; margin: 0 auto; opacity: 0.9; }
body.pmgpt-page-cybersecurity .fse-risk-layer:nth-child(3) { width: 80%; margin: 0 auto; opacity: 0.8; }
body.pmgpt-page-cybersecurity .fse-risk-layer:nth-child(4) { width: 70%; margin: 0 auto; opacity: 0.7; }
body.pmgpt-page-cybersecurity .fse-risk-layer:nth-child(5) { width: 60%; margin: 0 auto; opacity: 0.6; }
body.pmgpt-page-cybersecurity .fse-lifecycle-flow { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 40px; position: relative; }
body.pmgpt-page-cybersecurity .fse-lifecycle-step { flex: 1; text-align: center; padding: 20px; background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; position: relative; z-index: 2; }
body.pmgpt-page-cybersecurity .fse-lifecycle-step.active { border-color: var(--td-color-primary); background: #ecfeff; border-width: 2px; }
body.pmgpt-page-cybersecurity .fse-lifecycle-step h4 { margin: 0; font-size: 1.1rem; }
body.pmgpt-page-cybersecurity .fse-lifecycle-connector { position: absolute; top: 50%; left: 0; right: 0; height: 2px; background: #e2e8f0; z-index: 1; }
body.pmgpt-page-cybersecurity .fse-positioning-note { background: #fff; border-left: 4px solid var(--td-color-primary); padding: 40px; border-radius: 0 16px 16px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.04); }
@media (max-width: 992px) {
body.pmgpt-page-cybersecurity .fse-services-grid, body.pmgpt-page-cybersecurity .fse-process-grid, body.pmgpt-page-cybersecurity .fse-values-grid { grid-template-columns: repeat(2, 1fr); }
body.pmgpt-page-cybersecurity .fse-asymmetric-columns { grid-template-columns: 1fr; gap: 40px; }
body.pmgpt-page-cybersecurity .fse-lifecycle-flow { flex-direction: column; }
body.pmgpt-page-cybersecurity .fse-lifecycle-connector { display: none; }
}
@media (max-width: 768px) {
body.pmgpt-page-cybersecurity .fse-services-grid, body.pmgpt-page-cybersecurity .fse-process-grid, body.pmgpt-page-cybersecurity .fse-values-grid { grid-template-columns: 1fr; }
body.pmgpt-page-cybersecurity .fse-hero-content h1 { font-size: 2.5rem; }
}

/* ===== Page: managed-services ===== */
:root {
 --td-color-primary: #06b6d4;
 --td-color-secondary: #0f172a;
 --td-color-background: #ffffff;
 --td-color-text: #334155;
 --td-color-heading: #0f172a;
 --td-color-link: #06b6d4;
 --td-color-btn-primary-bg: #06b6d4;
 --td-color-btn-primary-text: #ffffff;
 --td-color-btn-secondary-bg: transparent;
 --td-color-btn-secondary-text: #ffffff;
 --td-color-header-bg: #ffffff;
 --td-color-header-text: #0f172a;
 --td-color-footer-bg: #0f172a;
 --td-color-footer-text: #f1f5f9;
 --td-font-heading: 'Space Grotesk', sans-serif;
 --td-font-body: 'DM Sans', sans-serif;
}
body.pmgpt-page-managed-services * { min-width: 0; box-sizing: border-box; }
body.pmgpt-page-managed-services { font-family: var(--td-font-body); color: var(--td-color-text); line-height: 1.6; background-color: var(--td-color-background); margin: 0; }
body.pmgpt-page-managed-services h1, body.pmgpt-page-managed-services h2, body.pmgpt-page-managed-services h3, body.pmgpt-page-managed-services h4 { font-family: var(--td-font-heading); color: var(--td-color-heading); line-height: 1.1; margin: 0 0 1rem; }
body.pmgpt-page-managed-services .fse-group { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; }
body.pmgpt-page-managed-services .fse-section { padding: 100px 0; overflow: hidden; }
.fse-header { padding: 0; background: var(--td-color-header-bg); position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 0 rgba(0,0,0,0.05); }
body.pmgpt-page-managed-services .fse-top-bar { background: #f8fafc; border-bottom: 1px solid #f1f5f9; padding: 8px 0; color: #64748b; font-size: 0.8rem; font-weight: 500; }
body.pmgpt-page-managed-services .fse-top-bar-content { display: flex; justify-content: space-between; align-items: center; }
body.pmgpt-page-managed-services .fse-top-left a { color: inherit; text-decoration: none; transition: color 0.3s; }
body.pmgpt-page-managed-services .fse-top-left a:hover { color: var(--td-color-primary); }
.fse-header-content { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; }
.fse-header-left { display: flex; align-items: center; gap: 12px; }
body.pmgpt-page-managed-services .fse-logo { height: 44px; width: auto; }
body.pmgpt-page-managed-services .fse-site-title { font-weight: 700; font-size: 1.25rem; font-family: var(--td-font-heading); letter-spacing: -0.02em; }
.fse-header-right { display: flex; align-items: center; gap: 40px; }
body.pmgpt-page-managed-services .fse-nav-menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
body.pmgpt-page-managed-services .fse-nav-menu a { text-decoration: none; color: var(--td-color-header-text); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
body.pmgpt-page-managed-services .fse-nav-menu a:hover { color: var(--td-color-primary); }
.fse-toggle-button { display: none; background: none; border: none; font-size: 24px; color: var(--td-color-heading); cursor: pointer; padding: 5px; }
body.pmgpt-page-managed-services .managed-hero { background: var(--td-color-secondary); color: #fff; padding: 120px 0; position: relative; }
body.pmgpt-page-managed-services .managed-hero::before {
 content: ''; position: absolute; inset: 0;
 background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(/wp-content/uploads/009-image8.jpg)' opacity='0.04'/%3E%3C/svg%3E");
}
body.pmgpt-page-managed-services .managed-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: #fff; margin-bottom: 1.5rem; letter-spacing: -0.04em; max-width: 800px; }
body.pmgpt-page-managed-services .managed-hero p { font-size: 1.25rem; opacity: 0.9; max-width: 650px; margin-bottom: 0; }
body.pmgpt-page-managed-services .fse-label { display: block; font-family: var(--td-font-heading); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--td-color-primary); margin-bottom: 1.25rem; font-weight: 700; }
body.pmgpt-page-managed-services .text-center { text-align: center; }
body.pmgpt-page-managed-services .max-700 { max-width: 700px; margin-left: auto; margin-right: auto; }
body.pmgpt-page-managed-services .bg-light { background-color: #f8fafc; }
body.pmgpt-page-managed-services .def-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
body.pmgpt-page-managed-services .def-content h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
body.pmgpt-page-managed-services .def-list { list-style: none; padding: 0; }
body.pmgpt-page-managed-services .def-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1.5rem; }
body.pmgpt-page-managed-services .def-list i { color: var(--td-color-primary); margin-top: 5px; }
body.pmgpt-page-managed-services .workflow-container { display: flex; justify-content: space-between; align-items: center; margin-top: 60px; position: relative; }
body.pmgpt-page-managed-services .workflow-step { flex: 1; text-align: center; background: #fff; padding: 30px 20px; border-radius: 12px; border: 1px solid #e2e8f0; position: relative; z-index: 2; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
body.pmgpt-page-managed-services .workflow-step i { font-size: 1.5rem; color: var(--td-color-primary); margin-bottom: 15px; display: block; }
body.pmgpt-page-managed-services .workflow-step span { font-weight: 700; font-family: var(--td-font-heading); color: var(--td-color-heading); }
body.pmgpt-page-managed-services .workflow-arrow { font-size: 1.25rem; color: #cbd5e1; margin: 0 15px; z-index: 1; }
body.pmgpt-page-managed-services .collab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
body.pmgpt-page-managed-services .collab-card { background: #fff; padding: 40px; border-radius: 16px; border: 1px solid #e2e8f0; position: relative; overflow: hidden; }
body.pmgpt-page-managed-services .collab-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--td-color-primary); opacity: 0.3; }
body.pmgpt-page-managed-services .collab-card h4 { font-size: 1.4rem; color: var(--td-color-primary); margin-bottom: 1rem; }
body.pmgpt-page-managed-services .platform-flow { display: flex; flex-direction: column; gap: 20px; max-width: 600px; margin: 50px auto 0; position: relative; }
body.pmgpt-page-managed-services .platform-node { background: #fff; padding: 24px; border-radius: 12px; border: 1px solid #e2e8f0; text-align: center; font-weight: 600; box-shadow: 0 4px 12px rgba(0,0,0,0.05); position: relative; }
body.pmgpt-page-managed-services .platform-node i { display: block; font-size: 1.2rem; margin-bottom: 10px; color: var(--td-color-primary); }
body.pmgpt-page-managed-services .platform-node:not(:last-child)::after { content: '↓'; position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%); color: var(--td-color-primary); font-size: 24px; font-weight: 700; }
body.pmgpt-page-managed-services .platform-node.highlight { background: var(--td-color-secondary); color: #fff; border-color: var(--td-color-secondary); }
body.pmgpt-page-managed-services .platform-node.highlight i { color: var(--td-color-primary); }
body.pmgpt-page-managed-services .lifecycle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 40px; }
body.pmgpt-page-managed-services .lifecycle-stage { background: #f1f5f9; padding: 20px; text-align: center; font-weight: 700; font-family: var(--td-font-heading); clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%); }
body.pmgpt-page-managed-services .lifecycle-stage.active { background: var(--td-color-secondary); color: #fff; }
body.pmgpt-page-managed-services .cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 50px; }
body.pmgpt-page-managed-services .feature-card { background: #fff; padding: 35px; border-radius: 16px; border: 1px solid #e2e8f0; transition: transform 0.3s ease; }
body.pmgpt-page-managed-services .feature-card:hover { transform: translateY(-5px); }
body.pmgpt-page-managed-services .feature-card i { font-size: 1.75rem; color: var(--td-color-primary); margin-bottom: 20px; display: block; }
body.pmgpt-page-managed-services .feature-card h4 { margin-bottom: 12px; }
body.pmgpt-page-managed-services .fse-button { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 8px; font-weight: 500; text-decoration: none; transition: all 0.3s ease; font-size: 1rem; border: none; cursor: pointer; }
body.pmgpt-page-managed-services .fse-button-primary { background: var(--td-color-btn-primary-bg); color: #fff; }
body.pmgpt-page-managed-services .fse-footer { background: var(--td-color-footer-bg); color: var(--td-color-footer-text); padding: 80px 0 30px; }
body.pmgpt-page-managed-services .fse-footer-columns { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
body.pmgpt-page-managed-services .fse-footer h4 { color: #fff; margin-bottom: 24px; font-size: 1.1rem; }
body.pmgpt-page-managed-services .fse-footer-menu { list-style: none; padding: 0; }
body.pmgpt-page-managed-services .fse-footer-menu li { margin-bottom: 12px; }
body.pmgpt-page-managed-services .fse-footer-menu a { color: var(--td-color-footer-text); text-decoration: none; opacity: 0.7; transition: 0.3s; }
body.pmgpt-page-managed-services .fse-footer-menu a:hover { opacity: 1; color: var(--td-color-primary); }
body.pmgpt-page-managed-services .fse-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; }
body.pmgpt-page-managed-services .fse-copyright { font-size: 0.9rem; opacity: 0.5; }
@media (max-width: 992px) {
body.pmgpt-page-managed-services .workflow-container { flex-direction: column; gap: 20px; }
body.pmgpt-page-managed-services .workflow-arrow { transform: rotate(90deg); margin: 5px 0; }
body.pmgpt-page-managed-services .cards-grid, body.pmgpt-page-managed-services .def-grid, body.pmgpt-page-managed-services .collab-grid { grid-template-columns: 1fr; }
body.pmgpt-page-managed-services .lifecycle-grid { grid-template-columns: 1fr; gap: 15px; }
body.pmgpt-page-managed-services .lifecycle-stage { clip-path: none; border-radius: 8px; }
}
@media (max-width: 768px) {
body.pmgpt-page-managed-services .fse-main-nav { display: none; }
.fse-toggle-button { display: block; }
.fse-header-right { gap: 15px; }
body.pmgpt-page-managed-services .fse-footer-columns { grid-template-columns: 1fr; }
}

/* ===== Page: join-us ===== */
:root {
 --td-color-primary: #06b6d4;
 --td-color-secondary: #0f172a;
 --td-color-background: #ffffff;
 --td-color-text: #334155;
 --td-color-heading: #0f172a;
 --td-color-link: #06b6d4;
 --td-color-btn-primary-bg: #06b6d4;
 --td-color-btn-primary-text: #ffffff;
 --td-color-btn-secondary-bg: transparent;
 --td-color-btn-secondary-text: #ffffff;
 --td-color-header-bg: #ffffff;
 --td-color-header-text: #0f172a;
 --td-color-footer-bg: #0f172a;
 --td-color-footer-text: #f1f5f9;
 --td-font-heading: 'Space Grotesk', sans-serif;
 --td-font-body: 'DM Sans', sans-serif;
}
body.pmgpt-page-join-us * { min-width: 0; box-sizing: border-box; }
body.pmgpt-page-join-us { font-family: var(--td-font-body); color: var(--td-color-text); line-height: 1.6; background-color: var(--td-color-background); margin: 0; }
body.pmgpt-page-join-us h1, body.pmgpt-page-join-us h2, body.pmgpt-page-join-us h3, body.pmgpt-page-join-us h4 { font-family: var(--td-font-heading); color: var(--td-color-heading); line-height: 1.1; margin: 0 0 1rem; }
body.pmgpt-page-join-us .fse-group { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; }
body.pmgpt-page-join-us .fse-section { padding: 100px 0; overflow: hidden; }
.fse-header { padding: 0; background: var(--td-color-header-bg); position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 0 rgba(0,0,0,0.05); }
body.pmgpt-page-join-us .fse-top-bar { background: #f8fafc; border-bottom: 1px solid #f1f5f9; padding: 8px 0; color: #64748b; font-size: 0.8rem; font-weight: 500; }
body.pmgpt-page-join-us .fse-top-bar-content { display: flex; justify-content: space-between; align-items: center; }
body.pmgpt-page-join-us .fse-top-left a { color: inherit; text-decoration: none; transition: color 0.3s; }
body.pmgpt-page-join-us .fse-top-left a:hover { color: var(--td-color-primary); }
.fse-header-content { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; }
.fse-header-left { display: flex; align-items: center; gap: 12px; }
body.pmgpt-page-join-us .fse-logo { height: 44px; width: auto; }
body.pmgpt-page-join-us .fse-site-title { font-weight: 700; font-size: 1.25rem; font-family: var(--td-font-heading); letter-spacing: -0.02em; }
.fse-header-right { display: flex; align-items: center; gap: 40px; }
body.pmgpt-page-join-us .fse-nav-menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
body.pmgpt-page-join-us .fse-nav-menu a { text-decoration: none; color: var(--td-color-header-text); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
body.pmgpt-page-join-us .fse-nav-menu a:hover { color: var(--td-color-primary); }
.fse-toggle-button { display: none; background: none; border: none; font-size: 24px; color: var(--td-color-heading); cursor: pointer; padding: 5px; }
body.pmgpt-page-join-us .fse-hero { background: var(--td-color-secondary); color: #fff; padding: 120px 0; position: relative; }
body.pmgpt-page-join-us .fse-hero-join { background: #ffffff; color: var(--td-color-text); padding: 120px 0 80px; text-align: center; border-bottom: 1px solid #f1f5f9; }
body.pmgpt-page-join-us .fse-hero-join h1 { font-size: clamp(3rem, 6vw, 4.5rem); margin-bottom: 1.5rem; letter-spacing: -0.04em; }
body.pmgpt-page-join-us .fse-hero-join .fse-intro { font-size: 1.25rem; max-width: 700px; margin: 0 auto; color: var(--td-color-text); opacity: 0.8; }
body.pmgpt-page-join-us .fse-hero::before {
 content: ''; position: absolute; inset: 0;
 background-image: url(\"data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(/wp-content/uploads/009-image8.jpg)' opacity='0.04'/%3E%3C/svg%3E\");
}
body.pmgpt-page-join-us .fse-button { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 8px; font-weight: 500; text-decoration: none; transition: all 0.3s ease; font-size: 1rem; border: none; cursor: pointer; }
body.pmgpt-page-join-us .fse-button-primary { background: var(--td-color-btn-primary-bg); color: #fff; }
body.pmgpt-page-join-us .fse-button-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
body.pmgpt-page-join-us .fse-button:hover { filter: brightness(1.1); transform: translateY(-2px); text-decoration: none; }
body.pmgpt-page-join-us .fse-process { background: #f8fafc; padding: 80px 0; border-bottom: 1px solid #e2e8f0; }
body.pmgpt-page-join-us .fse-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
body.pmgpt-page-join-us .fse-process-card { background: #fff; border-radius: 16px; padding: 32px 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); transition: all 0.3s ease; border: 1px solid #edf2f7; display: flex; flex-direction: column; height: 100%; }
body.pmgpt-page-join-us .fse-process-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
body.pmgpt-page-join-us .fse-process-icon { font-size: 1.75rem; color: var(--td-color-primary); margin-bottom: 20px; display: block; }
body.pmgpt-page-join-us .fse-process-card h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 700; color: var(--td-color-heading); }
body.pmgpt-page-join-us .fse-process-card p { font-size: 0.95rem; margin: 0; color: var(--td-color-text); line-height: 1.5; }
body.pmgpt-page-join-us .fse-section-header { text-align: center; margin-bottom: 60px; }
body.pmgpt-page-join-us .fse-section-header h2 { font-size: 2.5rem; }
body.pmgpt-page-join-us .fse-highlight-alt { background: #fff; }
body.pmgpt-page-join-us .fse-highlight { background: #f8fafc; }
body.pmgpt-page-join-us .fse-values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
body.pmgpt-page-join-us .fse-value-item { background: #fff; padding: 32px; border-radius: 16px; border: 1px solid #edf2f7; }
body.pmgpt-page-join-us .fse-value-item i { font-size: 1.5rem; color: var(--td-color-primary); margin-bottom: 1rem; display: block; }
body.pmgpt-page-join-us .fse-value-item h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }
body.pmgpt-page-join-us .fse-value-item p { margin: 0; font-size: 0.95rem; }
body.pmgpt-page-join-us .fse-cta-banner { background: #f8fafc; color: var(--td-color-text); text-align: center; padding: 140px 0; border-top: 1px solid #e2e8f0; }
body.pmgpt-page-join-us .fse-cta-content { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
body.pmgpt-page-join-us .fse-cta-content h2 { color: var(--td-color-heading); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
body.pmgpt-page-join-us .fse-cta-content .fse-paragraph { font-size: 1.15rem; color: var(--td-color-text); margin-bottom: 2rem; line-height: 1.5; }
body.pmgpt-page-join-us .fse-cta-email { display: block; margin-top: 2rem; font-size: 1.1rem; color: var(--td-color-primary); font-weight: 700; text-decoration: none; transition: opacity 0.3s; }
body.pmgpt-page-join-us .fse-cta-email:hover { text-decoration: underline; }
body.pmgpt-page-join-us .fse-closing-line { margin-top: 40px; padding-top: 40px; border-top: 1px solid #e2e8f0; font-style: italic; opacity: 0.8; }
body.pmgpt-page-join-us .fse-minimal-roles { text-align: center; padding: 60px 0; background: #fff; }
body.pmgpt-page-join-us .fse-minimal-roles p { opacity: 0.7; max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
body.pmgpt-page-join-us .fse-footer { background: var(--td-color-footer-bg); color: var(--td-color-footer-text); padding: 80px 0 30px; }
body.pmgpt-page-join-us .fse-footer-columns { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
body.pmgpt-page-join-us .fse-footer h4 { color: #fff; margin-bottom: 24px; font-size: 1.1rem; }
body.pmgpt-page-join-us .fse-footer-menu { list-style: none; padding: 0; }
body.pmgpt-page-join-us .fse-footer-menu li { margin-bottom: 12px; }
body.pmgpt-page-join-us .fse-footer-menu a { color: var(--td-color-footer-text); text-decoration: none; opacity: 0.7; transition: 0.3s; }
body.pmgpt-page-join-us .fse-footer-menu a:hover { opacity: 1; color: var(--td-color-primary); }
body.pmgpt-page-join-us .fse-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; }
body.pmgpt-page-join-us .fse-copyright { font-size: 0.9rem; opacity: 0.5; }
@media (max-width: 992px) {
body.pmgpt-page-join-us .fse-process-grid { grid-template-columns: repeat(2, 1fr); }
body.pmgpt-page-join-us .fse-footer-columns { grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; }
}
@media (max-width: 768px) {
body.pmgpt-page-join-us .fse-process-grid, body.pmgpt-page-join-us .fse-values-grid { grid-template-columns: 1fr; }
body.pmgpt-page-join-us .fse-hero-join { padding: 80px 0 60px; }
body.pmgpt-page-join-us .fse-section { padding: 60px 0; }
body.pmgpt-page-join-us .fse-footer-columns { grid-template-columns: 1fr; gap: 40px; }
body.pmgpt-page-join-us .fse-main-nav { display: none; }
.fse-toggle-button { display: block; }
}
body.pmgpt-page-join-us .fse-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); filter: brightness(1.1); text-decoration: none !important; }
