/* ============================================
   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; }


/* ============================================
   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);
}


/* ============================================
   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;
  text-align: center;
}

@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: #ffffff;
  color: #111827;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

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

.sticky-cta svg,
.sticky-cta img {
  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;
}

/* ============================================
   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;
}

/* ============================================
   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);
}

/* ============================================
   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;
}

/* ============================================
   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;
}

/* ============================================
   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;
}

/* ============================================
   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; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.text-8xl { font-size: 6rem; }

.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); }
.text-muted { color: var(--muted-foreground); }

.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);
}
