/* ===== FRAMEWORK PAGE IMPROVEMENTS ===== */
/* Professional, tech-focused framework pages with stunning modern design */
/* Inspired by industry-page-improvements.css design system */

/* ===== FRAMEWORK HERO SECTION ===== */

.framework-hero {
  background: linear-gradient(135deg, var(--navy, #0A2342) 0%, var(--slate, #2C3E50) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: var(--s-8, 80px) 0;
}

/* Animated floating orbs for depth and visual interest */
.framework-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.framework-hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.05);
  }
}

.framework-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

/* Framework Header */
.framework-header {
  text-align: center;
  margin-bottom: var(--s-6, 48px);
}

/* Hide the logo image for now, use icon placeholder */
.framework-logo {
  display: none;
}

/* Stunning 3D-style framework icon */
.icon-placeholder.framework-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--s-5, 32px);
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.25) 0%, rgba(46, 204, 113, 0.25) 100%);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.15),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  color: white;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  position: relative;
}

.icon-placeholder.framework-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  border-radius: 28px;
  pointer-events: none;
}

.icon-placeholder.framework-icon:hover {
  transform: scale(1.08) rotate(-3deg);
  box-shadow:
    0 16px 56px rgba(0, 0, 0, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.15),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.framework-intro {
  text-align: center;
}

/* Premium category badge */
.framework-category {
  display: inline-block;
  background: linear-gradient(135deg, var(--sky, #4FC3F7) 0%, var(--emerald, #2ECC71) 100%);
  color: white;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-4, 24px);
  box-shadow: 0 6px 16px rgba(79, 195, 247, 0.35);
  position: relative;
  overflow: hidden;
}

.framework-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.framework-category:hover::before {
  left: 100%;
}

/* Massive, impactful heading */
.framework-hero h1 {
  color: white;
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: var(--s-4, 24px);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* Eye-catching tagline */
.framework-tagline {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  color: var(--emerald, #2ECC71);
  margin-bottom: var(--s-4, 24px);
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
}

.framework-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--s-6, 48px);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.framework-links {
  margin-bottom: var(--s-6, 48px);
}

/* Premium external link styling */
.external-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 700;
  font-size: 1.0625rem;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 12px;
  background: rgba(79, 195, 247, 0.15);
  border: 2px solid rgba(79, 195, 247, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.external-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.external-link:hover {
  background: rgba(79, 195, 247, 0.25);
  border-color: rgba(79, 195, 247, 0.6);
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(79, 195, 247, 0.3);
}

.external-link:hover::before {
  left: 100%;
}

/* Glass-morphism key features panel */
.key-features {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-3, 20px);
  padding: var(--s-7, 56px) var(--s-6, 40px);
  margin-bottom: var(--s-6, 48px);
  backdrop-filter: blur(16px);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

.key-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky, #4FC3F7) 0%, var(--emerald, #2ECC71) 100%);
  border-radius: var(--radius-3, 20px) var(--radius-3, 20px) 0 0;
}

.key-features h3 {
  color: white;
  margin-bottom: var(--s-5, 32px);
  font-size: 1.75rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.features-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--s-4, 20px);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .features-list {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-5, 28px);
  }
}

.features-list li {
  padding-left: 48px;
  position: relative;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.7;
  font-size: 1.0625rem;
  font-weight: 500;
}

/* Premium checkmark circles */
.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: white;
  font-weight: 800;
  font-size: 1.125rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--emerald, #2ECC71) 0%, #27AE60 100%);
  border-radius: 50%;
  top: -4px;
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.framework-actions {
  display: flex;
  gap: var(--s-4, 20px);
  justify-content: center;
  flex-wrap: wrap;
}

.framework-actions .btn {
  min-width: 220px;
  padding: 16px 40px;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border-radius: 12px;
}

.framework-actions .btn-primary {
  background: linear-gradient(135deg, var(--emerald, #2ECC71) 0%, #27AE60 100%);
  border: none;
  box-shadow: 0 8px 24px rgba(46, 204, 113, 0.4);
}

.framework-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(46, 204, 113, 0.5);
}

.framework-actions .btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
}

.framework-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}


/* ===== FRAMEWORK OVERVIEW SECTION ===== */

.framework-overview {
  background: white;
  padding: var(--s-8, 80px) 0;
}

.framework-overview h2 {
  text-align: center;
  margin-bottom: var(--s-6, 48px);
  color: var(--navy, #0A2342);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  position: relative;
  display: inline-block;
  width: 100%;
}

.framework-overview h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--sky, #4FC3F7) 0%, var(--emerald, #2ECC71) 100%);
  border-radius: 2px;
}

.overview-content {
  max-width: 850px;
  margin: 0 auto;
}

.overview-content p {
  font-size: 1.1875rem;
  line-height: 1.85;
  color: var(--slate, #2C3E50);
  margin-bottom: var(--s-5, 32px);
}

.overview-content p:last-child {
  margin-bottom: 0;
}


/* ===== FRAMEWORK SERVICES SECTION ===== */

.framework-services {
  background: var(--gray-50, #F5F6FA);
  padding: var(--s-8, 80px) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.framework-services h2 {
  text-align: center;
  margin-bottom: var(--s-7, 64px);
  color: var(--navy, #0A2342);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  position: relative;
  display: inline-block;
  width: 100%;
}

.framework-services h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--sky, #4FC3F7) 0%, var(--emerald, #2ECC71) 100%);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  gap: var(--s-6, 40px);
  grid-template-columns: 1fr;
}

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

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

.service-card {
  background: white;
  border-radius: var(--radius-3, 20px);
  padding: var(--s-6, 48px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--sky, #4FC3F7) 0%, var(--emerald, #2ECC71) 100%);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.03) 0%, rgba(46, 204, 113, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  border-color: rgba(79, 195, 247, 0.3);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card h3 {
  color: var(--navy, #0A2342);
  margin-bottom: var(--s-4, 20px);
  font-size: 1.625rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--slate, #2C3E50);
  line-height: 1.7;
  font-size: 1.0625rem;
  position: relative;
  z-index: 1;
}


/* ===== USE CASES SECTION ===== */

.framework-use-cases {
  background: white;
  padding: var(--s-8, 80px) 0;
}

.framework-use-cases h2 {
  text-align: center;
  margin-bottom: var(--s-7, 64px);
  color: var(--navy, #0A2342);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  position: relative;
  display: inline-block;
  width: 100%;
}

.framework-use-cases h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--sky, #4FC3F7) 0%, var(--emerald, #2ECC71) 100%);
  border-radius: 2px;
}

.use-cases-grid {
  display: grid;
  gap: var(--s-6, 40px);
  grid-template-columns: 1fr;
}

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

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

.use-case-item {
  background: white;
  border-radius: var(--radius-3, 20px);
  padding: var(--s-6, 48px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.use-case-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.04) 0%, rgba(46, 204, 113, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.use-case-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  border-color: var(--sky, #4FC3F7);
}

.use-case-item:hover::before {
  opacity: 1;
}

/* Premium gradient icon circles */
.use-case-icon {
  font-size: 2rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.2) 0%, rgba(46, 204, 113, 0.2) 100%);
  border-radius: 50%;
  margin-bottom: var(--s-5, 28px);
  position: relative;
  z-index: 1;
  color: var(--emerald, #2ECC71);
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(79, 195, 247, 0.25);
  transition: all 0.3s ease;
  border: 3px solid rgba(79, 195, 247, 0.3);
}

.use-case-item:hover .use-case-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 28px rgba(79, 195, 247, 0.35);
}

.use-case-item h4 {
  color: var(--navy, #0A2342);
  margin-bottom: var(--s-4, 20px);
  font-size: 1.375rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.use-case-item p {
  color: var(--slate, #2C3E50);
  line-height: 1.7;
  font-size: 1.0625rem;
  position: relative;
  z-index: 1;
}


/* ===== TECHNOLOGIES SECTION ===== */

.framework-technologies {
  background: var(--gray-50, #F5F6FA);
  padding: var(--s-8, 80px) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.framework-technologies h2 {
  text-align: center;
  margin-bottom: var(--s-4, 24px);
  color: var(--navy, #0A2342);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  position: relative;
  display: inline-block;
  width: 100%;
}

.framework-technologies h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--sky, #4FC3F7) 0%, var(--emerald, #2ECC71) 100%);
  border-radius: 2px;
}

.section-description {
  text-align: center;
  color: var(--slate, #2C3E50);
  font-size: 1.1875rem;
  margin-bottom: var(--s-7, 64px);
  font-weight: 500;
}

.technologies-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4, 20px);
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* Premium tech tags with gradient effects */
.tech-tag {
  background: white;
  color: var(--navy, #0A2342);
  padding: 14px 28px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(79, 195, 247, 0.25);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.tech-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(79, 195, 247, 0.15), transparent);
  transition: left 0.6s ease;
}

.tech-tag:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--sky, #4FC3F7);
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.08) 0%, rgba(46, 204, 113, 0.08) 100%);
}

.tech-tag:hover::before {
  left: 100%;
}


/* ===== BENEFITS SECTION ===== */

.framework-benefits {
  background: white;
  padding: var(--s-8, 80px) 0;
}

.framework-benefits h2 {
  text-align: center;
  margin-bottom: var(--s-7, 64px);
  color: var(--navy, #0A2342);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  position: relative;
  display: inline-block;
  width: 100%;
}

.framework-benefits h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--sky, #4FC3F7) 0%, var(--emerald, #2ECC71) 100%);
  border-radius: 2px;
}

.benefits-grid {
  display: grid;
  gap: var(--s-6, 40px);
  grid-template-columns: 1fr;
}

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

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

.benefit-card {
  background: white;
  border-radius: var(--radius-3, 20px);
  padding: var(--s-6, 48px);
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.03) 0%, rgba(46, 204, 113, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(79, 195, 247, 0.4);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  font-size: 3.5rem;
  margin-bottom: var(--s-4, 24px);
  position: relative;
  z-index: 1;
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.benefit-card h3 {
  color: var(--navy, #0A2342);
  margin-bottom: var(--s-4, 20px);
  font-size: 1.375rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.benefit-card p {
  color: var(--slate, #2C3E50);
  line-height: 1.7;
  font-size: 1.0625rem;
  position: relative;
  z-index: 1;
}


/* ===== FRAMEWORK CTA SECTION ===== */

.framework-cta {
  background: linear-gradient(135deg, var(--navy, #0A2342) 0%, var(--slate, #2C3E50) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: var(--s-8, 80px) 0;
}

/* Multiple animated orbs for depth */
.framework-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 15s ease-in-out infinite;
}

.framework-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 20s ease-in-out infinite reverse;
}

.framework-cta .cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.framework-cta h2 {
  color: white;
  margin-bottom: var(--s-5, 32px);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.framework-cta p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--s-6, 48px);
  font-size: 1.3125rem;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: var(--s-4, 20px);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn {
  min-width: 240px;
  padding: 18px 48px;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cta-actions .btn-primary {
  background: linear-gradient(135deg, var(--emerald, #2ECC71) 0%, #27AE60 100%);
  border: none;
  box-shadow: 0 8px 24px rgba(46, 204, 113, 0.4);
}

.cta-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(46, 204, 113, 0.5);
}

.cta-actions .btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
}

.cta-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}


/* ===== RELATED FRAMEWORKS SECTION ===== */

.related-frameworks {
  background: var(--gray-50, #F5F6FA);
  padding: var(--s-8, 80px) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.related-frameworks h2 {
  text-align: center;
  margin-bottom: var(--s-7, 64px);
  color: var(--navy, #0A2342);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  position: relative;
  display: inline-block;
  width: 100%;
}

.related-frameworks h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--sky, #4FC3F7) 0%, var(--emerald, #2ECC71) 100%);
  border-radius: 2px;
}

.frameworks-grid {
  display: grid;
  gap: var(--s-5, 32px);
  grid-template-columns: 1fr;
}

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

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

.framework-link-card {
  background: white;
  border-radius: var(--radius-2, 16px);
  padding: var(--s-6, 40px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.framework-link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.04) 0%, rgba(46, 204, 113, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.framework-link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--sky, #4FC3F7);
}

.framework-link-card:hover::before {
  opacity: 1;
}

.framework-link-card h4 {
  margin-bottom: var(--s-3, 16px);
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.framework-link-card h4 a {
  color: var(--navy, #0A2342);
  text-decoration: none;
  transition: color 0.3s ease;
}

.framework-link-card:hover h4 a {
  color: var(--sky, #4FC3F7);
}

.framework-link-card p {
  color: var(--slate, #2C3E50);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}


/* ===== RESPONSIVE ADJUSTMENTS ===== */

@media (max-width: 767px) {
  .framework-hero {
    padding: var(--s-7, 56px) 0;
  }

  .icon-placeholder.framework-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
    border-radius: 24px;
  }

  .key-features {
    padding: var(--s-6, 40px) var(--s-5, 32px);
  }

  .features-list {
    grid-template-columns: 1fr;
    gap: var(--s-4, 20px);
  }

  .framework-actions {
    flex-direction: column;
    width: 100%;
  }

  .framework-actions .btn {
    width: 100%;
  }

  .service-card,
  .use-case-item,
  .benefit-card {
    padding: var(--s-5, 36px);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .framework-overview,
  .framework-services,
  .framework-use-cases,
  .framework-technologies,
  .framework-benefits,
  .framework-cta,
  .related-frameworks {
    padding: var(--s-7, 56px) 0;
  }
}


/* ===== ACCESSIBILITY ===== */

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

@media (prefers-contrast: high) {
  .framework-hero,
  .framework-cta {
    background: var(--navy, #0A2342);
  }

  .service-card,
  .use-case-item,
  .benefit-card,
  .framework-link-card,
  .tech-tag {
    border-color: currentColor;
  }

  .key-features {
    border: 2px solid rgba(255, 255, 255, 0.5);
  }
}


/* ===== PRINT STYLES ===== */

@media print {
  .framework-hero::before,
  .framework-hero::after,
  .framework-cta::before,
  .framework-cta::after,
  .use-case-item::before,
  .service-card::before,
  .service-card::after,
  .benefit-card::before,
  .framework-link-card::before,
  .tech-tag::before {
    display: none;
  }

  .framework-hero,
  .framework-cta {
    background: white;
    color: black;
  }

  .framework-hero h1,
  .framework-hero h2,
  .framework-hero h3,
  .framework-cta h2 {
    color: black;
  }

  .framework-actions,
  .cta-actions,
  .related-frameworks {
    display: none;
  }

  .key-features {
    background: white;
    border: 2px solid black;
  }
}
