/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #000814 0%, #011f45 40%, #013777 70%, #011f45 100%);
  overflow: hidden;
  padding: 140px 24px 100px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(1, 55, 119, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(1, 31, 69, 0.2) 0%, transparent 60%);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1536px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease;
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.5), transparent, rgba(255, 255, 255, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 28px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  animation: fadeInUp 0.8s ease 0.2s backwards;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ===================================
   FEATURED SECTION
   =================================== */

.featured-section {
  padding: 120px 24px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #fafbfc 100%);
  position: relative;
}

.featured-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(1, 31, 69, 0.1) 50%, transparent 100%);
}

.section-header-minimal {
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(1, 31, 69, 0.08) 0%, rgba(1, 55, 119, 0.06) 100%);
  color: var(--primary-navy);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(1, 31, 69, 0.12);
  box-shadow: 
    0 2px 8px rgba(1, 31, 69, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.section-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
  transition: left 0.6s ease;
}

.section-label:hover::before {
  left: 100%;
}

.section-title-large {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  
  .featured-card-large {
    grid-column: 1;
    grid-row: 1 / 3;
  }
}

.featured-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: var(--transition-base);
  border: 1px solid rgba(1, 31, 69, 0.08);
  position: relative;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), transparent, rgba(1, 55, 119, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition-base);
}

.featured-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 64px rgba(1, 31, 69, 0.15);
}

.featured-card:hover::before {
  opacity: 1;
}

.featured-image-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.featured-card-large .featured-image-wrapper {
  height: 420px;
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover .featured-image {
  transform: scale(1.08);
}

.featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: var(--transition-base);
}

.featured-card:hover .featured-overlay {
  opacity: 1;
}

.featured-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--primary-navy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border: 1px solid rgba(1, 31, 69, 0.08);
  position: relative;
  overflow: hidden;
}

.featured-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(1, 31, 69, 0.15), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.featured-content {
  padding: 40px;
  text-align: left;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.featured-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.3;
  transition: var(--transition-base);
}

.featured-card-large .featured-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 20px;
  line-height: 1.25;
}

.featured-card:hover .featured-title {
  color: var(--primary-blue);
}

.featured-excerpt {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.featured-card-large .featured-excerpt {
  font-size: 1.125rem;
  line-height: 1.9;
  margin-bottom: 32px;
}

.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: var(--transition-base);
}

.featured-link:hover {
  gap: 12px;
  color: var(--primary-blue);
}

.featured-link svg {
  width: 20px;
  height: 20px;
  transition: var(--transition-base);
}

/* ===================================
   GUIDES SECTION
   =================================== */

.guides-section {
  padding: 100px 24px;
  background: #ffffff;
}

.section-header-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-top: 16px;
}

.guides-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.guide-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(1, 31, 69, 0.06);
  transition: var(--transition-base);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(1, 31, 69, 0.12);
  border-color: rgba(1, 31, 69, 0.15);
}

.guide-image-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.guide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.guide-card:hover .guide-image {
  transform: scale(1.06);
}

.guide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  opacity: 0;
  transition: var(--transition-base);
}

.guide-card:hover .guide-overlay {
  opacity: 1;
}

.guide-badge-wrapper {
  position: absolute;
  top: 16px;
  left: 16px;
}

.guide-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 100px;
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--primary-navy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 
    0 3px 12px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border: 1px solid rgba(1, 31, 69, 0.08);
}

.guide-content {
  padding: 32px;
  text-align: left;
}

.guide-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.guide-meta svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.guide-title {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.4;
  transition: var(--transition-base);
}

.guide-card:hover .guide-title {
  color: var(--primary-blue);
}

.guide-excerpt {
  color: var(--text-gray);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.guide-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--transition-base);
}

.guide-link:hover {
  gap: 10px;
  color: var(--primary-blue);
}

.guide-link svg {
  width: 16px;
  height: 16px;
}

/* ===================================
   STARTER PACK SECTION
   =================================== */

.starter-pack-section {
  padding: 120px 24px;
  background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.starter-pack-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.starter-pack-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(1, 55, 119, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.starter-pack-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.starter-pack-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.08) 100%);
  color: #b8941f;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 
    0 2px 12px rgba(212, 175, 55, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.starter-pack-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.starter-pack-badge svg {
  width: 16px;
  height: 16px;
}

.starter-pack-title {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.starter-pack-subtitle {
  font-size: 1.5rem;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 16px;
}

.starter-pack-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 32px;
}

.starter-pack-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(1, 31, 69, 0.03);
  border-radius: 12px;
  transition: var(--transition-base);
}

.feature-item:hover {
  background: rgba(1, 31, 69, 0.06);
  transform: translateX(4px);
}

.feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-navy);
  color: white;
  border-radius: 8px;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
}

.feature-item span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.starter-pack-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--primary-navy);
  color: white;
  font-weight: 700;
  font-size: 1.0625rem;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(1, 31, 69, 0.3);
  transition: var(--transition-base);
}

.starter-pack-btn:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 31, 69, 0.4);
  gap: 16px;
}

.starter-pack-btn svg {
  width: 20px;
  height: 20px;
}

.starter-pack-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  padding: 56px 48px;
  background: linear-gradient(135deg, #001a3d 0%, #011f45 50%, #013777 100%);
  border-radius: 32px;
  text-align: center;
  color: white;
  box-shadow: 
    0 32px 64px rgba(1, 31, 69, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  max-width: 440px;
  position: relative;
  overflow: hidden;
}

.visual-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.visual-icon-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.visual-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
}

.visual-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), transparent, rgba(1, 55, 119, 0.4));
  border-radius: 26px;
  z-index: -1;
  opacity: 0.6;
}

.visual-icon svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.visual-card h4 {
  font-size: 1.75rem;
  color: white;
  margin-bottom: 16px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}

.visual-card p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ===================================
   EXPERT SECTION
   =================================== */

.expert-section {
  padding: 120px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  position: relative;
}

.expert-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.expert-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.expert-image-frame {
  position: relative;
  width: 360px;
  height: 360px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 
    0 32px 64px rgba(1, 31, 69, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  border: 5px solid var(--primary-navy);
}

.expert-image-frame::before {
  content: '';
  position: absolute;
  inset: -5px;
  background: linear-gradient(135deg, var(--accent-gold), var(--primary-blue));
  border-radius: 32px;
  z-index: -1;
  opacity: 0.3;
}

.expert-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
}

.expert-awards {
  position: absolute;
  bottom: -20px;
  right: -20px;
}

.award-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #d4af37 0%, #c9a02e 100%);
  color: white;
  font-weight: 800;
  font-size: 0.9375rem;
  border-radius: 100px;
  box-shadow: 
    0 8px 32px rgba(212, 175, 55, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.award-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

.award-badge svg {
  width: 20px;
  height: 20px;
}

.expert-label {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(1, 31, 69, 0.08) 0%, rgba(1, 55, 119, 0.06) 100%);
  color: var(--primary-navy);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(1, 31, 69, 0.12);
  box-shadow: 
    0 2px 8px rgba(1, 31, 69, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.expert-name {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 800;
}

.expert-title {
  font-size: 1.25rem;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 32px;
  line-height: 1.5;
}

.expert-bio {
  margin-bottom: 32px;
}

.expert-bio p {
  font-size: 1.0625rem;
  color: var(--text-gray);
  line-height: 1.9;
  margin-bottom: 20px;
}

.expert-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: rgba(1, 31, 69, 0.05);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.credential-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary-navy);
}

/* ===================================
   FINAL CTA SECTION
   =================================== */

.final-cta-section {
  position: relative;
  padding: 140px 24px;
  background: linear-gradient(135deg, #000814 0%, #011f45 30%, #013777 60%, #011f45 90%, #000814 100%);
  overflow: hidden;
}

.final-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 35%, rgba(212, 175, 55, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 75% 65%, rgba(1, 55, 119, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(1, 31, 69, 0.15) 0%, transparent 60%);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: clamp(3rem, 6vw, 5rem);
  color: white;
  margin-bottom: 24px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.final-cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 48px;
  line-height: 1.7;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 48px;
  font-weight: 700;
  font-size: 1.0625rem;
  border-radius: 100px;
  transition: var(--transition-base);
  min-width: 280px;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: var(--primary-navy);
  box-shadow: 
    0 8px 32px rgba(255, 255, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.cta-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: left 0.6s ease;
}

.cta-btn-primary:hover::before {
  left: 100%;
}

.cta-btn-primary:hover {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  transform: translateY(-4px);
  box-shadow: 
    0 16px 48px rgba(255, 255, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  gap: 16px;
}

.cta-btn-primary svg {
  width: 20px;
  height: 20px;
}

.cta-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

.final-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  font-weight: 500;
}

.final-cta-trust svg {
  width: 20px;
  height: 20px;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (min-width: 768px) {
  
  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .starter-pack-content {
    grid-template-columns: 1.2fr 1fr;
  }
  
  .starter-pack-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .expert-content {
    grid-template-columns: 1fr 1.5fr;
  }
  
  .final-cta-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .guides-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .featured-card-large .featured-content {
    padding: 48px;
  }
  
  .featured-card-large .featured-image-wrapper {
    height: 500px;
  }
  
  .featured-card-large .featured-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
  }
}

.final-cta-buttons {
	justify-content: center;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display'!important; }

@media (min-width: 1536px) {
    section .container {
        max-width: 1536px!important;
    }
}

#navbar {
	visibility: visible;
}

.featured-link { position: relative; z-index: 999999; }