/* ============================================
   Secure Move Academy - Main Stylesheet
   Converted from Lovable AI (Tailwind CSS)
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

/* CSS Custom Properties */
:root {
  --radius: 0.5rem;
  
  /* Brand Colors — warm charcoal + gold */
  --navy: oklch(0.16 0.008 70);
  --navy-foreground: oklch(0.98 0.005 80);
  --gold: oklch(0.72 0.13 78);
  --gold-foreground: oklch(0.14 0.008 70);
  
  /* Dark, seamless surfaces */
  --background: oklch(0.14 0.008 70);
  --foreground: oklch(0.96 0.005 80);
  
  --card: oklch(0.19 0.01 70);
  --card-foreground: oklch(0.96 0.005 80);
  
  --popover: oklch(0.19 0.01 70);
  --popover-foreground: oklch(0.96 0.005 80);
  
  --primary: oklch(0.72 0.13 78);
  --primary-foreground: oklch(0.14 0.008 70);
  
  --secondary: oklch(0.18 0.01 70);
  --secondary-foreground: oklch(0.96 0.005 80);
  
  --muted: oklch(0.2 0.01 70);
  --muted-foreground: oklch(0.72 0.01 80);
  
  --accent: oklch(0.72 0.13 78);
  --accent-foreground: oklch(0.14 0.008 70);
  
  --destructive: oklch(0.62 0.22 27);
  --destructive-foreground: oklch(0.98 0.005 80);
  
  /* Near-invisible borders */
  --border: oklch(1 0 0 / 6%);
  --input: oklch(1 0 0 / 10%);
  --ring: oklch(0.72 0.13 78);
  
  /* Gradients */
  --gradient-navy: linear-gradient(135deg, oklch(0.16 0.008 70) 0%, oklch(0.22 0.012 65) 60%, oklch(0.18 0.01 70) 100%);
  --gradient-gold: linear-gradient(135deg, oklch(0.78 0.12 82) 0%, oklch(0.68 0.14 72) 100%);
  --gradient-hero: linear-gradient(135deg, oklch(0.13 0.008 70) 0%, oklch(0.2 0.012 65) 55%, oklch(0.15 0.01 70) 100%);
  
  /* Shadows */
  --shadow-elegant: 0 20px 60px -20px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 12px 32px -12px rgba(212, 175, 55, 0.55);
  --shadow-card: 0 4px 24px -8px rgba(0, 0, 0, 0.22);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.1;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* Container */
.container-prose {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container-prose {
    padding-inline: 2rem;
  }
}

/* Utility Classes */
.bg-gradient-navy { background-image: var(--gradient-navy); }
.bg-gradient-gold { background-image: var(--gradient-gold); }
.bg-gradient-hero { background-image: var(--gradient-hero); }
.shadow-elegant { box-shadow: var(--shadow-elegant); }
.shadow-gold { box-shadow: var(--shadow-gold); }
.shadow-card { box-shadow: var(--shadow-card); }
.text-gold { color: var(--gold); }
.border-gold { border-color: var(--gold); }

.gold-divider {
  height: 3px;
  width: 56px;
  background: var(--gradient-gold);
  border-radius: 2px;
  display: inline-block;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.fade-in-up { animation: fadeInUp 0.7s ease-out both; }
.fade-in { animation: fadeIn 0.6s ease-out both; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* ============================================
   Header Styles
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  transition: all 0.5s ease;
}

.header.transparent {
  background: transparent;
}

.header.scrolled {
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-card);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo img {
  height: 4rem;
  width: auto;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.45));
}

.header-logo:hover img {
  transform: scale(1.05);
}

.header-logo-text {
  line-height: 1.25;
}

.header-logo-text .brand {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.header-logo-text .brand.text-white { color: #fff; }
.header-logo-text .brand.text-foreground { color: var(--foreground); }

.header-logo-text .sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--gold);
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .header-nav { display: flex; }
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--gold);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.3s ease;
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .header-actions { display: flex; }
}

.header-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

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

.header-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-inner {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu a {
  padding: 0.75rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu .btn {
  margin-top: 0.5rem;
}

/* ============================================
   Button Styles
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  /* Default size: h-10 px-5 py-2 (matches React size="default") */
  height: 2.5rem;
  padding: 0.5rem 1.25rem;
  line-height: 1;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Button Sizes */
.btn-sm { height: 2rem; padding: 0 0.75rem; font-size: 0.75rem; border-radius: 0.375rem; }
.btn-default { height: 2.5rem; padding: 0 1.25rem; }
.btn-lg { height: 3rem; padding: 0 1.75rem; font-size: 1rem; border-radius: 0.375rem; }
.btn-xl { height: 3.5rem; padding: 0 2.25rem; font-size: 1rem; border-radius: 0.375rem; }

/* Button Variants */
.btn-gold {
  background: var(--gradient-gold);
  color: var(--gold-foreground);
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--gradient-navy);
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-elegant);
}

.btn-navy:hover {
  border-color: var(--gold);
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--navy);
}

.btn-outline-navy {
  border: 2px solid rgba(212, 175, 55, 0.6);
  background: transparent;
  color: var(--gold);
}

.btn-outline-navy:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-default-variant {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-default-variant:hover {
  background: color-mix(in oklab, var(--primary) 90%, transparent);
}

/* ============================================
   Footer Styles
   ============================================ */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--background);
  color: var(--foreground);
}

.footer-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.6), transparent);
}

.footer-bg-1,
.footer-bg-2 {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-bg-1 {
  background: radial-gradient(circle at 15% 0%, rgba(212, 175, 55, 0.10), transparent 55%);
}

.footer-bg-2 {
  background: radial-gradient(circle at 85% 100%, rgba(212, 175, 55, 0.08), transparent 50%);
}

.footer-inner {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(12, 1fr); }
}

.footer-col-4 { grid-column: span 4; }
.footer-col-2 { grid-column: span 2; }

.footer-brand p {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.625;
  max-width: 20rem;
}

.footer-social {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.footer-social svg {
  width: 1rem;
  height: 1rem;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
  transition: color 0.2s;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom .tagline {
  color: rgba(212, 175, 55, 0.8);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   Page Hero Styles
   ============================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
  /* Matches React PageHero: pt-32 md:pt-40 pb-20 md:pb-28 */
  padding-top: 8rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .page-hero {
    padding-top: 10rem;
    padding-bottom: 7rem;
  }
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  /* Matches React PageHero: bg-gradient-to-r from-background via-background/85 to-background/55 */
  background: linear-gradient(to right, var(--background), color-mix(in oklab, var(--background) 85%, transparent), color-mix(in oklab, var(--background) 55%, transparent));
}

.page-hero-radial-1,
.page-hero-radial-2 {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero-radial-1 {
  background: radial-gradient(circle at 75% 25%, rgba(212, 175, 55, 0.18), transparent 55%);
}

.page-hero-radial-2 {
  background: radial-gradient(circle at 10% 90%, rgba(212, 175, 55, 0.10), transparent 45%);
}

.page-hero-content {
  position: relative;
  /* Matches React PageHero: container-prose max-w-4xl (56rem = 896px) */
  max-width: 56rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .page-hero-content {
    padding-inline: 2rem;
  }
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.page-hero-eyebrow p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--gold);
}

.page-hero h1 {
  font-size: 2.25rem;
  line-height: 1.05;
  color: #fff;
}

@media (min-width: 768px) {
  .page-hero h1 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .page-hero h1 { font-size: 3.75rem; }
}

.page-hero h1 .text-gold { color: var(--gold); }

.page-hero-description {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.625;
  max-width: 48rem;
}

@media (min-width: 768px) {
  .page-hero-description { font-size: 1.25rem; }
}

.page-hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to bottom, transparent, var(--background));
  pointer-events: none;
}

/* ============================================
   Section Heading Styles
   ============================================ */
.section-heading {
  max-width: 48rem;
}

.section-heading.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.text-left {
  text-align: left;
}

.section-heading-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-heading.text-center .section-heading-eyebrow {
  justify-content: center;
}

.section-heading-eyebrow span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.section-heading h2 {
  font-size: 1.875rem;
  color: var(--foreground);
}

.section-heading.light h2 {
  color: #fff;
}

@media (min-width: 768px) {
  .section-heading h2 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .section-heading h2 { font-size: 3rem; }
}

.section-heading-description {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

.section-heading.light .section-heading-description {
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 768px) {
  .section-heading-description { font-size: 1.125rem; }
}

/* ============================================
   Form Styles
   ============================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  border-radius: 0.375rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: var(--background);
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.form-select {
  height: 2.5rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

/* ============================================
   Sticky CTA (WhatsApp Button)
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--gradient-gold);
  color: var(--gold-foreground);
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s;
}

.sticky-cta:hover {
  transform: scale(1.05);
}

.sticky-cta svg {
  width: 1.25rem;
  height: 1.25rem;
}

.sticky-cta span {
  font-size: 0.875rem;
}

@media (max-width: 639px) {
  .sticky-cta span { display: none; }
}

/* ============================================
   Card & Grid Utilities
   ============================================ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
}

.card-hover:hover {
  box-shadow: var(--shadow-elegant);
  border-color: rgba(212, 175, 55, 0.4);
}

.grid-2 { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.5rem; }
.grid-5 { display: grid; gap: 1.25rem; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

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

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

/* ============================================
   Section Spacing
   ============================================ */
.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section { padding: 7rem 0; }
}

.section-lg {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section-lg { padding: 7rem 0; }
}

/* ============================================
   Details/Summary (FAQ)
   ============================================ */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.faq-item[open] {
  border-color: rgba(212, 175, 55, 0.4);
}

.faq-summary {
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
}

.faq-summary::-webkit-details-marker { display: none; }

.faq-summary h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .faq-summary h3 { font-size: 1.125rem; }
}

.faq-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: var(--gradient-gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 700;
  transition: transform 0.3s;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  margin-top: 1rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

/* ============================================
   Testimonial Carousel
   ============================================ */
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  transition: all 0.5s;
}

@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.75rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.testimonial-card.featured {
  transform: scale(1.02);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-elegant);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--gold);
}

.testimonial-quote {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.625;
}

.testimonial-author {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-name {
  font-weight: 600;
  color: #fff;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 0.125rem;
}

.testimonial-controls {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s;
}

.testimonial-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

.testimonial-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-dot {
  height: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.testimonial-dot.active {
  width: 2rem;
  background: var(--gold);
}

.testimonial-dot:not(.active) {
  width: 0.5rem;
}

.testimonial-dot:not(.active):hover {
  background: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Trust Bar
   ============================================ */
.trust-bar {
  position: relative;
  background: var(--gradient-navy);
  color: #fff;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.12), transparent 60%);
}

.trust-bar-inner {
  position: relative;
  padding: 3.5rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .trust-bar-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 4rem 0;
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .trust-item:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.trust-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--gradient-gold);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-elegant);
}

.trust-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--navy);
}

.trust-number {
  font-family: 'Manrope', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

@media (min-width: 768px) {
  .trust-number { font-size: 3rem; }
}

.trust-label {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .trust-label { font-size: 0.875rem; }
}

/* ============================================
   Audience Cards
   ============================================ */
.audience-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}

.audience-card:hover {
  box-shadow: var(--shadow-elegant);
  transform: translateY(-0.25rem);
}

.audience-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: var(--gradient-navy);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}

.audience-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
}

.audience-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.audience-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

.audience-card .gold-line {
  margin-top: 1.25rem;
  height: 0.125rem;
  width: 2.5rem;
  background: var(--gradient-gold);
  transition: width 0.3s;
}

.audience-card:hover .gold-line {
  width: 5rem;
}

/* ============================================
   Certification Cards
   ============================================ */
.cert-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}

.cert-card:hover {
  box-shadow: var(--shadow-elegant);
  border-color: rgba(212, 175, 55, 0.4);
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cert-badge-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: var(--gradient-navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: var(--shadow-elegant);
  transition: transform 0.3s;
}

.cert-card:hover .cert-badge-icon {
  transform: scale(1.05);
}

.cert-badge-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--gold);
}

.cert-badge-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.25;
}

.cert-card p {
  color: var(--muted-foreground);
  line-height: 1.625;
}

.cert-features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cert-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.cert-features svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.cert-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  transition: color 0.2s;
}

.cert-link:hover {
  color: var(--gold);
}

.cert-link svg {
  width: 1rem;
  height: 1rem;
}

/* ============================================
   Why Us Cards
   ============================================ */
.why-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.why-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.why-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  background: var(--gradient-gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.why-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--navy);
}

.why-card h3 {
  font-weight: 700;
  color: var(--foreground);
}

.why-card p {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  padding: 5rem 0;
  background: var(--gradient-hero);
  color: #fff;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-section { padding: 6rem 0; }
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.18), transparent 55%);
}

.cta-section > * {
  position: relative;
}

.cta-section .container-prose {
  text-align: center;
  max-width: 48rem;
}

.cta-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--gold);
  margin: 0 auto 1.25rem;
}

.cta-section h2 {
  font-size: 1.875rem;
  color: #fff;
}

@media (min-width: 768px) {
  .cta-section h2 { font-size: 3rem; }
}

.cta-section h2 .text-gold { color: var(--gold); }

.cta-section p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ============================================
   Hero Section (Home)
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Matches React: bg-gradient-to-r from-navy via-navy/90 to-navy/50 */
  background: linear-gradient(to right, var(--navy), color-mix(in oklab, var(--navy) 90%, transparent), color-mix(in oklab, var(--navy) 50%, transparent));
}

.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.18), transparent 55%);
}

.hero-inner {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-inner { padding-top: 8rem; padding-bottom: 8rem; }
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: repeat(12, 1fr);
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.hero-content { grid-column: span 7; }

@media (max-width: 1023px) {
  .hero-content { grid-column: span 12; }
}

.hero-graphic { grid-column: span 5; }

@media (max-width: 1023px) {
  .hero-graphic { display: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 0.875rem;
  height: 0.875rem;
  fill: var(--gold);
}

.hero h1 {
  font-size: 2.25rem;
  line-height: 1.05;
  color: #fff;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3.75rem; }
}

.hero h1 .text-gold { color: var(--gold); }

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 42rem;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-tagline {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-features {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 0.75rem;
  column-gap: 1.5rem;
  max-width: 42rem;
}

@media (min-width: 640px) {
  .hero-features { grid-template-columns: repeat(2, 1fr); }
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .hero-feature { font-size: 1rem; }
}

.hero-feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-feature-icon svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--gold);
}

.hero-feature span {
  font-weight: 500;
}

.hero-graphic-wrapper {
  position: relative;
}

.hero-graphic-glow {
  position: absolute;
  inset: 0;
  background: var(--gradient-gold);
  opacity: 0.3;
  filter: blur(4rem);
  border-radius: 9999px;
  z-index: 0;
  animation: glowPulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.15; }
}

.hero-graphic-radial {
  position: absolute;
  inset: -2rem;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.25), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-graphic-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 37.5rem;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

/* ============================================
   About Page Styles
   ============================================ */
.about-story {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-story {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
}

.about-story-text h2 {
  font-size: 1.875rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .about-story-text h2 { font-size: 2.25rem; }
}

.about-story-text p {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.625;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .about-story-text p { font-size: 1.125rem; }
}

.about-image-wrapper {
  position: relative;
}

.about-image-glow {
  position: absolute;
  inset: -1rem;
  background: var(--gradient-gold);
  opacity: 0.15;
  filter: blur(3rem);
  border-radius: 1.5rem;
}

.about-image-wrapper img {
  position: relative;
  border-radius: 1rem;
  box-shadow: var(--shadow-elegant);
  width: 100%;
  object-fit: cover;
}

.about-values {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .about-values { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .about-values { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.75rem;
  transition: all 0.2s;
}

.value-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-card);
}

.value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: var(--gradient-navy);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}

.value-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
}

.value-card h3 {
  font-weight: 700;
  color: var(--foreground);
}

.value-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

/* Mission/Vision */
.mv-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .mv-grid { grid-template-columns: repeat(2, 1fr); }
}

.mv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.mv-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.mv-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.mv-card p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

/* Leadership */
.leadership {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: var(--gradient-navy);
  color: #fff;
  overflow: hidden;
}

.leadership::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.14), transparent 55%);
}

.leadership::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 85%, rgba(212, 175, 55, 0.10), transparent 50%);
}

.leadership > * {
  position: relative;
}

.founder-card {
  position: relative;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .founder-card { flex-direction: row; }
}

.founder-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.founder-image {
  position: relative;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .founder-image { width: 40%; aspect-ratio: auto; }
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s;
}

.founder-card:hover .founder-image img {
  transform: scale(1.05);
}

.founder-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent, transparent);
}

@media (min-width: 640px) {
  .founder-image::after {
    background: linear-gradient(to right, transparent, rgba(26, 26, 26, 0.4));
  }
}

.founder-info {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .founder-info { padding: 1.75rem; }
}

.founder-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 700;
}

.founder-name {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .founder-name { font-size: 1.875rem; }
}

.founder-role {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.625;
}

.founder-creds {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.founder-cred {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
}

.founder-link {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  width: fit-content;
}

.founder-link:hover {
  color: var(--gold);
}

.founder-link svg {
  width: 1rem;
  height: 1rem;
}

/* ============================================
   Academy Page Styles
   ============================================ */
.program-card {
  display: grid;
  gap: 2rem;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .program-card { padding: 3rem; }
}

@media (min-width: 1024px) {
  .program-card {
    grid-template-columns: repeat(12, 1fr);
  }
}

.program-card:hover {
  box-shadow: var(--shadow-elegant);
}

.program-badge {
  grid-column: span 4;
}

.program-badge-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  border-radius: 1rem;
  background: var(--gradient-navy);
  color: var(--gold);
  box-shadow: var(--shadow-elegant);
}

.program-badge-inner span:first-child {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
}

.program-badge-inner span:last-child {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 0.25rem;
}

.program-content {
  grid-column: span 8;
}

.program-tagline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--gold);
}

.program-content h2 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .program-content h2 { font-size: 1.875rem; }
}

.program-content > p {
  margin-top: 1rem;
  color: var(--muted-foreground);
  line-height: 1.625;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .program-content > p { font-size: 1.125rem; }
}

.program-outcomes-title {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--foreground);
}

.program-outcomes {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .program-outcomes { grid-template-columns: repeat(2, 1fr); }
}

.program-outcomes li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.program-outcomes svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.program-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Included Features */
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s;
}

.feature-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-0.25rem);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: var(--gradient-gold);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
}

.feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--navy);
}

.feature-card h3 {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--foreground);
}

.feature-card p {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

/* ============================================
   Packages Page Styles
   ============================================ */
.packages-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
}

.package-card {
  position: relative;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  background: var(--card);
  color: var(--foreground);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .package-card { padding: 2.5rem; }
}

.package-card:hover {
  box-shadow: var(--shadow-elegant);
}

.package-card.featured {
  background: var(--gradient-navy);
  color: #fff;
  box-shadow: var(--shadow-elegant);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

@media (min-width: 1024px) {
  .package-card.featured {
    transform: scale(1.05);
  }
}

.package-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: var(--gradient-gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-gold);
}

.package-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}

.package-card:not(.featured) .package-icon {
  background: var(--gradient-navy);
}

.package-card.featured .package-icon {
  background: var(--gradient-gold);
}

.package-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.package-card:not(.featured) .package-icon svg {
  color: var(--gold);
}

.package-card.featured .package-icon svg {
  color: var(--navy);
}

.package-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.package-card:not(.featured) h2 { color: var(--foreground); }
.package-card.featured h2 { color: #fff; }

.package-duration {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}

.package-ideal {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.625;
}

.package-card:not(.featured) .package-ideal { color: var(--muted-foreground); }
.package-card.featured .package-ideal { color: rgba(255, 255, 255, 0.75); }

.package-ideal strong {
  font-weight: 600;
}

.package-features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.package-card:not(.featured) .package-features { color: rgba(255, 255, 255, 0.8); }
.package-card.featured .package-features { color: rgba(255, 255, 255, 0.9); }

.package-features svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: var(--gold);
}

.package-card .btn {
  margin-top: 2rem;
  width: 100%;
}

/* ============================================
   Career Services Page Styles
   ============================================ */
.career-group {
  margin-bottom: 5rem;
}

.career-group-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.career-group-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--gradient-gold);
  display: grid;
  place-items: center;
}

.career-group-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--navy);
}

.career-group h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .career-group h2 { font-size: 2.25rem; }
}

.career-items {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .career-items { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .career-items { grid-template-columns: repeat(3, 1fr); }
}

.career-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.2s;
}

.career-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-card);
}

.career-item h3 {
  font-weight: 700;
  color: var(--foreground);
}

.career-item p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

/* Benefits */
.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.75rem;
}

.benefit-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  background: var(--gradient-navy);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.benefit-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
}

.benefit-card h3 {
  font-weight: 700;
  color: var(--foreground);
}

.benefit-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.contact-info { grid-column: span 2; }
.contact-form-wrapper { grid-column: span 3; }

@media (max-width: 1023px) {
  .contact-info, .contact-form-wrapper { grid-column: span 12; }
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.contact-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.contact-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
}

.contact-list li {
  display: flex;
  gap: 0.75rem;
}

.contact-list svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-list a:hover {
  color: var(--foreground);
}

.contact-whatsapp {
  display: block;
  background: var(--gradient-gold);
  color: var(--navy);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s;
}

.contact-whatsapp:hover {
  transform: scale(1.02);
}

.contact-whatsapp svg {
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.75rem;
}

.contact-whatsapp h3 {
  font-weight: 700;
  font-size: 1.125rem;
}

.contact-whatsapp p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.8);
}

.contact-consultation {
  background: var(--gradient-navy);
  color: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
}

.contact-consultation h3 {
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
}

.contact-consultation p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .contact-form { padding: 2.5rem; }
}

.contact-form h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.contact-form > p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.form-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
}

.form-success {
  text-align: center;
  padding: 3rem 0;
}

.form-success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: var(--gradient-gold);
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
}

.form-success-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--navy);
}

.form-success h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.form-success p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
}

/* Loading Spinner */
.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: var(--primary-foreground);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form Error Message */
.form-error {
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button disabled state */
button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ============================================
   CTA Banner (About page bottom)
   ============================================ */
.cta-banner {
  padding: 4rem 0;
  background: var(--gradient-navy);
  color: #fff;
}

.cta-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-banner-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.cta-banner h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .cta-banner h2 { justify-content: flex-start; }
}

@media (min-width: 768px) {
  .cta-banner h2 { font-size: 1.875rem; }
}

.cta-banner h2 svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--gold);
}

.cta-banner p {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================
   Career CTA
   ============================================ */
.career-cta {
  padding: 5rem 0;
  background: var(--gradient-navy);
  color: #fff;
}

.career-cta-inner {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.career-cta-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--gold);
  margin: 0 auto 1.25rem;
}

.career-cta h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
}

@media (min-width: 768px) {
  .career-cta h2 { font-size: 2.25rem; }
}

.career-cta p {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.career-cta-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ============================================
   Responsive Utilities
   ============================================ */
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

@media (min-width: 640px) {
  .sm\:block { display: block !important; }
  .sm\:flex { display: flex !important; }
  .sm\:hidden { display: none !important; }
}

@media (min-width: 768px) {
  .md\:block { display: block !important; }
  .md\:flex { display: flex !important; }
  .md\:hidden { display: none !important; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block !important; }
  .lg\:flex { display: flex !important; }
  .lg\:hidden { display: none !important; }
}

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

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

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-20 > * + * { margin-top: 5rem; }

.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-14 { height: 3.5rem; }
.h-10 { height: 2.5rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-11 { height: 2.75rem; }
.h-px { height: 1px; }

.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-xs { max-width: 20rem; }
.max-w-md { max-width: 28rem; }

.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.pt-20 { padding-top: 5rem; }
.pt-32 { padding-top: 8rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-20 { padding-bottom: 5rem; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.text-white { color: #fff; }
.text-white\/50 { color: rgba(255, 255, 255, 0.5); }
.text-white\/65 { color: rgba(255, 255, 255, 0.65); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/75 { color: rgba(255, 255, 255, 0.75); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/85 { color: rgba(255, 255, 255, 0.85); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }

.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

.uppercase { text-transform: uppercase; }

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.size-full { width: 100%; height: 100%; }

.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

.opacity-30 { opacity: 0.3; }
.opacity-15 { opacity: 0.15; }

.blur-3xl { filter: blur(4rem); }

.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }

.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }

.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/15 { border-color: rgba(255, 255, 255, 0.15); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-white\/40 { border-color: rgba(255, 255, 255, 0.4); }

.bg-white\/5 { background: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background: rgba(255, 255, 255, 0.1); }
.bg-gold\/10 { background: rgba(212, 175, 55, 0.1); }
.bg-gold\/15 { background: rgba(212, 175, 55, 0.15); }

.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:border-gold\/40:hover { border-color: rgba(212, 175, 55, 0.4); }
.hover\:text-gold:hover { color: var(--gold); }
.hover\:bg-white\/5:hover { background: rgba(255, 255, 255, 0.05); }

.transition-all { transition: all 0.3s; }
.transition-colors { transition: color 0.2s, background-color 0.2s, border-color 0.2s; }
.transition-transform { transition: transform 0.2s; }

.cursor-pointer { cursor: pointer; }

.list-none { list-style: none; }

.shrink-0 { flex-shrink: 0; }

.flex-1 { flex: 1; }

.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }

.grid place-items-center { display: grid; place-items: center; }

/* Print styles */
@media print {
  .header, .sticky-cta { display: none; }
}

/* ============================================
   404 Page
   ============================================ */
.section-404-links {
  padding: 4rem 0;
  background: var(--background);
}

.grid-404 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-404 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-404 { grid-template-columns: repeat(4, 1fr); }
}

.card-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card-404:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--ring);
}

.card-404-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--gradient-gold);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.card-404-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--navy);
}
