/*
Theme Name: LogisticsPro
Theme URI: https://easyaccurate.com/logisticspro/
Author: EasyAccurate
Author URI: https://easyaccurate.com
Description: A bold, professional WordPress theme for freight, transport, supply chain, and fleet management companies. Features a deep navy and amber color palette, hero section with stats bar, services grid, fleet showcase, process steps, testimonials, and a blog. Fully Customizer-driven with live preview for colors, fonts, and content. Use the optional separate LogisticsPro Companion plugin to enable Services, Fleet, Testimonials, and Projects post types.
Version: 1.0.4
Requires at least: 6.0
Requires PHP: 8.0
Tested up to: 6.9
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: logisticspro
Tags: blog, two-columns, right-sidebar, custom-colors, custom-logo, custom-menu, custom-background, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, wide-blocks, block-styles
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --lp-primary:        #1A2B4A;   /* Deep Navy */
  --lp-secondary:      #F28C28;   /* Bold Amber / Orange */
  --lp-accent:         #0D9488;   /* Teal */
  --lp-dark:           #0F172A;
  --lp-mid:            #1E3A5F;
  --lp-light:          #F1F5F9;
  --lp-white:          #FFFFFF;
  --lp-muted:          #64748B;
  --lp-border:         #CBD5E1;
  --lp-success:        #22C55E;
  --lp-warning:        #F59E0B;
  --lp-danger:         #EF4444;

  /* Typography */
  --lp-font-sans:      'Inter', 'Segoe UI', system-ui, sans-serif;
  --lp-font-display:   'Barlow Condensed', 'Impact', sans-serif;
  --lp-font-mono:      'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --lp-gap-xs:   0.5rem;
  --lp-gap-sm:   1rem;
  --lp-gap-md:   2rem;
  --lp-gap-lg:   4rem;
  --lp-gap-xl:   6rem;

  /* Radii */
  --lp-radius-sm: 4px;
  --lp-radius-md: 8px;
  --lp-radius-lg: 16px;
  --lp-radius-xl: 24px;

  /* Shadows */
  --lp-shadow-sm:   0 1px 3px rgba(0,0,0,.12);
  --lp-shadow-md:   0 4px 16px rgba(0,0,0,.14);
  --lp-shadow-lg:   0 8px 32px rgba(0,0,0,.18);
  --lp-shadow-card: 0 2px 12px rgba(15,23,42,.08);

  /* Transitions */
  --lp-ease: cubic-bezier(.4,0,.2,1);
  --lp-fast: 150ms var(--lp-ease);
  --lp-med:  300ms var(--lp-ease);
  --lp-slow: 500ms var(--lp-ease);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--lp-font-sans);
  color: var(--lp-dark);
  background: var(--lp-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--lp-font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--lp-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lp-secondary);
  margin-bottom: var(--lp-gap-sm);
}
.lp-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--lp-secondary);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.lp-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.lp-container--wide  { max-width: 1440px; }
.lp-container--narrow { max-width: 960px; }

.lp-section {
  padding: var(--lp-gap-xl) 0;
}
.lp-section--sm { padding: var(--lp-gap-lg) 0; }

.lp-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--lp-gap-md); }
.lp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--lp-gap-md); }
.lp-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--lp-gap-md); }

.lp-flex       { display: flex; }
.lp-flex-center { display: flex; align-items: center; justify-content: center; }
.lp-flex-between { display: flex; align-items: center; justify-content: space-between; }

.lp-text-center { text-align: center; }
.lp-text-white  { color: var(--lp-white); }
.lp-text-muted  { color: var(--lp-muted); }

.lp-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  border-radius: var(--lp-radius-sm);
  transition: all var(--lp-med);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.lp-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.1);
  opacity: 0;
  transition: opacity var(--lp-fast);
}
.lp-btn:hover::after { opacity: 1; }

.lp-btn--primary {
  background: var(--lp-secondary);
  color: var(--lp-white);
  box-shadow: 0 4px 16px rgba(242,140,40,.35);
}
.lp-btn--primary:hover {
  background: #d97c20;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(242,140,40,.45);
}

.lp-btn--outline {
  background: transparent;
  color: var(--lp-white);
  border: 2px solid rgba(255,255,255,.5);
}
.lp-btn--outline:hover {
  border-color: var(--lp-white);
  background: rgba(255,255,255,.1);
}

.lp-btn--dark {
  background: var(--lp-primary);
  color: var(--lp-white);
}
.lp-btn--dark:hover {
  background: var(--lp-mid);
}

.lp-btn--lg { padding: 1.1rem 2.8rem; font-size: 1.05rem; }
.lp-btn--sm { padding: .55rem 1.4rem; font-size: .85rem; }

/* ============================================================
   BADGE / PILL
   ============================================================ */
.lp-badge {
  display: inline-block;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--lp-secondary);
  color: var(--lp-white);
}
.lp-badge--success { background: var(--lp-success); }
.lp-badge--warning { background: var(--lp-warning); color: var(--lp-dark); }
.lp-badge--danger  { background: var(--lp-danger); }
.lp-badge--teal    { background: var(--lp-accent); }

/* ============================================================
   CARDS
   ============================================================ */
.lp-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: var(--lp-gap-md);
  box-shadow: var(--lp-shadow-card);
  transition: all var(--lp-med);
}
.lp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-card--dark {
  background: var(--lp-primary);
  border-color: var(--lp-mid);
  color: var(--lp-white);
}

/* ============================================================
   HEADER
   ============================================================ */
#lp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--lp-med);
}

.lp-header-topbar {
  background: var(--lp-dark);
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  padding: .45rem 0;
}
.lp-header-topbar a { color: rgba(255,255,255,.7); transition: color var(--lp-fast); }
.lp-header-topbar a:hover { color: var(--lp-secondary); }

.lp-header-main {
  background: var(--lp-primary);
  padding: 1rem 0;
}

#lp-header.scrolled .lp-header-topbar { display: none; }
#lp-header.scrolled .lp-header-main {
  padding: .65rem 0;
  box-shadow: var(--lp-shadow-md);
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--lp-font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--lp-white);
  letter-spacing: -.02em;
}
.lp-logo-icon {
  width: 42px; height: 42px;
  background: var(--lp-secondary);
  border-radius: var(--lp-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-logo span { color: var(--lp-secondary); }

/* NAV */
.lp-nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.lp-nav a {
  display: block;
  padding: .5rem .9rem;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  border-radius: var(--lp-radius-sm);
  transition: all var(--lp-fast);
  position: relative;
}
.lp-nav a:hover, .lp-nav a.active {
  color: var(--lp-secondary);
  background: rgba(255,255,255,.07);
}

/* DROPDOWN */
.lp-nav .has-dropdown { position: relative; }
.lp-nav .dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 220px;
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-md);
  box-shadow: var(--lp-shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all var(--lp-fast);
  z-index: 100;
}
.lp-nav .has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.lp-nav .dropdown a {
  color: var(--lp-dark);
  border-radius: 0;
  padding: .65rem 1.2rem;
  font-size: .875rem;
  border-bottom: 1px solid var(--lp-border);
}
.lp-nav .dropdown a:last-child { border-bottom: none; }
.lp-nav .dropdown a:hover {
  background: var(--lp-light);
  color: var(--lp-secondary);
}

/* HAMBURGER */
.lp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
}
.lp-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--lp-white);
  border-radius: 2px;
  transition: all var(--lp-med);
}
.lp-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.lp-hamburger.active span:nth-child(2) { opacity: 0; }
.lp-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* MOBILE NAV */
.lp-mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--lp-dark);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: .5rem;
  overflow-y: auto;
}
.lp-mobile-nav.open { display: flex; }
.lp-mobile-nav a {
  color: var(--lp-white);
  font-size: 1.2rem;
  font-weight: 600;
  padding: .9rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* ============================================================
   HERO
   ============================================================ */
.lp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--lp-primary);
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--lp-dark) 0%, var(--lp-primary) 50%, var(--lp-mid) 100%);
}
.lp-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.lp-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(242,140,40,.15);
  border: 1px solid rgba(242,140,40,.3);
  color: var(--lp-secondary);
  padding: .4rem 1.1rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.lp-hero h1 {
  color: var(--lp-white);
  margin-bottom: 1.5rem;
  max-width: 750px;
}
.lp-hero h1 em {
  font-style: normal;
  color: var(--lp-secondary);
}

.lp-hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

/* HERO STATS */
.lp-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.lp-hero-stat-value {
  font-family: var(--lp-font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--lp-secondary);
  line-height: 1;
}
.lp-hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .2rem;
}

/* HERO SCROLL */
.lp-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: lp-bounce 2s infinite;
}

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

/* TRACKING WIDGET */
.lp-tracking-widget {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--lp-radius-xl);
  padding: 2rem;
  color: var(--lp-white);
}
.lp-tracking-widget h3 { color: var(--lp-white); margin-bottom: 1.25rem; font-size: 1.1rem; }
.lp-tracking-input {
  display: flex;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.lp-tracking-input input {
  flex: 1;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--lp-white);
  padding: .75rem 1rem;
  border-radius: var(--lp-radius-sm);
  transition: border-color var(--lp-fast);
}
.lp-tracking-input input::placeholder { color: rgba(255,255,255,.4); }
.lp-tracking-input input:focus {
  outline: none;
  border-color: var(--lp-secondary);
}

.lp-tracking-steps {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.lp-tracking-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.lp-tracking-step-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
}
.lp-tracking-step.done .lp-tracking-step-dot {
  background: var(--lp-success);
}
.lp-tracking-step.active .lp-tracking-step-dot {
  background: var(--lp-secondary);
  animation: lp-pulse 1.5s infinite;
}
@keyframes lp-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(242,140,40,.4); }
  50% { box-shadow: 0 0 0 8px rgba(242,140,40,0); }
}
.lp-tracking-step-text { font-size: .85rem; }
.lp-tracking-step-label { font-weight: 600; }
.lp-tracking-step-time { color: rgba(255,255,255,.5); font-size: .77rem; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.lp-trust-bar {
  background: var(--lp-dark);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.lp-trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: lp-scroll 30s linear infinite;
  white-space: nowrap;
}
@keyframes lp-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.lp-trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.4);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.lp-trust-item-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lp-secondary);
}

/* ============================================================
   SERVICES
   ============================================================ */
.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.lp-service-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 2rem;
  transition: all var(--lp-med);
  position: relative;
  overflow: hidden;
}
.lp-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--lp-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--lp-med);
}
.lp-service-card:hover::before { transform: scaleX(1); }
.lp-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-service-icon {
  width: 60px; height: 60px;
  background: rgba(242,140,40,.1);
  border-radius: var(--lp-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}
.lp-service-card h3 {
  font-size: 1.2rem;
  margin-bottom: .6rem;
  color: var(--lp-primary);
}
.lp-service-card p {
  color: var(--lp-muted);
  font-size: .9rem;
  line-height: 1.65;
}
.lp-service-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1.25rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--lp-secondary);
  transition: gap var(--lp-fast);
}
.lp-service-link:hover { gap: .6rem; }

/* ============================================================
   ABOUT / WHY US
   ============================================================ */
.lp-about-section { background: var(--lp-light); }

.lp-about-visual {
  position: relative;
  border-radius: var(--lp-radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--lp-primary);
}
.lp-about-visual-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .7;
}
.lp-about-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,43,74,.6), transparent);
}
.lp-about-stat-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--lp-white);
  border-radius: var(--lp-radius-lg);
  padding: 1rem 1.5rem;
  box-shadow: var(--lp-shadow-lg);
  text-align: center;
}
.lp-about-stat-badge strong {
  display: block;
  font-family: var(--lp-font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lp-secondary);
}
.lp-about-stat-badge span { font-size: .8rem; color: var(--lp-muted); font-weight: 600; }

.lp-checklist {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin: 1.5rem 0;
}
.lp-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}
.lp-checklist-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(242,140,40,.15);
  color: var(--lp-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.lp-checklist-item p { font-size: .9rem; color: var(--lp-muted); margin: 0; }

/* ============================================================
   FLEET SHOWCASE
   ============================================================ */
.lp-fleet-section { background: var(--lp-dark); color: var(--lp-white); }
.lp-fleet-section h2 { color: var(--lp-white); }

.lp-fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.lp-fleet-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  transition: all var(--lp-med);
}
.lp-fleet-card:hover {
  border-color: rgba(242,140,40,.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(242,140,40,.12);
}
.lp-fleet-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--lp-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.lp-fleet-info { padding: 1.25rem; }
.lp-fleet-info h4 { color: var(--lp-white); margin-bottom: .25rem; }
.lp-fleet-info p { color: rgba(255,255,255,.5); font-size: .85rem; margin: 0; }
.lp-fleet-specs {
  display: flex;
  gap: 1rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}
.lp-fleet-spec {
  font-size: .75rem;
  color: var(--lp-secondary);
  font-weight: 700;
  background: rgba(242,140,40,.1);
  padding: .2rem .65rem;
  border-radius: 999px;
}

/* ============================================================
   STATS COUNTER SECTION
   ============================================================ */
.lp-stats-section {
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-mid));
  color: var(--lp-white);
  padding: var(--lp-gap-lg) 0;
}
.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.lp-stat-value {
  font-family: var(--lp-font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--lp-secondary);
  line-height: 1;
  margin-bottom: .5rem;
}
.lp-stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

/* ============================================================
   QUOTE / CTA SECTION
   ============================================================ */
.lp-quote-section {
  background: var(--lp-light);
}
.lp-quote-form-wrap {
  background: var(--lp-white);
  border-radius: var(--lp-radius-xl);
  box-shadow: var(--lp-shadow-lg);
  overflow: hidden;
}
.lp-quote-form-header {
  background: var(--lp-primary);
  padding: 2rem 2.5rem;
  color: var(--lp-white);
}
.lp-quote-form-header h3 { color: var(--lp-white); margin-bottom: .4rem; }
.lp-quote-form-header p { color: rgba(255,255,255,.6); margin: 0; font-size: .9rem; }
.lp-quote-form-body { padding: 2rem 2.5rem; }

.lp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.lp-form-group { margin-bottom: 1rem; }
.lp-form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--lp-dark);
  margin-bottom: .4rem;
  letter-spacing: .02em;
}
.lp-form-group input,
.lp-form-group select,
.lp-form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--lp-border);
  border-radius: var(--lp-radius-md);
  font-size: .9rem;
  transition: border-color var(--lp-fast), box-shadow var(--lp-fast);
  color: var(--lp-dark);
  background: var(--lp-white);
}
.lp-form-group input:focus,
.lp-form-group select:focus,
.lp-form-group textarea:focus {
  outline: none;
  border-color: var(--lp-secondary);
  box-shadow: 0 0 0 3px rgba(242,140,40,.12);
}
.lp-form-group textarea { resize: vertical; min-height: 100px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.lp-testimonials-section {
  background: var(--lp-white);
}
.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.lp-testimonial-card {
  background: var(--lp-light);
  border-radius: var(--lp-radius-lg);
  padding: 2rem;
  position: relative;
}
.lp-testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--lp-secondary);
  opacity: .2;
  position: absolute;
  top: .5rem;
  left: 1.25rem;
  line-height: 1;
}
.lp-testimonial-text {
  font-size: .95rem;
  color: var(--lp-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.lp-testimonial-author { display: flex; align-items: center; gap: 1rem; }
.lp-testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--lp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--lp-white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.lp-testimonial-name { font-weight: 700; font-size: .9rem; }
.lp-testimonial-role { font-size: .8rem; color: var(--lp-muted); }
.lp-stars { color: var(--lp-warning); font-size: .9rem; margin-bottom: .5rem; }

/* ============================================================
   BLOG / NEWS
   ============================================================ */
.lp-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.lp-blog-card {
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  border: 1px solid var(--lp-border);
  transition: all var(--lp-med);
}
.lp-blog-card:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow-lg); }
.lp-blog-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.lp-blog-body { padding: 1.5rem; }
.lp-blog-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .78rem;
  color: var(--lp-muted);
  margin-bottom: .75rem;
}
.lp-blog-body h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  line-height: 1.35;
}
.lp-blog-body h3 a { color: var(--lp-primary); transition: color var(--lp-fast); }
.lp-blog-body h3 a:hover { color: var(--lp-secondary); }
.lp-blog-body p { font-size: .875rem; color: var(--lp-muted); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.lp-process-section { background: var(--lp-light); }
.lp-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
}
.lp-process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--lp-white);
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border);
  position: relative;
}
.lp-process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--lp-primary);
  color: var(--lp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lp-font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}
.lp-process-step:hover .lp-process-num { background: var(--lp-secondary); }
.lp-process-step h4 { margin-bottom: .5rem; }
.lp-process-step p { font-size: .875rem; color: var(--lp-muted); margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer {
  background: var(--lp-dark);
  color: rgba(255,255,255,.65);
}
.lp-footer-top {
  padding: var(--lp-gap-lg) 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--lp-gap-md);
}
.lp-footer-brand p { font-size: .875rem; line-height: 1.7; margin-top: .75rem; }
.lp-footer-socials {
  display: flex;
  gap: .5rem;
  margin-top: 1.25rem;
}
.lp-footer-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--lp-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  transition: all var(--lp-fast);
}
.lp-footer-social:hover {
  background: var(--lp-secondary);
  border-color: var(--lp-secondary);
  color: var(--lp-white);
}

.lp-footer-col h5 {
  color: var(--lp-white);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}
.lp-footer-links { display: flex; flex-direction: column; gap: .6rem; }
.lp-footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--lp-fast);
}
.lp-footer-links a:hover { color: var(--lp-secondary); }

.lp-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
  font-size: .875rem;
}
.lp-footer-contact-icon { color: var(--lp-secondary); flex-shrink: 0; }

.lp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.lp-footer-bottom-links { display: flex; gap: 1.5rem; }
.lp-footer-bottom-links a { color: rgba(255,255,255,.4); transition: color var(--lp-fast); }
.lp-footer-bottom-links a:hover { color: var(--lp-secondary); }

/* ============================================================
   PAGE BANNER
   ============================================================ */
.lp-page-banner {
  background: linear-gradient(135deg, var(--lp-dark), var(--lp-primary));
  padding: 8rem 0 4rem;
  text-align: center;
  color: var(--lp-white);
}
.lp-page-banner h1 { color: var(--lp-white); margin-bottom: .75rem; }
.lp-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.lp-breadcrumb a { color: rgba(255,255,255,.5); }
.lp-breadcrumb a:hover { color: var(--lp-secondary); }
.lp-breadcrumb span { color: var(--lp-secondary); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.lp-back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--lp-secondary);
  color: var(--lp-white);
  border-radius: var(--lp-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--lp-shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--lp-med);
  z-index: 999;
}
.lp-back-top.visible { opacity: 1; pointer-events: all; }
.lp-back-top:hover { background: var(--lp-primary); transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .lp-footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .lp-nav { display: none; }
  .lp-hamburger { display: flex; }
  .lp-grid-2, .lp-grid-3, .lp-grid-4 { grid-template-columns: 1fr; }
  .lp-hero-content .lp-container { flex-direction: column; }
  .lp-footer-top { grid-template-columns: 1fr; }
  .lp-footer-bottom { flex-direction: column; text-align: center; }
  .lp-form-row { grid-template-columns: 1fr; }
  .lp-hero-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .lp-section { padding: var(--lp-gap-lg) 0; }
  .lp-hero h1 { font-size: 2.2rem; }
  .lp-hero-actions { flex-direction: column; }
  .lp-btn--lg { width: 100%; justify-content: center; }
}

/* ============================================================
   WP CORE CLASSES COMPATIBILITY
   ============================================================ */
.alignwide  { margin-left: -4rem; margin-right: -4rem; }
.alignfull  { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; }
.wp-block-image { margin-bottom: 1.5rem; }
.wp-block-image img { border-radius: var(--lp-radius-md); }
.sticky { border-left: 3px solid var(--lp-secondary); padding-left: 1rem; }
.bypostauthor {}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* GUTENBERG ALIGNMENT */
.alignleft  { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto; }

/* PAGINATION */
.lp-pagination {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 3rem;
}
.lp-pagination a, .lp-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1.5px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  font-size: .875rem;
  font-weight: 600;
  color: var(--lp-dark);
  transition: all var(--lp-fast);
}
.lp-pagination a:hover, .lp-pagination .current {
  background: var(--lp-secondary);
  border-color: var(--lp-secondary);
  color: var(--lp-white);
}

/* LOADING ANIMATION */
@keyframes lp-fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lp-animate { animation: lp-fadeInUp .6s var(--lp-ease) both; }
.lp-animate-delay-1 { animation-delay: .1s; }
.lp-animate-delay-2 { animation-delay: .2s; }
.lp-animate-delay-3 { animation-delay: .3s; }

/* ============================================================
   ACCESSIBILITY — Required by WordPress.org
   ============================================================ */

/* Skip link */
.skip-link {
    position: absolute;
    top: -999px;
    left: 1rem;
    z-index: 99999;
    padding: .75rem 1.5rem;
    background: #1A2B4A;
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    border-radius: 0 0 6px 6px;
}
.skip-link:focus {
    top: 0;
    outline: 3px solid #F28C28;
    outline-offset: 2px;
}

/* Content links must be underlined — WordPress.org requirement */
.entry-content a,
.entry-summary a,
.comment-content a,
.widget a,
.page-content a,
.wp-block-group a {
    text-decoration: underline;
}
.entry-content a:hover,
.entry-summary a:hover,
.comment-content a:hover {
    text-decoration: none;
}

/* Keyboard focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #F28C28;
    outline-offset: 2px;
}

.lp-page-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(15, 23, 42, .12);
  font-weight: 700;
}

.lp-page-links-title {
  margin-right: .25rem;
}


/* WordPress media, gallery, and comments support */
.wp-caption { max-width: 100%; margin-bottom: 1.5rem; }
.wp-caption img[class*="wp-image-"] { display: block; margin-left: auto; margin-right: auto; }
.wp-caption-text,
.gallery-caption { margin: .5rem 0 0; color: var(--lp-muted); font-size: .875rem; line-height: 1.5; text-align: center; }
.comment-list { margin: 0; padding: 0; list-style: none; }
.comment-list .comment { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--lp-border); }
.comment-author .avatar { border-radius: 50%; margin-right: .75rem; vertical-align: middle; }
.comment-content { margin-top: .75rem; line-height: 1.7; }
.comment-navigation, .comments-pagination { margin: 2rem 0; }
.comment-respond { margin-top: 2rem; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; border: 1px solid var(--lp-border); border-radius: var(--lp-radius-sm); padding: .8rem 1rem; }
