/*
Theme Name: Melbourne SOC
Theme URI: https://melbournesoc.com
Author: Melbourne SOC
Author URI: https://melbournesoc.com
Description: A dark, premium cybersecurity leadership training theme with orange accent, glassmorphism effects, animated backgrounds, and glow cards. Converted from React/Tailwind. Compatible with One Click Demo Import.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: melbornesoc
Tags: dark, cybersecurity, one-column, two-columns, custom-menu, featured-images, full-width-template, custom-colors, custom-logo
*/

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── Design Tokens / CSS Variables ─── */
:root {
  --primary-orange: #FF5A1F;
  --primary-orange-hover: #FF7A3D;
  --dark-bg: #0B0B0B;
  --dark-card: #141414;
  --dark-card-hover: #1a1a1a;
  --border-subtle: rgba(255,255,255,0.06);
  --border-orange: rgba(255,90,31,0.25);
  --text-primary: #FFFFFF;
  --text-muted: rgba(255,255,255,0.5);
  --text-dim: rgba(255,255,255,0.35);
  --radius: 0.75rem;
  --font-body: 'Outfit', 'Inter', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--text-primary);
}

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--primary-orange); }

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

::selection { background: rgba(255,90,31,0.3); color: #fff; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0B0B0B; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #FF5A1F; }

/* ─── Layout Container ─── */
.msoc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}
@media (min-width: 640px) { .msoc-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .msoc-container { padding: 0 2rem; } }

.msoc-container--narrow { max-width: 896px; margin: 0 auto; padding: 0 1rem; }
.msoc-container--medium { max-width: 1152px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) {
  .msoc-container--narrow { padding: 0 1.5rem; }
  .msoc-container--medium { padding: 0 1.5rem; }
}

/* ─── NAVBAR ─── */
.msoc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}
.msoc-header.scrolled {
  background: rgba(11,11,11,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.msoc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .msoc-nav { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .msoc-nav { padding: 0 2rem; } }

.msoc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text-primary);
}
.msoc-logo img { height: 32px; width: 32px; }

.msoc-nav-links {
  display: none;
  align-items: center;
  gap: 4px;
  list-style: none;
}
@media (min-width: 768px) { .msoc-nav-links { display: flex; } }

.msoc-nav-links a {
  position: relative;
  display: block;
  padding: 8px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.2s;
}
.msoc-nav-links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #FF5A1F, #FFB347);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.msoc-nav-links a:hover,
.msoc-nav-links a.active { color: #fff; }
.msoc-nav-links a:hover::after,
.msoc-nav-links a.active::after { width: 70%; }

.msoc-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  border-radius: 8px;
  transition: background 0.2s;
}
.msoc-mobile-toggle:hover { background: rgba(255,255,255,0.05); }
@media (min-width: 768px) { .msoc-mobile-toggle { display: none; } }

.msoc-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 1rem 1.5rem 1.5rem;
  background: #0B0B0B;
  border-top: 1px solid var(--border-subtle);
}
.msoc-mobile-menu.open { display: flex; }
.msoc-mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.msoc-mobile-menu a:hover,
.msoc-mobile-menu a.active {
  color: #fff;
  background: rgba(255,90,31,0.06);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 2rem;
  height: 48px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.25,0.46,0.45,0.94);
  white-space: nowrap;
}
.btn-sm { height: 36px; padding: 0 1.5rem; font-size: 0.875rem; }

.btn-primary {
  background: linear-gradient(135deg, #FF5A1F 0%, #FF7A3D 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,90,31,0.3);
  animation: btn-pulse-glow 3s ease-in-out infinite;
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(255,90,31,0.5);
  transform: translateY(-2px) scale(1.03);
  color: #fff;
}

.btn-outline {
  background: rgba(0,0,0,0.3);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,90,31,0.35);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: rgba(255,90,31,0.7);
  background: rgba(255,90,31,0.1);
  box-shadow: 0 0 24px rgba(255,90,31,0.15);
  transform: translateY(-1px);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #FF5A1F;
  border: none;
  padding: 0;
  height: auto;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover { color: #fff; transform: none; }

/* ─── TEXT GRADIENT ─── */
.text-gradient {
  background: linear-gradient(90deg, #FF5F23 50%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-alt {
  background: linear-gradient(135deg, #FF7A3D 0%, #FFB347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── CYBER BADGE ─── */
.cyber-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  border: 1px solid rgba(255,90,31,0.25);
  background: rgba(255,90,31,0.06);
  color: rgba(255,90,31,0.9);
  transition: all 0.3s ease;
}
.cyber-badge:hover {
  border-color: rgba(255,90,31,0.5);
  background: rgba(255,90,31,0.12);
}
.cyber-badge svg { width: 12px; height: 12px; }

/* ─── GLOW CARD ─── */
.glow-card {
  position: relative;
  background: linear-gradient(145deg, rgba(26,26,26,0.9) 0%, rgba(17,17,17,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  overflow: hidden;
}
.glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(255,90,31,0.2) 50%, transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.glow-card:hover::before { opacity: 1; }
.glow-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255,90,31,0.18);
  box-shadow: 0 12px 40px rgba(255,90,31,0.1), 0 0 0 1px rgba(255,90,31,0.08);
}
.glow-card-featured {
  border-color: rgba(255,90,31,0.25);
  box-shadow: 0 0 50px rgba(255,90,31,0.08);
}
.glow-card-featured::before {
  opacity: 0.6;
  background: linear-gradient(135deg, rgba(255,90,31,0.25) 0%, rgba(255,179,71,0.12) 50%, rgba(255,90,31,0.25) 100%);
}

/* ─── GLASS ─── */
.glass {
  background: rgba(11,11,11,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ─── SECTION GRADIENTS ─── */
.gradient-hero {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255,90,31,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(255,122,61,0.04) 0%, transparent 50%),
    linear-gradient(180deg, #0B0B0B 0%, #111111 40%, #0B0B0B 100%);
}
.gradient-subtle {
  background: linear-gradient(180deg, #0e0e0e 0%, #111111 50%, #0B0B0B 100%);
}
.bg-dark { background-color: #0B0B0B; }
.bg-dark-alt { background-color: #111111; }

/* ─── SECTION DIVIDER ─── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,90,31,0.18) 50%, transparent 100%);
}

/* ─── ICON GLOW ─── */
.icon-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,90,31,0.08);
  border: 1px solid rgba(255,90,31,0.14);
  transition: all 0.3s ease;
}
.icon-glow svg { width: 22px; height: 22px; color: #FF5A1F; }
.glow-card:hover .icon-glow {
  background: rgba(255,90,31,0.16);
  box-shadow: 0 0 24px rgba(255,90,31,0.2);
  border-color: rgba(255,90,31,0.3);
}

/* ─── ANIMATED BACKGROUND ORBS ─── */
.animated-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  animation: float-orb 20s ease-in-out infinite;
}
.gradient-orb-orange { background: radial-gradient(circle, rgba(255,90,31,0.6) 0%, transparent 70%); }
.gradient-orb-amber  { background: radial-gradient(circle, rgba(255,179,71,0.45) 0%, transparent 70%); animation-delay: -7s; }
.gradient-orb-deep   { background: radial-gradient(circle, rgba(204,55,0,0.4) 0%, transparent 70%); animation-delay: -13s; }

/* ─── CYBER GRID ─── */
.cyber-grid {
  background-image:
    linear-gradient(rgba(255,90,31,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,90,31,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ─── HERO SECTION ─── */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,11,11,0.92) 0%, rgba(11,11,11,0.78) 40%, rgba(11,11,11,0.88) 100%),
    radial-gradient(ellipse 80% 50% at 50% 30%, rgba(255,90,31,0.08) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
  padding: 5rem 1rem;
  text-align: center;
}
@media (min-width: 640px) { .hero-content { padding: 9rem 1.5rem; } }
@media (min-width: 1024px) { .hero-content { padding: 11rem 2rem; } }

.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 2rem; }

.hero-h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; justify-content: center; } }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255,90,31,0.07) 0%, transparent 60%),
    #0B0B0B;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,90,31,0.18) 50%, transparent 100%);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255,255,255,0.55);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─── SECTIONS ─── */
.msoc-section { padding: 6rem 0; }
@media (min-width: 640px) { .msoc-section { padding: 8rem 0; } }

/* ─── GRID LAYOUTS ─── */
.grid-2 { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.grid-4 { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.grid-2-sticky {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .grid-2-sticky { grid-template-columns: 1fr 1fr; align-items: start; } }
.sticky-col { position: static; }
@media (min-width: 1024px) { .sticky-col { position: sticky; top: 6rem; } }

/* ─── CARD STYLES ─── */
.card-base {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}
.card-base:hover { background: rgba(255,255,255,0.05); }

.card-pathway {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(26,26,26,0.9) 0%, rgba(17,17,17,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}
.card-pathway:hover {
  border-color: rgba(255,90,31,0.18);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,90,31,0.08);
}

/* ─── TRANSFORMATION ARROW ─── */
.transform-arrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-family: monospace;
  color: #FF5A1F;
  margin-bottom: 1rem;
}
.transform-arrow span.to { color: #fff; }
.transform-arrow .arrow-icon { width: 16px; height: 16px; }

/* ─── NUMBER BADGE ─── */
.num-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,90,31,0.1);
  color: #FF5A1F;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* ─── TIMELINE ─── */
.timeline-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #FF5A1F;
  box-shadow: 0 0 14px rgba(255,90,31,0.5);
  flex-shrink: 0;
}
.timeline-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(90deg, #FF5F23 50%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── PRICING BADGE ─── */
.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 20px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: linear-gradient(135deg, #FF5A1F, #FFB347);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,90,31,0.3);
  white-space: nowrap;
}

/* ─── FEATURE LIST ─── */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.feature-list li svg { width: 16px; height: 16px; color: rgba(255,90,31,0.7); flex-shrink: 0; margin-top: 2px; }

/* ─── SOCIAL ICONS ─── */
.social-links { display: flex; gap: 10px; margin-top: 1.5rem; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.4);
  transition: all 0.3s;
}
.social-link:hover {
  border-color: rgba(255,90,31,0.3);
  background: rgba(255,90,31,0.1);
  color: #FF5A1F;
}
.social-link svg { width: 16px; height: 16px; }

/* ─── FOOTER ─── */
.msoc-footer {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #0B0B0B;
}
.msoc-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,90,31,0.3), transparent);
}
.footer-grid {
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a, .footer-col span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  cursor: pointer;
}
.footer-col a:hover, .footer-col span:hover { color: #FF5A1F; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom span { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* ─── SECTION HEADING ─── */
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ─── CTA SECTION ─── */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  text-align: center;
}
@media (min-width: 640px) { .cta-section { padding: 8rem 0; } }
.cta-section h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.5); font-size: 1.125rem; margin-bottom: 2rem; }
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) { .cta-actions { flex-direction: row; justify-content: center; } }

/* ─── TARGET LIST ─── */
.target-list { list-style: none; padding: 0; }
.target-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  padding: 0.375rem 0;
}
.target-list li svg { width: 16px; height: 16px; color: #FF5A1F; flex-shrink: 0; margin-top: 2px; }

/* ─── ANIMATIONS ─── */
@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%       { transform: translate(30px, -20px) scale(1.05); }
  50%       { transform: translate(-20px, 15px) scale(0.95); }
  75%       { transform: translate(15px, 25px) scale(1.02); }
}

@keyframes btn-pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,90,31,0.3); }
  50%       { box-shadow: 0 4px 40px rgba(255,90,31,0.5), 0 0 60px rgba(255,90,31,0.15); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── SCROLL ANIMATIONS ─── */
.msoc-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.msoc-animate.visible { opacity: 1; transform: translateY(0); }

.msoc-animate-delay-1 { transition-delay: 0.1s; }
.msoc-animate-delay-2 { transition-delay: 0.2s; }
.msoc-animate-delay-3 { transition-delay: 0.3s; }
.msoc-animate-delay-4 { transition-delay: 0.4s; }

/* ─── HERO INIT ANIMATION ─── */
.hero-badges, .hero-h1, .hero-subtitle, .hero-actions {
  animation: fade-up 0.7s ease both;
}
.hero-badges  { animation-delay: 0s; }
.hero-h1      { animation-delay: 0.1s; }
.hero-subtitle{ animation-delay: 0.25s; }
.hero-actions { animation-delay: 0.35s; }

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── PERSPECTIVE TILT ─── */
.perspective-card { perspective: 1000px; }
.perspective-card-inner {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
}
.perspective-card:hover .perspective-card-inner {
  transform: rotateY(-2deg) rotateX(2deg) translateZ(8px);
}
@media (max-width: 480px) {
  .perspective-card:hover .perspective-card-inner { transform: none; }
  .glow-card:hover { transform: translateY(-3px); }
}

/* ─── WORDPRESS CORE COMPAT ─── */
.aligncenter { display: block; margin: 1rem auto; }
.alignleft   { float: left; margin: 0 1.5rem 1rem 0; }
.alignright  { float: right; margin: 0 0 1rem 1.5rem; }
.wp-caption  { max-width: 100%; }
.sticky      {} /* WP sticky class - intentionally empty */
.bypostauthor {}
