/*
Theme Name: Pixel Media Services
Theme URI: https://pixelmediaservices.com/
Author: Pixel Media Services
Author URI: https://pixelmediaservices.com/
Description: Custom, high-performance, lightweight Classic WordPress theme for Pixel Media Services. Tailored for technology companies, SaaS platforms, and EdTech ecosystems with interactive floating icons, controlled section manager, and classic editor compatibility.
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pixel-media
Tags: custom-background, custom-logo, custom-menu, featured-images, full-width-template, theme-options, translation-ready
*/

/**
 * Pixel Media Services - Master Design System Stylesheet
 * 100% Pure Native CSS (Zero External CDN Dependency)
 * Exact 1:1 color palette, typography, micro-interactions, and layouts from the master mockup
 */

:root {
  /* Exact Primary Tech Blue Palette */
  --pms-primary: #1b68f4;
  --pms-primary-hover: #1251c8;
  --pms-primary-dark: #0f3d99;
  --pms-primary-light: #edf5ff;
  --pms-primary-border: #bfdbfe;
  
  --pms-secondary: #0284c7;
  --pms-secondary-hover: #0369a1;
  --pms-accent-blue: #2563eb;
  --pms-accent-sky: #38bdf8;
  --pms-success: #10b981;
  --pms-warning: #f59e0b;
  --pms-purple: #a855f7;
  
  /* Text & Surfaces */
  --pms-text-main: #0f172a;
  --pms-text-muted: #5b6b82;
  --pms-text-light: #94a3b8;
  --pms-bg-body: #ffffff;
  --pms-bg-card: #ffffff;
  --pms-bg-alt: #f8fafc;
  --pms-border-color: #e2e8f0;
  --pms-border-focus: #93c5fd;

  /* Shadows & Elevations */
  --pms-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
  --pms-shadow-md: 0 6px 16px -2px rgba(15, 23, 42, 0.07);
  --pms-shadow-lg: 0 12px 28px -4px rgba(15, 23, 42, 0.09);
  --pms-shadow-xl: 0 20px 40px -6px rgba(15, 23, 42, 0.12);

  /* Fonts */
  --pms-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --pms-font-heading: 'Plus Jakarta Sans', var(--pms-font-sans);
  
  --pms-radius-sm: 8px;
  --pms-radius-md: 14px;
  --pms-radius-lg: 22px;
  --pms-radius-full: 9999px;
  --pms-container-max: 1220px;
  --pms-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   1. BASE RESETS & TYPOGRAPHY
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--pms-font-sans);
  color: var(--pms-text-main);
  background-color: var(--pms-bg-body);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--pms-font-heading);
  color: var(--pms-text-main);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--pms-primary);
  text-decoration: none;
  transition: var(--pms-transition);
}

a:hover {
  color: var(--pms-primary-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--pms-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Buttons & Badges */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--pms-radius-full);
  transition: var(--pms-transition);
  cursor: pointer;
  border: 1px solid transparent;
  line-height: 1.2;
}

.btn-primary {
  background: var(--pms-primary);
  color: #ffffff;
  box-shadow: 0 6px 18px -2px rgba(27, 104, 244, 0.4);
}

.btn-primary:hover {
  background: var(--pms-primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -2px rgba(27, 104, 244, 0.5);
}

.btn-outline {
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  color: #1e293b;
  box-shadow: var(--pms-shadow-sm);
}

.btn-outline:hover {
  border-color: #94a3b8;
  color: #0f172a;
  background-color: #f8fafc;
  transform: translateY(-2px);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--pms-radius-full);
  background-color: var(--pms-primary-light);
  color: var(--pms-primary);
  border: 1px solid var(--pms-primary-border);
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--pms-border-color);
  z-index: 1000;
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Site Branding with Pixel Grid Icon */
.site-branding {
  display: flex;
  align-items: center;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-pixel-icon {
  display: grid;
  grid-template-columns: repeat(2, 9px);
  grid-template-rows: repeat(2, 9px);
  gap: 3px;
  flex-shrink: 0;
}

.brand-pixel-icon .px-dot {
  border-radius: 2px;
}
.brand-pixel-icon .px-1 { background-color: #1b68f4; }
.brand-pixel-icon .px-2 { background-color: #38bdf8; }
.brand-pixel-icon .px-3 { background-color: #0284c7; }
.brand-pixel-icon .px-4 { background-color: #2563eb; }

.brand-text-group {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--pms-font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-sub-name {
  color: #475569;
  font-weight: 700;
}

.brand-tagline {
  font-size: 9px;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Navigation Menu */
.main-navigation {
  display: none;
}

@media (min-width: 992px) {
  .main-navigation { display: block; }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
  color: var(--pms-primary);
}

.dropdown-arrow {
  font-size: 10px;
  color: #94a3b8;
}

.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #ffffff;
  border: 1px solid var(--pms-border-color);
  border-radius: var(--pms-radius-md);
  box-shadow: var(--pms-shadow-xl);
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.nav-menu li { position: relative; }
.nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu .sub-menu li a {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
  display: block;
}

.nav-menu .sub-menu li a:hover {
  background-color: var(--pms-primary-light);
  color: var(--pms-primary);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-search-btn {
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.header-search-btn:hover {
  color: var(--pms-primary);
}

.btn-talk-pill {
  background: var(--pms-primary);
  color: #ffffff;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(27, 104, 244, 0.35);
  transition: var(--pms-transition);
}

.btn-talk-pill:hover {
  background: var(--pms-primary-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(27, 104, 244, 0.45);
}

.talk-arrow {
  transition: transform 0.2s ease;
}

.btn-talk-pill:hover .talk-arrow {
  transform: translateX(3px);
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: block;
}

@media (min-width: 992px) {
  .menu-toggle { display: none; }
}

.hamburger-box {
  width: 22px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 22px;
  height: 2px;
  background-color: #0f172a;
  border-radius: 2px;
  position: absolute;
}

.hamburger-inner { top: 50%; transform: translateY(-50%); }
.hamburger-inner::before { content: ''; top: -6px; }
.hamburger-inner::after { content: ''; bottom: -6px; }

/* Mobile Navigation Drawer & Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-backdrop.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-navigation-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 99999;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding: 24px;
  display: block;
}

@media (min-width: 992px) {
  .mobile-navigation-drawer {
    display: none !important;
  }
}

.mobile-navigation-drawer.is-open {
  right: 0;
}

body.mobile-nav-open {
  overflow: hidden;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--pms-border-color);
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.mobile-nav-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.mobile-nav-close {
  font-size: 28px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: #64748b;
  padding: 4px;
  transition: color 0.2s;
}

.mobile-nav-close:hover {
  color: #0f172a;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.mobile-nav-menu a {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-nav-menu a:hover {
  background-color: var(--pms-primary-light);
  color: var(--pms-primary);
}

.mobile-nav-cta {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

/* ==========================================================================
   3. HERO SECTION (2-COLUMN GRID + 3D LAPTOP & PHONE + FLOATING BADGES)
   ========================================================================== */
.pms-hero-section {
  position: relative;
  padding: 40px 0 70px 0;
  background: radial-gradient(circle at 85% 25%, rgba(219, 234, 254, 0.45) 0%, transparent 55%),
              radial-gradient(circle at 10% 65%, rgba(240, 249, 255, 0.7) 0%, transparent 45%),
              #ffffff;
  overflow: hidden;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.ambient-glow-1 {
  width: 480px;
  height: 480px;
  background: rgba(147, 197, 253, 0.3);
  top: -80px;
  right: -80px;
}

.ambient-glow-2 {
  width: 380px;
  height: 380px;
  background: rgba(196, 181, 253, 0.2);
  bottom: -40px;
  left: 5%;
}

.hero-container {
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

/* Left Content */
.hero-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .hero-left-content {
    align-items: center;
  }
}

.hero-eyebrow-wrapper {
  margin-bottom: 18px;
}

.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--pms-primary-light);
  color: var(--pms-primary);
  border: 1px solid var(--pms-primary-border);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 9999px;
  text-transform: uppercase;
}

.eyebrow-sparkle {
  color: var(--pms-primary);
  font-size: 12px;
}

.hero-title {
  font-size: 3.35rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  font-family: var(--pms-font-heading);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.35rem;
  }
}

.hero-heading-dark {
  color: #0f172a;
  display: block;
}

.hero-heading-gradient {
  color: var(--pms-primary);
  display: block;
}

.hero-subtext {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .hero-actions {
    justify-content: center;
  }
}

.btn-hero-primary {
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 9999px;
  background: var(--pms-primary);
  color: #ffffff;
  box-shadow: 0 8px 22px -2px rgba(27, 104, 244, 0.4);
}

.btn-hero-primary:hover {
  background: var(--pms-primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-hero-outline {
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #1e293b;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.btn-hero-outline:hover {
  border-color: #94a3b8;
  background: #f8fafc;
  color: #0f172a;
}

.play-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pms-primary-light);
  color: var(--pms-primary);
  font-size: 8px;
}

/* Social Proof Bar */
.hero-social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

@media (max-width: 991px) {
  .hero-social-proof {
    justify-content: center;
  }
}

.client-avatar-stack {
  display: inline-flex;
}

.avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background-size: cover;
  background-position: center;
  margin-right: -8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
}

.social-proof-text {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  margin-left: 6px;
}

.hero-watch-story-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--pms-primary);
  margin-left: 6px;
}

.hero-watch-story-btn:hover {
  color: var(--pms-primary-hover);
  text-decoration: underline;
}

.watch-play-icon {
  font-size: 9px;
}

/* Right Column: 3D Laptop & Phone Stage */
.hero-right-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}

.device-stage-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
  padding: 30px 10px;
}

/* Custom Center Uploaded Image Container */
.hero-center-image-container {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.hero-custom-center-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.2);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-custom-center-img:hover {
  transform: scale(1.02);
}

.pms-hero-section.has-bg-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* 3D Laptop Device */
.laptop-device {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  z-index: 10;
}

.laptop-lid {
  background: #0f172a;
  border-radius: 14px 14px 3px 3px;
  padding: 8px 8px 0 8px;
  box-shadow: 0 25px 45px -10px rgba(15, 23, 42, 0.35);
  border: 3px solid #334155;
  border-bottom: none;
}

.laptop-camera {
  width: 5px;
  height: 5px;
  background: #475569;
  border-radius: 50%;
  margin: 0 auto 5px auto;
}

.laptop-screen {
  background: #1e293b;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}

.browser-header {
  background: #0f172a;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #334155;
}

.browser-dots {
  display: flex;
  gap: 4px;
}

.browser-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.browser-url-bar {
  background: #1e293b;
  color: #94a3b8;
  font-size: 9px;
  font-family: monospace;
  padding: 2px 8px;
  border-radius: 4px;
  flex: 1;
  max-width: 180px;
  text-align: center;
}

.laptop-screen-body {
  padding: 14px;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 60%, #0f172a 100%);
  color: #ffffff;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.screen-hero-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.screen-logo-badge {
  font-size: 10px;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.05em;
}

.screen-nav-lines {
  display: flex;
  gap: 5px;
}

.screen-nav-lines span {
  width: 20px;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
}

.screen-hero-headline h4 {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
}

.screen-hero-headline p {
  font-size: 9px;
  color: #94a3b8;
  line-height: 1.4;
}

.screen-hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 10px;
}

.mini-card {
  padding: 5px;
  border-radius: 6px;
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.mini-num {
  display: block;
  font-size: 10px;
  font-weight: 800;
}

.mini-card-blue .mini-num { color: #38bdf8; }
.mini-card-green .mini-num { color: #4ade80; }
.mini-card-purple .mini-num { color: #c084fc; }

.mini-lbl {
  display: block;
  font-size: 7px;
  color: #94a3b8;
}

.laptop-base {
  background: #475569;
  height: 10px;
  width: calc(100% + 36px);
  margin-left: -18px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.laptop-notch {
  width: 50px;
  height: 3px;
  background: #334155;
  margin: 0 auto;
  border-radius: 0 0 3px 3px;
}

/* Overlapping Phone Device */
.phone-device {
  position: absolute;
  right: -5px;
  bottom: 5px;
  width: 130px;
  background: #020617;
  border: 3px solid #1e293b;
  border-radius: 20px;
  padding: 6px;
  box-shadow: 0 18px 30px -4px rgba(15, 23, 42, 0.4);
  z-index: 20;
}

@media (max-width: 480px) {
  .phone-device {
    width: 105px;
    right: 5px;
  }
}

.phone-notch-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}

.phone-speaker {
  width: 20px;
  height: 2px;
  background: #334155;
  border-radius: 2px;
}

.phone-lens {
  width: 4px;
  height: 4px;
  background: #1e3a8a;
  border-radius: 50%;
}

.phone-screen-content {
  background: #0f172a;
  border-radius: 14px;
  padding: 8px;
  color: #ffffff;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.phone-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-badge {
  font-size: 8px;
  font-weight: 800;
  color: #38bdf8;
}

.phone-status-dot {
  width: 5px;
  height: 5px;
  background: #22c55e;
  border-radius: 50%;
}

.phone-greeting {
  margin: 6px 0 3px 0;
}

.phone-greet-sub {
  font-size: 7px;
  color: #94a3b8;
  display: block;
}

.phone-greeting h5 {
  font-size: 8px;
  font-weight: 700;
  color: #ffffff;
}

.phone-course-card {
  background: #1e293b;
  border-radius: 5px;
  padding: 5px;
  border: 1px solid #334155;
}

.course-tag {
  font-size: 7px;
  color: #f59e0b;
  font-weight: 700;
  display: block;
}

.phone-course-card h6 {
  font-size: 7px;
  font-weight: 700;
  color: #ffffff;
  margin: 1px 0 3px 0;
}

.progress-bar-wrap {
  background: #334155;
  height: 2px;
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  width: 70%;
  height: 100%;
  background: var(--pms-primary);
}

.phone-bottom-action {
  text-align: center;
  margin-top: 5px;
}

.phone-sync-btn {
  font-size: 7px;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.15);
  padding: 2px 5px;
  border-radius: 3px;
  display: block;
}

/* ==========================================================================
   4. FLOATING GLASSMORPHIC INTERACTIVE BADGES
   ========================================================================== */
.floating-icons-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 30;
}

.floating-glass-card {
  position: absolute;
  pointer-events: auto;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 10px 22px -3px rgba(15, 23, 42, 0.12), 0 3px 8px rgba(0, 0, 0, 0.04);
  transform: translate(-50%, -50%);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}

.floating-glass-card:hover {
  transform: translate(-50%, -50%) scale(1.1) !important;
  box-shadow: 0 18px 30px -4px rgba(15, 23, 42, 0.2);
  border-color: var(--card-accent, #1b68f4);
  z-index: 50;
}

.float-card-inner {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
}

.float-icon-bubble {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.float-icon-bubble svg {
  width: 16px;
  height: 16px;
}

.float-card-label {
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
}

.anim-float { animation: floatAnim infinite ease-in-out; }
.anim-pulse { animation: pulseAnim infinite ease-in-out; }
.anim-bob { animation: bobAnim infinite ease-in-out; }
.anim-float-rotate { animation: floatRotateAnim infinite ease-in-out; }

@keyframes floatAnim {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}

@keyframes pulseAnim {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes bobAnim {
  0%, 100% { transform: translate(-50%, -50%) translateX(0px); }
  50% { transform: translate(-50%, -50%) translateX(7px); }
}

@keyframes floatRotateAnim {
  0%, 100% { transform: translate(-50%, -50%) translateY(0) rotate(0deg); }
  50% { transform: translate(-50%, -50%) translateY(-8px) rotate(2deg); }
}

@media (max-width: 640px) {
  .floating-icons-container {
    display: none;
  }
}

/* ==========================================================================
   5. STATS FLOATING BAR SECTION
   ========================================================================== */
.pms-stats-section {
  position: relative;
  z-index: 20;
  margin-top: -24px;
  margin-bottom: 40px;
}

.stats-floating-bar {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px -3px rgba(15, 23, 42, 0.06);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px;
  align-items: center;
}

@media (max-width: 991px) {
  .stats-floating-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 540px) {
  .stats-floating-bar {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-right: 1px solid #e2e8f0;
}

.stat-item:last-child {
  border-right: none;
}

@media (max-width: 991px) {
  .stat-item {
    border-right: none;
    padding: 0;
  }
}

.stat-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-meta {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.65rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  font-family: var(--pms-font-heading);
}

.stat-title {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

/* ==========================================================================
   6. SERVICES 5-COLUMN SECTION
   ========================================================================== */
.pms-services-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

@media (max-width: 768px) {
  .section-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--pms-primary);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-heading {
  font-size: 2.15rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  font-family: var(--pms-font-heading);
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 1.65rem;
  }
}

.section-subtitle {
  font-size: 14px;
  color: #64748b;
  margin-top: 6px;
  max-width: 600px;
}

.section-view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pms-primary);
}

.section-view-all-link:hover {
  color: var(--pms-primary-hover);
}

.section-view-all-link .link-arrow {
  transition: transform 0.2s ease;
}

.section-view-all-link:hover .link-arrow {
  transform: translateX(4px);
}

.services-5col-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

@media (max-width: 1100px) {
  .services-5col-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-5col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-5col-grid {
    grid-template-columns: 1fr;
  }
}

.service-card-clean {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  min-height: 230px;
}

.service-card-clean:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 26px -4px rgba(15, 23, 42, 0.09);
  border-color: var(--card-color, #1b68f4);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.25s ease;
}

.service-card-clean:hover .service-icon-box {
  transform: scale(1.08);
}

.service-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.service-card-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}

.service-card-bottom {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

.service-circle-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.service-card-clean:hover .service-circle-btn {
  background: var(--card-color, #1b68f4);
  color: #ffffff;
}

/* ==========================================================================
   7. FEATURED PRODUCT: K12 SMART CLASS CARD
   ========================================================================== */
.pms-k12-featured-section {
  padding: 40px 0 60px 0;
  background-color: #ffffff;
}

.k12-featured-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 10px 28px -4px rgba(15, 23, 42, 0.05);
}

@media (max-width: 768px) {
  .k12-featured-card {
    padding: 22px;
  }
}

.k12-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 991px) {
  .k12-grid {
    grid-template-columns: 1fr;
  }
}

.badge-featured-pill {
  display: inline-block;
  background-color: var(--pms-primary-light);
  color: var(--pms-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 9999px;
  margin-bottom: 12px;
}

.k12-main-title {
  font-size: 2.45rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  font-family: var(--pms-font-heading);
  margin-bottom: 6px;
}

.k12-highlight {
  color: var(--pms-primary);
}

.k12-sub-title {
  font-size: 17px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 14px;
}

.k12-body-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 26px;
}

.k12-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-k12-primary {
  padding: 12px 22px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 13px;
  background: var(--pms-primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-k12-primary:hover {
  background: var(--pms-primary-hover);
}

.btn-k12-outline {
  padding: 12px 22px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 13px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #1e293b;
}

.btn-k12-outline:hover {
  background: #f8fafc;
}

.classroom-visual-frame {
  position: relative;
  border-radius: 18px;
}

.classroom-main-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 14px 30px -5px rgba(15, 23, 42, 0.15);
}

.floating-k12-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 7px 12px;
  border-radius: 12px;
  box-shadow: 0 8px 20px -3px rgba(15, 23, 42, 0.14);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.badge-engaging {
  top: 15px;
  left: -12px;
}

.badge-results {
  bottom: 20px;
  right: -12px;
}

.badge-icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.badge-icon-circle.green { background: #dcfce7; }
.badge-icon-circle.blue { background: #dbeafe; }

.badge-text-group {
  display: flex;
  flex-direction: column;
}

.badge-text-group strong {
  font-size: 11px;
  color: #0f172a;
}

.badge-text-group span {
  font-size: 10px;
  color: #64748b;
}

/* ==========================================================================
   8. K12 ECOSYSTEM (3 CONNECTED CARDS)
   ========================================================================== */
.pms-k12-ecosystem-section {
  padding: 60px 0;
  background: #f8fafc;
}

.ecosystem-horizontal-wrap {
  margin-top: 26px;
}

.ecosystem-cards-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 991px) {
  .ecosystem-cards-row {
    flex-direction: column;
    gap: 18px;
  }
}

.ecosystem-step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px;
  flex: 1;
  max-width: 310px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ecosystem-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.09);
}

.ecosystem-node-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bg-blue-light { background-color: #edf5ff; color: #1b68f4; }
.bg-pink-light { background-color: #fdf2f8; color: #db2777; }
.bg-green-light { background-color: #f0fdf4; color: #16a34a; }
.bg-sky-light { background-color: #f0f9ff; color: #0284c7; }

.node-target-label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  display: block;
  margin-bottom: 3px;
}

.node-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 5px;
}

.node-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.45;
}

.ecosystem-connector-line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 2px;
  border-top: 2px dashed #93c5fd;
  position: relative;
}

@media (max-width: 991px) {
  .ecosystem-connector-line {
    width: 2px;
    height: 26px;
    border-top: none;
    border-left: 2px dashed #93c5fd;
  }
}

.connector-dot {
  width: 7px;
  height: 7px;
  background: var(--pms-primary);
  border-radius: 50%;
  position: absolute;
}

/* ==========================================================================
   9. K12STUDENT APP SHOWCASE SECTION
   ========================================================================== */
.pms-k12student-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.k12student-showcase-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  border-radius: 22px;
  padding: 44px;
}

@media (max-width: 768px) {
  .k12student-showcase-card {
    padding: 22px;
  }
}

.k12student-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 991px) {
  .k12student-grid {
    grid-template-columns: 1fr;
  }
}

.badge-student-pill {
  display: inline-block;
  background-color: #ffffff;
  color: #0284c7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 9999px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
  margin-bottom: 12px;
}

.student-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  font-family: var(--pms-font-heading);
  margin-bottom: 14px;
}

.student-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 26px;
  max-width: 460px;
}

.platform-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-badge-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 11px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-badge-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.store-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.android-icon { color: #16a34a; }
.win-icon { color: #0284c7; }
.pwa-icon { color: #6366f1; }

.store-meta {
  display: flex;
  flex-direction: column;
}

.store-sub {
  font-size: 8px;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 700;
}

.store-name {
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
}

/* Device Mockup Stage on Right */
.student-device-stage {
  position: relative;
  display: flex;
  justify-content: center;
}

.platform-mini-badges {
  position: absolute;
  top: -12px;
  right: 15px;
  display: flex;
  gap: 6px;
  z-index: 10;
}

.p-mini-tag {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.handwritten-callout {
  position: absolute;
  top: 15px;
  right: -15px;
  background: #ffffff;
  padding: 4px 9px;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 700;
  color: #0284c7;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transform: rotate(4deg);
  z-index: 12;
}

.student-device-group {
  position: relative;
  width: 100%;
  max-width: 340px;
}

.student-laptop-view {
  background: #0f172a;
  border-radius: 12px;
  padding: 7px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.laptop-screen-simple {
  background: #1e293b;
  border-radius: 7px;
  padding: 10px;
  min-height: 160px;
}

.app-ui-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.app-ui-logo {
  font-size: 11px;
  font-weight: 800;
  color: #38bdf8;
}

.app-ui-menu {
  display: flex;
  gap: 3px;
}

.app-ui-menu span {
  width: 14px;
  height: 2px;
  background: #64748b;
  border-radius: 2px;
}

.subject-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.chip-box {
  background: #334155;
  color: #ffffff;
  padding: 7px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
}

.student-phone-view {
  position: absolute;
  left: -15px;
  bottom: -10px;
  width: 110px;
  background: #020617;
  border: 2px solid #334155;
  border-radius: 16px;
  padding: 5px;
  box-shadow: 0 14px 22px rgba(0, 0, 0, 0.3);
}

.phone-screen-simple {
  background: #0f172a;
  border-radius: 11px;
  padding: 7px;
  color: #ffffff;
  min-height: 110px;
}

.phone-logo {
  font-size: 8px;
  font-weight: 800;
  color: #38bdf8;
  display: block;
  margin-bottom: 5px;
}

.phone-card-mini {
  background: #1e293b;
  padding: 5px;
  border-radius: 4px;
}

.phone-card-mini strong {
  font-size: 8px;
  color: #ffffff;
  display: block;
}

.phone-card-mini p {
  font-size: 7px;
  color: #94a3b8;
}

/* ==========================================================================
   10. MORE PRODUCTS: 2-COLUMN WIDE HORIZONTAL CARDS
   ========================================================================== */
.pms-products-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.products-2col-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .products-2col-grid {
    grid-template-columns: 1fr;
  }
}

.product-horizontal-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-horizontal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.09);
  border-color: #93c5fd;
}

.product-card-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
}

.product-desc {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 5px;
}

.product-explore-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--pms-primary);
}

.product-card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.chevron-circle {
  font-size: 22px;
  color: #94a3b8;
  transition: transform 0.2s ease, color 0.2s ease;
}

.product-horizontal-card:hover .chevron-circle {
  color: var(--pms-primary);
  transform: translateX(4px);
}

/* ==========================================================================
   11. FEATURED WORK / PORTFOLIO: 5-COLUMN GRID
   ========================================================================== */
.pms-portfolio-section {
  padding: 60px 0;
  background-color: #f8fafc;
}

.portfolio-5col-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

@media (max-width: 1100px) {
  .portfolio-5col-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .portfolio-5col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .portfolio-5col-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-card-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px -4px rgba(15, 23, 42, 0.11);
}

.portfolio-thumb-wrap {
  position: relative;
  height: 130px;
  overflow: hidden;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card-item:hover .portfolio-img {
  transform: scale(1.06);
}

.portfolio-card-info {
  padding: 12px;
}

.portfolio-item-title {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.portfolio-item-category {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}

/* ==========================================================================
   12. INDUSTRIES: 8-COLUMN GRID
   ========================================================================== */
.pms-industries-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.industries-8col-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}

@media (max-width: 1100px) {
  .industries-8col-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .industries-8col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.industry-badge-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.industry-badge-card:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.07);
}

.industry-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-label {
  font-size: 11px;
  font-weight: 700;
  color: #1e293b;
}

/* ==========================================================================
   13. TESTIMONIALS SECTION
   ========================================================================== */
.pms-testimonials-section {
  padding: 60px 0;
  background-color: #f8fafc;
}

.testimonials-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #475569;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.t-nav-btn:hover {
  background: var(--pms-primary);
  color: #ffffff;
  border-color: var(--pms-primary);
}

@media (max-width: 640px) {
  .t-nav-btn {
    display: none;
  }
}

.testimonials-2col-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  flex: 1;
}

@media (max-width: 768px) {
  .testimonials-2col-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card-clean {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 6px 20px -2px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote-text {
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.t-author-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--pms-primary);
  font-weight: 800;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #bfdbfe;
}

.t-author-name {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.t-author-role {
  font-size: 11px;
  color: #64748b;
}

/* ==========================================================================
   14. CALL TO ACTION (CTA) BANNER SECTION
   ========================================================================== */
.pms-cta-section {
  padding: 50px 0 70px 0;
  background-color: #ffffff;
}

.cta-banner-card {
  background: linear-gradient(135deg, #1e60f2 0%, #3b82f6 45%, #7c3aed 100%);
  border-radius: 26px;
  padding: 44px 36px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  box-shadow: 0 22px 45px -10px rgba(30, 96, 242, 0.4);
}

@media (max-width: 991px) {
  .cta-banner-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 20px;
  }
}

.cta-airplane-graphic {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .cta-airplane-graphic {
    display: none;
  }
}

.cta-center-content {
  max-width: 520px;
}

@media (max-width: 991px) {
  .cta-center-content {
    margin: 0 auto;
  }
}

.cta-eyebrow-pill {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.cta-main-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  font-family: var(--pms-font-heading);
  margin-bottom: 10px;
}

.cta-sub-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 22px;
}

.cta-buttons-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

@media (max-width: 991px) {
  .cta-buttons-row {
    justify-content: center;
  }
}

.btn-cta-primary {
  background: #0f172a;
  color: #ffffff;
  padding: 11px 24px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn-cta-primary:hover {
  background: #1e293b;
  color: #ffffff;
}

.btn-cta-whatsapp {
  background: #ffffff;
  color: #15803d;
  padding: 11px 22px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-cta-whatsapp:hover {
  background: #f0fdf4;
  color: #166534;
}

.cta-right-script {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--pms-font-heading);
  line-height: 1.3;
}

@media (max-width: 991px) {
  .cta-right-script {
    display: none;
  }
}

/* ==========================================================================
   15. FOOTER (5-COLUMN CLEAN LAYOUT)
   ========================================================================== */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--pms-border-color);
}

.footer-top {
  padding: 56px 0 40px;
}

.footer-grid-5col {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr 1.6fr;
  gap: 30px;
}

@media (max-width: 991px) {
  .footer-grid-5col {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-grid-5col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.footer-links, .footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #64748b;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--pms-primary);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
}

.footer-social-circles {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.social-circle-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f1f5f9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-circle-link:hover {
  background-color: var(--pms-primary);
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid var(--pms-border-color);
  padding: 20px 0;
  font-size: 12px;
  color: #64748b;
}

.footer-bottom-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

@media (min-width: 768px) {
  .footer-bottom-container {
    flex-direction: row;
  }
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal a {
  color: #64748b;
}

.footer-legal a:hover {
  color: var(--pms-primary);
}

.legal-sep {
  color: #cbd5e1;
}

/* ==========================================================================
   16. K12STUDENT LANDING PAGE & REAL APP SHOWCASE
   ========================================================================== */
.k12student-page-wrapper {
  background-color: #fafcff;
  overflow-x: hidden;
}

/* --- Hero Section --- */
.k12student-hero-section {
  position: relative;
  padding: 70px 0 80px;
  background: radial-gradient(circle at 80% 20%, rgba(27, 104, 244, 0.08) 0%, rgba(255, 255, 255, 0) 60%),
              radial-gradient(circle at 10% 80%, rgba(56, 189, 248, 0.06) 0%, rgba(255, 255, 255, 0) 50%);
  border-bottom: 1px solid var(--pms-border-color);
}

.k12student-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 991px) {
  .k12student-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.k12student-app-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .k12student-app-badge-wrap {
    justify-content: center;
  }
}

.k12student-mascot-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(27, 104, 244, 0.2);
  object-fit: cover;
  background: #ffffff;
  border: 1px solid #bfdbfe;
}

.k12student-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--pms-text-main);
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .k12student-hero-title {
    font-size: 2.2rem;
  }
}

.text-highlight-blue {
  color: var(--pms-primary);
  background: linear-gradient(135deg, #1b68f4 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.k12student-hero-desc {
  font-size: 1.05rem;
  color: var(--pms-text-muted);
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 540px;
}

@media (max-width: 991px) {
  .k12student-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Store Action Buttons */
.k12student-store-buttons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

@media (max-width: 991px) {
  .k12student-store-buttons-grid {
    justify-content: center;
  }
}

.btn-store-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid #1e293b;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-store-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -3px rgba(15, 23, 42, 0.25);
  color: #ffffff;
}

.btn-store-pill.btn-playstore:hover {
  background: #020617;
  border-color: #22c55e;
}

.btn-store-pill.btn-windows:hover {
  background: #020617;
  border-color: #38bdf8;
}

.btn-store-pill.btn-pwa:hover {
  background: #020617;
  border-color: #818cf8;
}

.store-svg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-btn-text .store-sub {
  font-size: 9px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-btn-text .store-head {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

/* Trust Stats */
.k12student-trust-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

@media (max-width: 991px) {
  .k12student-trust-stats {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .k12student-trust-stats {
    flex-direction: column;
    gap: 12px;
  }
  .k12student-trust-stats .trust-sep {
    display: none;
  }
}

.trust-stat-item {
  display: flex;
  flex-direction: column;
}

.trust-star {
  font-size: 17px;
  font-weight: 800;
  color: #f59e0b;
}

.trust-num {
  font-size: 17px;
  font-weight: 800;
  color: var(--pms-text-main);
}

.trust-label {
  font-size: 11px;
  color: var(--pms-text-muted);
  font-weight: 500;
}

.trust-sep {
  width: 1px;
  height: 28px;
  background: var(--pms-border-color);
}

/* --- Hero Dual Smartphone Showcase --- */
.k12student-hero-mockup-col {
  display: flex;
  justify-content: center;
  position: relative;
}

.k12student-dual-phone-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup-frame {
  position: absolute;
  width: 240px;
  background: #0f172a;
  border: 7px solid #1e293b;
  border-radius: 36px;
  box-shadow: 0 24px 48px -8px rgba(15, 23, 42, 0.35),
              0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-hardware-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 12px;
  background: #0f172a;
  border-radius: 9999px;
  z-index: 10;
}

.phone-back-frame {
  left: 20px;
  top: 30px;
  transform: rotate(-6deg) scale(0.95);
  z-index: 1;
  opacity: 0.92;
}

.phone-back-frame:hover {
  transform: rotate(-3deg) scale(0.98);
}

.phone-front-frame {
  right: 20px;
  top: 50px;
  transform: rotate(3deg);
  z-index: 2;
  box-shadow: 0 30px 60px -10px rgba(15, 23, 42, 0.45);
}

.phone-front-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

.real-phone-screen-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating Badges */
.floating-app-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 28px -4px rgba(15, 23, 42, 0.14);
  z-index: 5;
}

.fab-1 {
  left: -15px;
  bottom: 80px;
}

.fab-2 {
  right: -10px;
  top: 40px;
}

.fab-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.bg-green-50 { background-color: #ecfdf5; }
.text-green-600 { color: #16a34a; }
.bg-blue-50 { background-color: #eff6ff; }
.text-blue-600 { color: #2563eb; }
.bg-sky-50 { background-color: #f0f9ff; }
.text-sky-600 { color: #0284c7; }
.bg-indigo-50 { background-color: #eef2ff; }
.text-indigo-600 { color: #4f46e5; }

.fab-text {
  display: flex;
  flex-direction: column;
}

.fab-text strong {
  font-size: 12px;
  color: var(--pms-text-main);
  line-height: 1.2;
}

.fab-text span {
  font-size: 10px;
  color: var(--pms-text-muted);
}

@keyframes animFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes animBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.anim-float {
  animation: animFloat 4s ease-in-out infinite;
}

.anim-bob {
  animation: animBob 4.5s ease-in-out infinite;
}

/* --- 2. Real Screenshots Feature Walkthrough --- */
.k12student-screens-section {
  padding: 90px 0;
  background: #ffffff;
}

.screens-3col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .screens-3col-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

.app-screen-card {
  background: #ffffff;
  border: 1px solid var(--pms-border-color);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.app-screen-card:hover {
  transform: translateY(-6px);
  border-color: #93c5fd;
  box-shadow: 0 20px 40px -8px rgba(27, 104, 244, 0.12);
}

.screen-frame-container {
  background: #f8fafc;
  border-radius: 14px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  margin-bottom: 22px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.app-screen-showcase-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
  display: block;
}

.screen-card-info {
  position: relative;
  padding-top: 8px;
}

.screen-num-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--pms-primary);
  background: var(--pms-primary-light);
  padding: 3px 9px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.screen-feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pms-text-main);
  margin-bottom: 8px;
  line-height: 1.3;
}

.screen-feature-desc {
  font-size: 13.5px;
  color: var(--pms-text-muted);
  line-height: 1.55;
}

/* --- 3. Tri-Platform Section --- */
.k12student-platforms-section {
  padding: 90px 0;
  background: #f8fafc;
  border-top: 1px solid var(--pms-border-color);
  border-bottom: 1px solid var(--pms-border-color);
}

.platforms-3col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .platforms-3col-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.platform-card {
  background: #ffffff;
  border: 1px solid var(--pms-border-color);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.platform-card:hover {
  transform: translateY(-6px);
  border-color: #93c5fd;
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.1);
}

.platform-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.platform-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--pms-text-main);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.platform-desc {
  font-size: 14px;
  color: var(--pms-text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.platform-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.platform-checklist li {
  font-size: 13px;
  color: #334155;
  line-height: 1.45;
}

.btn-block {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* --- 4. CTA Banner Section --- */
.k12student-cta-section {
  padding: 80px 0;
  background: #ffffff;
}

.cta-mascot-img {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 16px;
}

/* ==========================================================================
   17. GLOBAL TEMPLATE UTILITY & GRID SYSTEM (100% PURE NATIVE CSS)
   ========================================================================== */
.py-section {
  padding: 80px 0;
}

.py-section-sm {
  padding: 50px 0;
}

.bg-gradient-subtle {
  background: radial-gradient(circle at 85% 15%, rgba(27, 104, 244, 0.07) 0%, rgba(255, 255, 255, 0) 60%),
              radial-gradient(circle at 15% 85%, rgba(56, 189, 248, 0.05) 0%, rgba(255, 255, 255, 0) 50%),
              #fafcff;
}

.bg-alt {
  background-color: #f8fafc;
}

.bg-primary-light {
  background-color: #eff6ff;
}

.bg-secondary-light {
  background-color: #f0f9ff;
}

.text-gradient {
  color: var(--pms-primary);
  background: linear-gradient(135deg, #1b68f4 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hover-lift {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -4px rgba(15, 23, 42, 0.1);
}

/* Responsive Grid System */
.grid {
  display: grid;
}

.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 992px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, 1fr); }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
}

.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.gap-12 { gap: 48px; }

/* Flex Helpers */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

/* Spacing Helpers */
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }
.mb-20 { margin-bottom: 80px; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }

.p-3 { padding: 12px; }
.p-4 { padding: 16px; }
.p-6 { padding: 24px; }
.p-8 { padding: 32px; }
.p-10 { padding: 40px; }
.p-12 { padding: 48px; }
.px-3 { padding-left: 12px; padding-right: 12px; }
.py-1 { padding-top: 4px; padding-bottom: 4px; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-sm { max-width: 380px; }
.max-w-2xl { max-width: 672px; }
.max-w-3xl { max-width: 768px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Typography */
.text-xs { font-size: 12px; }
.text-sm { font-size: 13.5px; }
.text-base { font-size: 15px; }
.text-lg { font-size: 17px; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.85rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 2.85rem; }
.text-6xl { font-size: 3.5rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

.text-muted { color: var(--pms-text-muted); }
.text-main { color: var(--pms-text-main); }
.text-primary { color: var(--pms-primary); }
.text-secondary { color: var(--pms-secondary); }
.text-white { color: #ffffff; }

.leading-tight { line-height: 1.2; }
.leading-relaxed { line-height: 1.65; }

.rounded { border-radius: var(--pms-radius-sm); }
.rounded-lg { border-radius: 12px; }
.rounded-xl { border-radius: 16px; }
.rounded-2xl { border-radius: 24px; }
.rounded-full { border-radius: 9999px; }

/* ==========================================================================
   18. CONTACT US PAGE & INTERACTIVE FORM SYSTEM
   ========================================================================== */
.contact-page-wrapper {
  background-color: #fafcff;
  padding: 60px 0 90px;
}

.contact-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 36px;
  align-items: stretch;
}

@media (max-width: 991px) {
  .contact-dual-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.contact-info-col .pms-card {
  background: #ffffff;
  border: 1px solid var(--pms-border-color);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.contact-methods-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-bubble.bg-primary-light {
  background-color: #eff6ff;
  color: var(--pms-primary);
  border: 1px solid #bfdbfe;
}

.icon-bubble.bg-green-50 {
  background-color: #ecfdf5;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.icon-bubble.bg-sky-50 {
  background-color: #f0f9ff;
  color: #0284c7;
  border: 1px solid #bae6fd;
}

.icon-bubble.bg-amber-50 {
  background-color: #fffbeb;
  color: #d97706;
  border: 1px solid #fde68a;
}

.tracking-wider {
  letter-spacing: 0.06em;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Contact Form Container */
.contact-form-col .pms-card {
  background: #ffffff;
  border: 1px solid var(--pms-border-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.06);
}

@media (max-width: 640px) {
  .contact-form-col .pms-card {
    padding: 24px 18px;
  }
}

.pms-interactive-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .pms-interactive-form .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.pms-interactive-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.pms-interactive-form .form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 7px;
  display: block;
}

.pms-interactive-form .form-input,
.pms-interactive-form .form-select,
.pms-interactive-form .form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14.5px;
  font-family: inherit;
  color: #0f172a;
  background-color: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.pms-interactive-form .form-input:focus,
.pms-interactive-form .form-select:focus,
.pms-interactive-form .form-textarea:focus {
  outline: none;
  border-color: var(--pms-primary);
  background-color: #fafcff;
  box-shadow: 0 0 0 3.5px rgba(27, 104, 244, 0.15);
}

.pms-interactive-form .form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}

.pms-interactive-form .form-textarea {
  min-height: 125px;
  resize: vertical;
  line-height: 1.5;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--pms-primary);
  cursor: pointer;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
}

/* ==========================================================================
   19. K12 SMART CLASS PAGE & INTERACTIVE BOARD SHOWCASE (template-k12.php)
   ========================================================================== */
.k12-landing-page {
  background-color: #fafcff;
}

.k12-hero-section {
  padding: 70px 0 80px;
}

.k12-hero-visual {
  position: relative;
}

.k12-hero-visual .pms-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1.5px solid #bfdbfe;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px -10px rgba(27, 104, 244, 0.15);
}

.mockup-content-area {
  background: #0f172a;
  border-radius: 14px;
  padding: 36px 24px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #1e293b;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.pulse-glow-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, rgba(15, 23, 42, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.badge-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #f1f5f9;
  color: #334155;
}

.bg-green-100 { background-color: #dcfce7; }
.text-green-700 { color: #15803d; }

/* ==========================================================================
   20. SMART OLYMPIAD PAGE (template-smart-olympiad.php)
   ========================================================================== */
.smart-olympiad-page-wrapper {
  background-color: #fafcff;
}

.olympiad-hero {
  position: relative;
  padding: 80px 0 90px;
}

.floating-edu-icons-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.edu-float-item {
  position: absolute;
  font-size: 28px;
  opacity: 0.85;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.1));
  animation: floatEdu 5s ease-in-out infinite alternate;
}

.edu-trophy { animation-delay: 0s; }
.edu-atom   { animation-delay: 0.7s; }
.edu-calc   { animation-delay: 1.4s; }
.edu-rocket { animation-delay: 2.1s; }
.edu-medal  { animation-delay: 2.8s; }
.edu-book   { animation-delay: 3.5s; }
.edu-bulb   { animation-delay: 4.2s; }

@keyframes floatEdu {
  0%   { transform: translateY(0px) rotate(0deg); }
  50%  { transform: translateY(-12px) rotate(4deg); }
  100% { transform: translateY(0px) rotate(-4deg); }
}

.stat-counter-box {
  background: #ffffff;
  border: 1px solid var(--pms-border-color);
  border-radius: 16px;
  padding: 24px 16px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
}

.stat-label {
  font-size: 12px;
  color: var(--pms-text-muted);
  font-weight: 700;
  margin-top: 6px;
}

/* ==========================================================================
   21. 360° STREET VIEW PANORAMA LANDING PAGE (template-360-tour.php)
   ========================================================================== */
.pms-360-page-wrapper {
  background-color: #fafcff;
  overflow-x: hidden;
}

/* Breadcrumb Bar */
.pms-breadcrumb-bar {
  padding: 18px 0;
  border-bottom: 1px solid var(--pms-border-color);
  background-color: #ffffff;
  font-size: 13px;
}

.pms-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--pms-text-muted);
}

.pms-breadcrumbs a {
  color: var(--pms-text-muted);
}

.pms-breadcrumbs a:hover {
  color: var(--pms-primary);
}

.bc-sep {
  color: #cbd5e1;
}

.bc-current {
  color: var(--pms-text-main);
  font-weight: 600;
}

/* Hero Section */
.pms-360-hero-section {
  position: relative;
  padding: 60px 0 80px;
  background: radial-gradient(circle at 80% 20%, rgba(27, 104, 244, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(56, 189, 248, 0.06) 0%, transparent 50%),
              #ffffff;
  border-bottom: 1px solid var(--pms-border-color);
}

.pms-360-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 991px) {
  .pms-360-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.pms-360-hero-title {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--pms-text-main);
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .pms-360-hero-title {
    font-size: 2.35rem;
  }
}

.pms-360-hero-desc {
  font-size: 1.05rem;
  color: var(--pms-text-muted);
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 520px;
}

.pms-360-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.pms-360-trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pms-avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.avatar-circle:first-child {
  margin-left: 0;
}

.pms-trust-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--pms-text-muted);
}

/* Panoramic Hero Stage Mockup */
.pms-360-stage-card {
  position: relative;
}

.pms-360-rotating-badge {
  position: absolute;
  top: -18px;
  right: 20px;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.badge-360-circle {
  font-size: 15px;
  font-weight: 900;
  color: #38bdf8;
  letter-spacing: 0.05em;
}

.badge-handwritten-note {
  font-size: 12px;
  font-weight: 600;
  color: #e2e8f0;
}

.pms-pano-viewport {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px -10px rgba(15, 23, 42, 0.25);
  border: 4px solid #ffffff;
  background: #0f172a;
}

.pms-pano-scenery {
  height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pms-floating-marker {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: #0f172a;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  animation: pulsePin 2.5s infinite;
}

@keyframes pulsePin {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

.pms-streetview-controls {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sv-ctrl-btn {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.sv-ctrl-btn:hover {
  background: #ffffff;
  transform: scale(1.08);
}

.pms-pano-thumb-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.9);
}

.pms-thumb-item {
  width: 54px;
  height: 38px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.2s ease;
}

.pms-thumb-item.active,
.pms-thumb-item:hover {
  border-color: #38bdf8;
  opacity: 1;
  transform: scale(1.06);
}

/* Highlights Bar */
.pms-360-highlights-bar {
  padding: 40px 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--pms-border-color);
}

.highlights-4col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .highlights-4col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 540px) {
  .highlights-4col-grid {
    grid-template-columns: 1fr;
  }
}

.highlight-item-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 18px 20px;
  border-radius: 14px;
  transition: all 0.25s ease;
}

.highlight-item-card:hover {
  background: #ffffff;
  border-color: #bfdbfe;
  box-shadow: 0 10px 24px -4px rgba(27, 104, 244, 0.1);
  transform: translateY(-3px);
}

.highlight-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bg-pink-50 { background-color: #fdf2f8; }
.text-pink-600 { color: #db2777; }
.bg-teal-50 { background-color: #f0fdfa; }
.text-teal-600 { color: #0d9488; }
.bg-emerald-50 { background-color: #ecfdf5; }
.text-emerald-600 { color: #059669; }

.highlight-info {
  display: flex;
  flex-direction: column;
}

.highlight-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--pms-text-main);
  line-height: 1.25;
}

.highlight-sub {
  font-size: 12px;
  color: var(--pms-text-muted);
  margin-top: 3px;
}

/* Interactive Panorama Viewer Showcase Section */
.pms-360-preview-section {
  padding: 90px 0;
  background: #ffffff;
}

.pms-360-preview-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 991px) {
  .pms-360-preview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.pms-interactive-viewer-card {
  background: #0f172a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 50px -10px rgba(15, 23, 42, 0.3);
  border: 1px solid #1e293b;
}

.viewer-top-bar {
  padding: 12px 18px;
  background: #020617;
  border-bottom: 1px solid #1e293b;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.viewer-badge-tag {
  font-size: 11px;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.viewer-main-screen {
  height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.central-pano-hotspot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.central-pano-hotspot:hover {
  transform: scale(1.15);
}

.viewer-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.7);
  color: #ffffff;
  font-size: 24px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.viewer-nav-btn:hover {
  background: var(--pms-primary);
}

.nav-prev { left: 16px; }
.nav-next { right: 16px; }

.viewer-bottom-filmstrip {
  position: absolute;
  bottom: 12px;
  display: flex;
  gap: 6px;
}

.film-frame {
  width: 28px;
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s ease;
}

.film-frame.active,
.film-frame:hover {
  background: #38bdf8;
  width: 42px;
}

.pms-feature-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pms-feature-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: #334155;
  font-weight: 500;
}

.pms-feature-checklist .check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

/* Industries 6-Column Grid */
.pms-360-industries-section {
  padding: 90px 0;
  background: #f8fafc;
  border-top: 1px solid var(--pms-border-color);
  border-bottom: 1px solid var(--pms-border-color);
}

.industries-6col-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

@media (max-width: 1200px) {
  .industries-6col-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .industries-6col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 440px) {
  .industries-6col-grid {
    grid-template-columns: 1fr;
  }
}

.industry-card {
  background: #ffffff;
  border: 1px solid var(--pms-border-color);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.ind-photo {
  height: 130px;
  background-size: cover;
  background-position: center;
}

.ind-body {
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}

.ind-icon-bubble {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-top: -34px;
  margin-bottom: 10px;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ind-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--pms-text-main);
  margin-bottom: 6px;
  line-height: 1.25;
}

.ind-desc {
  font-size: 12px;
  color: var(--pms-text-muted);
  line-height: 1.5;
}

/* 3-Step Process Section */
.pms-360-process-section {
  padding: 90px 0;
  background: #ffffff;
}

.pms-process-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 991px) {
  .pms-process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.process-steps-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pms-process-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fafcff;
  border: 1px solid var(--pms-border-color);
  padding: 24px;
  border-radius: 18px;
  transition: all 0.25s ease;
}

.pms-process-card:hover {
  background: #ffffff;
  border-color: #93c5fd;
  box-shadow: 0 12px 28px -4px rgba(27, 104, 244, 0.1);
  transform: translateX(6px);
}

.step-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--pms-text-main);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 13.5px;
  color: var(--pms-text-muted);
  line-height: 1.55;
}

.gmaps-preview-card {
  background: #ffffff;
  border: 1px solid var(--pms-border-color);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 45px -8px rgba(15, 23, 42, 0.12);
  position: relative;
}

.gmaps-top-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.gmaps-body-card {
  background: #f8fafc;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #e2e8f0;
}

.biz-name {
  font-size: 16px;
  color: #0f172a;
  display: block;
}

.biz-tag {
  font-size: 12px;
  color: #0284c7;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.biz-preview-img {
  height: 180px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.gmaps-logo {
  position: absolute;
  bottom: 8px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  color: #475569;
}

.gmaps-doodle-text {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #1b68f4;
}

/* Benefits Section */
.pms-360-benefits-section {
  padding: 90px 0;
  background: #fafcff;
  border-top: 1px solid var(--pms-border-color);
}

.pms-benefits-dual-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 991px) {
  .pms-benefits-dual-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.vr-portrait-wrap {
  height: 440px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.2);
  border: 4px solid #ffffff;
}

.vr-floating-doodle {
  position: absolute;
  bottom: 24px;
  right: -15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.vr-floating-doodle strong {
  font-size: 13px;
  color: #0f172a;
}

.vr-floating-doodle span {
  font-size: 11px;
  color: var(--pms-primary);
  font-weight: 700;
}

.benefits-2x3-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 640px) {
  .benefits-2x3-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-tile {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border: 1px solid var(--pms-border-color);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  transition: all 0.25s ease;
}

.benefit-tile:hover {
  border-color: #93c5fd;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -4px rgba(27, 104, 244, 0.09);
}

.b-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.b-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--pms-text-main);
  display: block;
  line-height: 1.3;
}

.b-desc {
  font-size: 12px;
  color: var(--pms-text-muted);
  display: block;
  margin-top: 3px;
}

/* Testimonials */
.pms-360-testimonials-section {
  padding: 90px 0;
  background: #ffffff;
}

.testimonials-3col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 991px) {
  .testimonials-3col-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.pms-testimonial-card {
  background: #ffffff;
  border: 1px solid var(--pms-border-color);
  border-radius: 20px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px -2px rgba(15, 23, 42, 0.04);
}

.t-quote {
  font-size: 14.5px;
  color: #334155;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
}

.t-client-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-name {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  display: block;
}

.t-role {
  font-size: 12px;
  color: var(--pms-text-muted);
}

/* Bottom CTA Banner */
.pms-360-cta-section {
  padding: 80px 0;
  background: #fafcff;
}

.pms-360-cta-banner {
  background: linear-gradient(135deg, #1e60f2 0%, #3b82f6 50%, #8b5cf6 100%);
  border-radius: 28px;
  padding: 50px 44px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 50px -10px rgba(30, 96, 242, 0.4);
}

@media (max-width: 991px) {
  .pms-360-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }
}

.camera-3d-glyph {
  font-size: 52px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.cta-headline {
  font-size: 2.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 991px) {
  .cta-banner-actions {
    justify-content: center;
  }
}

.btn-cta-white {
  background: #ffffff;
  color: #1e40af;
  padding: 12px 26px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}

.btn-cta-white:hover {
  background: #f8fafc;
  color: #1e3a8a;
  transform: translateY(-2px);
}

.btn-cta-green {
  background: #10b981;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
  transition: all 0.25s ease;
}

.btn-cta-green:hover {
  background: #059669;
  color: #ffffff;
  transform: translateY(-2px);
}

.cta-banner-doodle {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

@media (max-width: 991px) {
  .cta-banner-doodle {
    display: none;
  }
}

/* ==========================================================================
   MASTER RESPONSIVE STYLES (MOBILE & TABLET OPTIMIZATIONS)
   ========================================================================== */

/* Prevent horizontal overflow on small devices */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Responsive Containers */
@media (max-width: 991px) {
  .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* 1. Header & Navigation */
@media (max-width: 576px) {
  .site-header .header-container {
    height: 64px;
  }
  .brand-name {
    font-size: 15px;
  }
  .brand-tagline {
    display: none;
  }
  .btn-talk-pill {
    padding: 8px 14px;
    font-size: 12px;
  }
  .header-actions {
    gap: 8px;
  }
}

/* 2. Hero Section */
@media (max-width: 991px) {
  .pms-hero-section {
    padding: 30px 0 50px 0;
  }
  .hero-2col-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-left-content {
    text-align: center;
  }
  .hero-badge-pill {
    margin: 0 auto 16px auto;
  }
  .hero-main-title {
    font-size: 2.25rem;
  }
  .hero-sub-description {
    margin: 0 auto 24px auto;
    font-size: 15px;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-stage-mockup {
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .hero-main-title {
    font-size: 1.85rem;
    line-height: 1.2;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn-pms-primary,
  .hero-cta-group .btn-pms-outline {
    width: 100%;
    justify-content: center;
  }
  .floating-icon {
    display: none; /* Hide floating decorative icons on very small screens to avoid clutter */
  }
}

/* 3. Stats Section */
@media (max-width: 991px) {
  .stats-floating-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 24px;
    transform: translateY(0);
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .stats-floating-bar {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 16px;
  }
  .stat-card-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
  }
}

/* 4. Services Grid */
@media (max-width: 1100px) {
  .services-5col-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-5col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .section-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .services-5col-grid {
    grid-template-columns: 1fr;
  }
  .section-heading {
    font-size: 1.75rem;
  }
}

/* 5. Product Showcases (K12, K12Student, Olympiad) */
@media (max-width: 991px) {
  .k12-grid,
  .k12student-grid,
  .olympiad-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .k12-main-title,
  .k12student-main-title,
  .olympiad-main-title {
    font-size: 2rem;
  }
  .k12-card-left,
  .k12student-card-left,
  .olympiad-card-left {
    text-align: center;
  }
  .k12-badge-pill,
  .k12student-badge-pill,
  .olympiad-badge-pill {
    margin: 0 auto 12px auto;
  }
  .k12-features-list,
  .k12student-features-list {
    text-align: left;
    max-width: 480px;
    margin: 0 auto 24px auto;
  }
  .app-download-badges {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .k12-featured-card,
  .k12student-featured-card,
  .olympiad-featured-card {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .k12-main-title,
  .k12student-main-title,
  .olympiad-main-title {
    font-size: 1.65rem;
  }
}

/* 6. Products Grid & Virtual Tours */
@media (max-width: 991px) {
  .products-grid,
  .tours-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .products-grid,
  .tours-showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* 7. Industries We Serve (8-Column Grid) */
@media (max-width: 1100px) {
  .industries-8col-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 650px) {
  .industries-8col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .industry-card-micro {
    padding: 16px 12px;
  }
}

/* 8. Testimonials (2-Column Grid) */
@media (max-width: 768px) {
  .testimonials-2col-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* 9. Bottom CTA Banner */
@media (max-width: 768px) {
  .cta-banner-card {
    padding: 36px 20px;
    border-radius: 18px;
    text-align: center;
  }
  .cta-banner-title {
    font-size: 1.75rem;
  }
  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-banner-actions .btn-pms-white,
  .cta-banner-actions .btn-pms-green {
    width: 100%;
    justify-content: center;
  }
}

/* 10. Site Footer */
@media (max-width: 991px) {
  .footer-widgets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .footer-widgets-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .site-footer {
    padding: 40px 0 20px 0;
  }
  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
