*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #f0f4f8;
  color: #1e293b;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
img { max-width: 100%; height: auto; }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: #40775f; border-bottom: 1px solid rgba(64, 119, 95, 0.4);
  transition: all 0.3s;
}
.navbar-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 24px;
}
.navbar-logo { display: flex; align-items: center; gap: 10px; }
.navbar-logo img { height: 40px; width: auto; }
.navbar-links { display: flex; align-items: center; gap: 4px; }
.navbar-links a {
  padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.7); transition: all 0.2s;
}
.navbar-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.navbar-links a.active { color: #fff; background: rgba(255,255,255,0.15); }
.navbar-cta {
  margin-left: 12px; padding: 8px 16px; background: #2563eb;
  color: #fff; font-size: 14px; font-weight: 600; border-radius: 8px; border: none;
  transition: background 0.2s;
}
.navbar-cta:hover { background: #1d4ed8; }
.mobile-toggle {
  display: none; padding: 8px; border-radius: 8px;
  background: none; border: none; color: #fff;
}
.mobile-menu {
  display: none; background: #fff; border-top: 1px solid #f1f5f9;
  padding: 12px 16px;
}
.mobile-menu a {
  display: block; padding: 10px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: #475569;
}
.mobile-menu a:hover { background: #f1f5f9; }

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .mobile-toggle { display: block; }
  .mobile-menu.open { display: block; }
}

/* Hero */
.hero {
  padding-top: 64px; background: linear-gradient(135deg, #1a3a2e 0%, #40775f 50%, #2d5a47 100%);
  position: relative; overflow: hidden;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 60px 24px;
  display: grid; gap: 40px;
}
@media (min-width: 1024px) { .hero-inner { grid-template-columns: 1fr 1fr; padding: 80px 24px; } }
.hero h1 {
  font-size: 2.5rem; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 16px;
}
@media (min-width: 768px) { .hero h1 { font-size: 3.5rem; } }
.hero h1 span { color: #60a5fa; }
.hero p {
  color: rgba(255,255,255,0.6); font-size: 1.125rem; line-height: 1.7; max-width: 540px; margin-bottom: 24px;
}
.hero-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #2563eb; color: #fff; font-weight: 600;
  padding: 12px 24px; border-radius: 12px; border: none;
  font-size: 1rem; transition: background 0.2s;
}
.hero-btn:hover { background: #1d4ed8; }
.hero-stats {
  display: flex; gap: 24px; margin-top: 32px;
}
.hero-stat { text-align: center; }
.hero-stat-value { font-size: 1.875rem; font-weight: 800; color: #fff; }
.hero-stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.hero-visual {
  display: flex; align-items: center; justify-content: center;
}
.hero-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 24px;
  padding: 32px; width: 100%; max-width: 400px;
}
.hero-card-title { color: #fff; font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.hero-card-text { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 16px; }
.hero-card-items { display: flex; flex-direction: column; gap: 8px; }
.hero-card-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06); border-radius: 10px; padding: 10px 14px;
  color: rgba(255,255,255,0.8); font-size: 0.875rem; font-weight: 500;
}
.hero-card-item .badge {
  margin-left: auto; background: #2563eb; color: #fff;
  font-size: 0.75rem; font-weight: 600; padding: 2px 10px; border-radius: 999px;
}

/* Floating card */
.floating-section { background: #f0f4f8; padding: 64px 24px; }
.floating-card {
  max-width: 640px; margin: 0 auto;
  background: #fff; border-radius: 24px;
  box-shadow: 0 25px 60px rgba(13, 148, 136, 0.15);
  border: 1px solid #ccfbf1; padding: 40px;
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.floating-card-tag {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.floating-card-dot {
  width: 12px; height: 12px; border-radius: 50%; background: #06b6d4;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.floating-card-tag span {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #0d9488;
}
.floating-card h2 {
  font-size: 1.5rem; font-weight: 800; color: #111827; margin-bottom: 16px; line-height: 1.3;
}
@media (min-width: 640px) { .floating-card h2 { font-size: 1.875rem; } }
.floating-card p {
  color: #374151; line-height: 1.7; margin-bottom: 12px;
}
.floating-card strong { color: #111827; }
.floating-card .highlight { color: #0f766e; font-weight: 600; }
.floating-card .btn-group { margin-top: 16px; }

/* Page header */
.page-header {
  padding: 100px 24px 60px; background: #40775f;
}
.page-header-inner { max-width: 1280px; margin: 0 auto; }
.page-header h1 {
  font-size: 2.25rem; font-weight: 800; color: #fff;
}
@media (min-width: 768px) { .page-header h1 { font-size: 3rem; } }
.page-header h1 span { color: #60a5fa; }
.page-header p {
  color: rgba(255,255,255,0.5); font-size: 1.125rem; line-height: 1.6; max-width: 560px;
}
.page-content { max-width: 1280px; margin: 0 auto; padding: 40px 24px; }

/* Grid */
.grid { display: grid; gap: 20px; }
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .sm-grid-cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lg-grid-cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lg-grid-cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .xl-grid-cols-4 { grid-template-columns: repeat(4, 1fr); } }

/* Card */
.card {
  background: #fff; border-radius: 16px; border: 1px solid #f1f5f9;
  overflow: hidden; transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-2px); }
.card-img { width: 100%; height: 140px; object-fit: cover; }
.card-body { padding: 16px; }
.card-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 10px;
}
.card-title { font-size: 1rem; font-weight: 700; color: #111827; margin-bottom: 6px; }
.card-desc { font-size: 0.8rem; color: #64748b; line-height: 1.5; margin-bottom: 12px; }
.card-meta { display: flex; align-items: center; gap: 12px; font-size: 0.75rem; color: #94a3b8; }
.card-meta span { display: flex; align-items: center; gap: 4px; }
.card-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  padding: 2px 10px; border-radius: 999px;
}
.card-badge.level { background: #111827; color: #fff; }
.card-badge.free { background: #111827; color: #fff; }
.card-badge.archived { background: #f59e0b; color: #111827; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; padding: 12px 24px; border-radius: 12px;
  border: none; font-size: 0.9rem; transition: all 0.2s;
}
.btn-primary { background: #2563eb; color: #fff; }
.btn-primary:hover { background: #1d4ed8; }
.btn-green { background: #16a34a; color: #fff; }
.btn-green:hover { background: #15803d; }
.btn-outline {
  background: transparent; border: 1px solid #e2e8f0;
  color: #475569; padding: 8px 14px; border-radius: 12px;
}
.btn-outline:hover { border-color: #94a3b8; }
.btn-outline.active { background: #111827; color: #fff; border-color: #111827; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* Form elements */
.search-input {
  width: 100%; padding: 10px 14px 10px 40px;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
  font-size: 0.875rem; outline: none;
}
.search-input:focus { border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }
.search-wrapper { position: relative; }
.search-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: #94a3b8; font-size: 0.875rem;
}
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-8 { gap: 32px; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 20px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mr-2 { margin-right: 8px; }
.mr-3 { margin-right: 12px; }
.ml-auto { margin-left: auto; }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.leading-relaxed { line-height: 1.625; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }
.w-full { width: 100%; }
.hidden { display: none; }
.rounded-2xl { border-radius: 16px; }
.p-5 { padding: 20px; }
.p-6 { padding: 24px; }
.p-8 { padding: 32px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.py-2 { padding-top: 8px; padding-bottom: 8px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-10 { padding-top: 40px; padding-bottom: 40px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }

/* Footer */
.footer {
  background: #020617; color: #94a3b8; margin-top: 80px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 56px 24px; }
.footer-grid {
  display: grid; gap: 32px; margin-bottom: 40px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand img { height: 40px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; max-width: 280px; }
.footer h4 { color: #fff; font-size: 0.875rem; font-weight: 600; margin-bottom: 12px; }
.footer-nav button {
  display: block; background: none; border: none;
  color: #94a3b8; font-size: 0.875rem; padding: 4px 0; width: 100%; text-align: left;
}
.footer-nav button:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #1e293b; padding-top: 32px;
  font-size: 0.75rem; text-align: center; color: #64748b; line-height: 2;
}
.footer-bottom a {
  color: #40775f; text-decoration: underline;
}
.footer-bottom a:hover { color: rgba(64,119,95,0.8); }

/* Formats banner */
.formats-banner { background: #fff; padding: 64px 24px; }
.formats-inner { max-width: 1280px; margin: 0 auto; }
.formats-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .formats-grid { grid-template-columns: 1fr 1fr; } }
.formats-text h2 { font-size: 1.875rem; font-weight: 800; color: #111827; margin-bottom: 16px; }
.formats-text h2 span { color: #2563eb; }
.formats-text p { color: #64748b; font-size: 1.125rem; line-height: 1.625; }
.formats-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.format-card {
  background: #f8fafc; border-radius: 16px; padding: 20px;
}
.format-card-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  font-size: 1.25rem;
}
.format-card h4 { font-weight: 600; color: #1e293b; font-size: 0.9rem; margin-bottom: 4px; }
.format-card p { font-size: 0.75rem; color: #64748b; line-height: 1.5; }

/* About page */
.about-story { display: grid; gap: 48px; align-items: center; margin-bottom: 80px; }
@media (min-width: 1024px) { .about-story { grid-template-columns: 1fr 1fr; } }
.about-story h2 { font-size: 1.875rem; font-weight: 800; color: #111827; margin-bottom: 20px; }
.about-story p { color: #475569; line-height: 1.7; margin-bottom: 12px; }
.about-img-wrapper { position: relative; }
.about-img {
  width: 100%; height: 288px; object-fit: cover; border-radius: 16px;
}
.about-stat {
  position: absolute; bottom: -16px; right: -16px;
  background: #2563eb; color: #fff; border-radius: 16px;
  padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.about-stat-value { font-size: 1.5rem; font-weight: 800; }
.about-stat-label { font-size: 0.875rem; color: #93c5fd; }

/* Contact page */
.contact-grid { display: grid; gap: 32px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  background: #fff; border: 1px solid #f1f5f9; border-radius: 16px;
  padding: 20px; display: flex; align-items: flex-start; gap: 16px;
}
.contact-item-icon {
  width: 40px; height: 40px; background: #eff6ff; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.contact-item-label { font-size: 0.75rem; color: #94a3b8; margin-bottom: 2px; }
.contact-item-value { font-weight: 500; color: #1e293b; font-size: 0.875rem; }
.contact-faq {
  background: #eff6ff; border: 1px solid #dbeafe; border-radius: 16px;
  padding: 20px;
}
.contact-faq h4 { font-weight: 600; color: #1e293b; font-size: 0.875rem; margin-bottom: 12px; }
.contact-faq-item { margin-bottom: 8px; }
.contact-faq-q { font-size: 0.75rem; font-weight: 600; color: #334155; }
.contact-faq-a { font-size: 0.75rem; color: #64748b; }
.contact-img-wrapper { display: flex; align-items: center; justify-content: center; }
.contact-img { width: 100%; border-radius: 24px; }

/* Legal pages */
.legal-container { max-width: 48rem; margin: 0 auto; padding: 100px 24px 80px; }
.legal-container h1 { font-size: 1.875rem; font-weight: 800; color: #111827; margin-bottom: 32px; }
.legal-card {
  background: #fff; border-radius: 16px; padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.legal-card section { margin-bottom: 24px; }
.legal-card h2 { font-size: 1.125rem; font-weight: 600; color: #111827; margin-bottom: 8px; }
.legal-card p { font-size: 0.875rem; color: #475569; line-height: 1.625; }
.legal-card ul { list-style: disc; padding-left: 20px; margin-top: 8px; }
.legal-card li { font-size: 0.875rem; color: #475569; line-height: 1.625; }
.legal-footer {
  font-size: 0.75rem; color: #94a3b8; padding-top: 16px; border-top: 1px solid #f1f5f9;
  margin-top: 24px;
}

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.modal-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.modal-content {
  position: relative; background: #fff; border-radius: 16px;
  width: 100%; max-width: 28rem; padding: 24px; box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: #94a3b8; font-size: 1.25rem;
}
.modal-close:hover { color: #475569; }
.modal-title { font-size: 1.25rem; font-weight: 700; color: #111827; margin-bottom: 4px; }
.modal-subtitle { font-size: 0.875rem; color: #64748b; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: #334155; margin-bottom: 4px; }
.form-input {
  width: 100%; border: 1px solid #e2e8f0; border-radius: 12px;
  padding: 10px 16px; font-size: 0.875rem; outline: none;
}
.form-input:focus { border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }
.form-textarea {
  resize: none; min-height: 80px;
  width: 100%; border: 1px solid #e2e8f0; border-radius: 12px;
  padding: 10px 16px; font-size: 0.875rem; outline: none;
}
.form-textarea:focus { border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }
.form-error { color: #ef4444; font-size: 0.875rem; margin-bottom: 12px; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Catalogue empty */
.empty-state { text-align: center; padding: 80px 0; }
.empty-state-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state p { color: #94a3b8; }

/* Formation Detail responsive */
.detail-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}
@media (min-width: 1024px) {
  .detail-grid-sidebar {
    grid-template-columns: 1fr 360px;
  }
}
@media (max-width: 1023px) {
  .detail-desktop-only {
    display: none !important;
  }
}

/* Skeleton loader */
.skeleton-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.skeleton {
  background: #fff; border-radius: 16px; height: 288px;
  animation: shimmer 1.5s infinite; border: 1px solid #f1f5f9;
}
@keyframes shimmer {
  0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; }
}

/* OceanHero */
.ocean-hero {
  min-height: 92vh; display: flex; flex-direction: column; justify-content: center;
  position: relative; padding-top: 64px; background: #40775f; overflow: hidden;
}
.ocean-hero-bubbles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.ocean-hero-bubble {
  position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1);
  animation: bubbleFloat 25s linear infinite;
}
@keyframes bubbleFloat {
  0%, 100% { transform: translate(calc(var(--tx0,0)*1px), calc(var(--ty0,0)*1px)); }
  25% { transform: translate(calc(var(--tx1,0)*1px), calc(var(--ty1,0)*1px)); }
  50% { transform: translate(calc(var(--tx2,0)*1px), calc(var(--ty2,0)*1px)); }
  75% { transform: translate(calc(var(--tx3,0)*1px), calc(var(--ty3,0)*1px)); }
}
.ocean-hero-orb1 {
  position: absolute; top: 33%; right: 20%; width: 288px; height: 288px;
  border-radius: 50%; background: rgba(59,130,246,0.1); filter: blur(100px);
}
.ocean-hero-orb2 {
  position: absolute; bottom: 25%; left: 25%; width: 384px; height: 384px;
  border-radius: 50%; background: rgba(6,182,212,0.08); filter: blur(120px);
}
.ocean-hero-content {
  position: relative; z-index: 10; width: 100%; padding: 64px 24px;
}
.ocean-hero-inner {
  max-width: 1280px; margin: 0 auto;
}
.ocean-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #000; border: 1px solid #000;
  border-radius: 999px; padding: 6px 12px; margin-bottom: 24px;
}
.ocean-hero-badge-dot {
  width: 8px; height: 8px; flex-shrink: 0; border-radius: 50%;
  background: #22d3ee; animation: pulse 2s infinite;
}
.ocean-hero-badge-text {
  color: #a5f3fc; font-size: 0.875rem; font-weight: 600;
}
.ocean-hero h1 {
  font-size: 2.5rem; font-weight: 800; line-height: 1.05; margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
@media (min-width: 640px) { .ocean-hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .ocean-hero h1 { font-size: 4.5rem; } }
.ocean-hero h1 .white { color: #fff; }
.ocean-hero h1 .gradient {
  color: transparent; background-clip: text; -webkit-background-clip: text;
  background-image: linear-gradient(to right, #67e8f9, #93c5fd);
}
.ocean-hero h1 .word-rotate {
  display: inline-block; position: relative;
}
.ocean-hero h1 .word-rotate span {
  display: inline-block; transition: opacity 0.5s, transform 0.5s, filter 0.5s;
  color: transparent; background-clip: text; -webkit-background-clip: text;
  background-image: linear-gradient(to right, #67e8f9, #93c5fd);
}
.ocean-hero-sub {
  font-size: 1.25rem; font-weight: 700; line-height: 1.625;
  margin-bottom: 32px; max-width: 576px; color: #000;
}
@media (min-width: 640px) { .ocean-hero-sub { font-size: 1.5rem; } }
@media (min-width: 1024px) { .ocean-hero-sub { font-size: 1.875rem; } }
.ocean-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ocean-hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  overflow: hidden; line-height: 0; border: none;
}
.ocean-hero-wave svg { display: block; width: 100%; border: none; }

/* JdrBanner */
.jdr-banner {
  position: relative; z-index: 40;
}
@media (min-width: 640px) {
  .jdr-banner {
    position: fixed; top: 100px; right: 24px;
  }
}
@media (min-width: 1024px) {
  .jdr-banner { right: 64px; }
}
.jdr-card {
  display: block; width: 100%; max-width: 384px;
  overflow: hidden; border-radius: 24px; color: #000;
  text-decoration: none; background: #b8942e;
  box-shadow: 0 8px 40px rgba(184,148,46,0.35);
  animation: jdrFloat 5s ease-in-out infinite;
}
@keyframes jdrFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.jdr-card-orb1 {
  position: absolute; top: -32px; right: -32px; width: 160px; height: 160px;
  border-radius: 50%; background: rgba(253,224,71,0.3); filter: blur(60px); pointer-events: none;
}
.jdr-card-orb2 {
  position: absolute; bottom: -24px; left: -24px; width: 128px; height: 128px;
  border-radius: 50%; background: rgba(251,191,36,0.25); filter: blur(50px); pointer-events: none;
}
.jdr-card-content {
  position: relative; z-index: 10; padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.jdr-card-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,0.1); border: 1px solid rgba(0,0,0,0.2);
  color: #000; font-size: 0.875rem; font-weight: 700;
  padding: 6px 12px; border-radius: 999px;
}
.jdr-card h3 {
  font-size: 1.25rem; font-weight: 900; line-height: 1.2; margin-bottom: 6px; color: #000;
}
@media (min-width: 640px) { .jdr-card h3 { font-size: 1.5rem; } }
.jdr-card-desc {
  font-size: 0.875rem; font-weight: 600; color: rgba(0,0,0,0.8); line-height: 1.5;
}
@media (min-width: 640px) { .jdr-card-desc { font-size: 1rem; } }
.jdr-card-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.jdr-card-pill {
  font-size: 0.875rem; font-weight: 700; padding: 4px 12px;
  border-radius: 999px; background: rgba(0,0,0,0.1);
  color: #000; border: 1px solid rgba(0,0,0,0.15);
}
.jdr-card-footer {
  display: flex; align-items: center; justify-content: space-between; margin-top: 4px;
}
.jdr-card-footer-left {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 700; color: rgba(0,0,0,0.7);
}
.jdr-card-cta {
  font-size: 0.875rem; font-weight: 900; color: #000;
}

/* Loading */
.loading-screen {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh;
}
.loading-spinner {
  width: 32px; height: 32px; border: 3px solid #e2e8f0;
  border-top-color: #40775f; border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* JDR Page Animations */
@keyframes jdrFloatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.jdr-float-image { animation: jdrFloatImage 4s ease-in-out infinite; }

@keyframes jdrFloatBadge1 {
  0%, 100% { transform: translateY(-5px); }
  50% { transform: translateY(5px); }
}
.jdr-float-badge1 { animation: jdrFloatBadge1 4s ease-in-out infinite; }

@keyframes jdrFloatBadge2 {
  0%, 100% { transform: translateY(5px); }
  50% { transform: translateY(-5px); }
}
.jdr-float-badge2 { animation: jdrFloatBadge2 5s ease-in-out infinite; }

@keyframes jdrFloatSquare1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(90deg); }
}
.jdr-float-square1 { animation: jdrFloatSquare1 6s ease-in-out infinite; }

@keyframes jdrFloatSquare2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(25px) rotate(-60deg); }
}
.jdr-float-square2 { animation: jdrFloatSquare2 5s ease-in-out 1s infinite; }

@keyframes jdrFloatSquare3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(45deg); }
}
.jdr-float-square3 { animation: jdrFloatSquare3 7s ease-in-out 0.5s infinite; }

@keyframes jdrFloatSquare4 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(35px) rotate(-45deg); }
}
.jdr-float-square4 { animation: jdrFloatSquare4 4.5s ease-in-out 2s infinite; }

@keyframes jdrFloatSquare5 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(180deg); }
}
.jdr-float-square5 { animation: jdrFloatSquare5 8s ease-in-out 0.3s infinite; }

@keyframes jdrFloatCircle {
  0%, 100% { transform: translateY(-8px); }
  50% { transform: translateY(8px); }
}
.jdr-float-circle { animation: jdrFloatCircle 5s ease-in-out infinite; }

@keyframes jdrFloatDragon {
  0%, 100% { transform: translateY(8px); }
  50% { transform: translateY(-8px); }
}
.jdr-float-dragon { animation: jdrFloatDragon 6s ease-in-out infinite; }
