/* ==========================================================================
   ZOOTOM SAFETY PAGE — Hero Section Styles
   Extends the main design system (style.css).
   All classes prefixed with "safety-" for clean encapsulation.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Active Navigation Indicator for Safety Page
   -------------------------------------------------------------------------- */
.desktop-nav .nav-link[href="safety.html"].active {
  color: var(--color-primary);
  font-weight: 600;
  position: relative;
}

.desktop-nav .nav-link[href="safety.html"].active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 4px;
  right: 4px;
  height: 2.5px;
  background: var(--color-accent-purple);
  border-radius: var(--radius-pill);
}

/* --------------------------------------------------------------------------
   Safety Hero Section Shell
   -------------------------------------------------------------------------- */
.safety-hero-section {
  position: relative;
  padding-top: 64px;
  padding-bottom: 84px;
  background-color: #ffffff;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Background Ambient Lighting & Glow
   -------------------------------------------------------------------------- */
.safety-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.safety-bg-glow-purple {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(196, 181, 253, 0.05) 50%, transparent 75%);
  border-radius: 50%;
  filter: blur(60px);
  animation: safetyGlowPulse 8s ease-in-out infinite alternate;
}

.safety-bg-glow-subtle {
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
}

/* --------------------------------------------------------------------------
   Hero Grid Layout
   -------------------------------------------------------------------------- */
.safety-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

/* --------------------------------------------------------------------------
   Left Column: Content
   -------------------------------------------------------------------------- */
.safety-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Badge */
.safety-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #f5f3ff;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-pill);
  color: #6d28d9;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.safety-hero-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.14);
}

.safety-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #7c3aed;
  flex-shrink: 0;
}

.safety-badge-icon svg {
  width: 100%;
  height: 100%;
}

/* Title */
.safety-hero-title {
  font-size: clamp(2.5rem, 4.2vw, 3.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #111827;
  margin-bottom: 22px;
}

.safety-title-main {
  display: block;
  color: #111827;
}

.safety-title-gradient {
  display: block;
  background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 40%, #8b5cf6 75%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Supporting Paragraph */
.safety-hero-description {
  font-size: 1.125rem;
  line-height: 1.65;
  color: #4b5563;
  max-width: 530px;
  margin-bottom: 40px;
  font-weight: 450;
}

/* --------------------------------------------------------------------------
   Three Safety Highlights
   -------------------------------------------------------------------------- */
.safety-hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 620px;
}

.safety-highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: transform var(--transition-fast);
}

.safety-highlight-card:hover {
  transform: translateY(-2px);
}

/* Highlight Icon Container */
.safety-highlight-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.safety-highlight-icon-wrap svg {
  width: 20px;
  height: 20px;
}

/* Highlight Themes */
.safety-highlight-icon-purple {
  background: #ede9fe;
  color: #7c3aed;
}

.safety-highlight-icon-green {
  background: #d1fae5;
  color: #10b981;
}

.safety-highlight-icon-yellow {
  background: #fef3c7;
  color: #d97706;
}

/* Highlight Text Info */
.safety-highlight-info {
  display: flex;
  flex-direction: column;
}

.safety-highlight-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
  line-height: 1.2;
}

.safety-highlight-desc {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #6b7280;
  font-weight: 450;
}

/* --------------------------------------------------------------------------
   Right Column: 3D Shield Visual
   -------------------------------------------------------------------------- */
.safety-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.safety-visual-inner {
  position: relative;
  width: 100%;
  max-width: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glow Backdrop */
.safety-visual-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, rgba(167, 139, 250, 0.10) 45%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

/* Main 3D Shield Image */
.safety-shield-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(124, 58, 237, 0.18));
  animation: safetyShieldFloat 6s ease-in-out infinite;
  user-select: none;
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes safetyShieldFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.8deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes safetyGlowPulse {
  0% {
    opacity: 0.6;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* --------------------------------------------------------------------------
   SECTION 2: Our 5 Layers of Protection
   -------------------------------------------------------------------------- */
.safety-layers-section {
  position: relative;
  padding-top: 72px;
  padding-bottom: 88px;
  background-color: #ffffff;
}

.safety-layers-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.safety-layers-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 12px;
}

.safety-layers-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #111827;
  line-height: 1.2;
}

/* Connected 5 Cards Grid */
.safety-layers-wrapper {
  position: relative;
  width: 100%;
}

/* Dotted Connector Line */
.safety-layers-connector {
  position: absolute;
  top: 56px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: radial-gradient(circle, #a78bfa 1.5px, transparent 1.5px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  z-index: 0;
  pointer-events: none;
}

.safety-layers-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.safety-layer-card {
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 22px;
  padding: 30px 18px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 18px -2px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.safety-layer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px -4px rgba(124, 58, 237, 0.10);
  border-color: rgba(139, 92, 246, 0.35);
}

/* Card Icon Circle */
.safety-layer-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-bounce);
}

.safety-layer-card:hover .safety-layer-icon-wrap {
  transform: scale(1.08);
}

.safety-layer-icon-wrap svg {
  width: 24px;
  height: 24px;
}

/* Card Specific Color Schemes */
.safety-layer-icon-purple {
  background: #ede9fe;
  color: #7c3aed;
}

.safety-layer-icon-green {
  background: #d1fae5;
  color: #10b981;
}

.safety-layer-icon-yellow {
  background: #fef3c7;
  color: #f59e0b;
}

.safety-layer-icon-coral {
  background: #ffe4e6;
  color: #f43f5e;
}

.safety-layer-icon-blue {
  background: #dbeafe;
  color: #3b82f6;
}

/* Step Number */
.safety-layer-num {
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.safety-layer-num-purple { color: #7c3aed; }
.safety-layer-num-green  { color: #10b981; }
.safety-layer-num-yellow { color: #f59e0b; }
.safety-layer-num-coral  { color: #f43f5e; }
.safety-layer-num-blue   { color: #3b82f6; }

/* Step Title */
.safety-layer-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
  margin-bottom: 10px;
}

/* Step Description */
.safety-layer-text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #6b7280;
  font-weight: 450;
}

/* --------------------------------------------------------------------------
   SECTION 3: AI + Human. Stronger Together.
   -------------------------------------------------------------------------- */
.safety-synergy-section {
  position: relative;
  padding-top: 24px;
  padding-bottom: 96px;
  background-color: #ffffff;
}

.safety-synergy-card {
  position: relative;
  background: linear-gradient(135deg, #faf8ff 0%, #f6f3ff 50%, #fbfaff 100%);
  border: 1px solid rgba(139, 92, 246, 0.16);
  border-radius: 28px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 48px;
  box-shadow: 0 10px 32px -4px rgba(124, 58, 237, 0.04);
  overflow: hidden;
}

/* Ambient subtle background glow for synergy card */
.safety-synergy-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Left Content */
.safety-synergy-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.safety-synergy-title {
  font-size: clamp(1.85rem, 2.8vw, 2.35rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #111827;
  margin-bottom: 16px;
}

.safety-synergy-desc {
  font-size: 0.96875rem;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 24px;
  max-width: 440px;
  font-weight: 450;
}

.safety-synergy-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7c3aed;
  font-size: 0.9375rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.safety-synergy-link:hover {
  color: #6d28d9;
  transform: translateX(3px);
}

.safety-synergy-link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.safety-synergy-link:hover svg {
  transform: translateX(4px);
}

/* Right Visual (Diagram) */
.safety-synergy-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  width: 100%;
}

/* Concentric Radar Rings */
.safety-radar-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  pointer-events: none;
}

.safety-radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(139, 92, 246, 0.28);
}

.safety-radar-ring-1 {
  width: 110px;
  height: 110px;
}

.safety-radar-ring-2 {
  width: 180px;
  height: 180px;
}

.safety-radar-ring-3 {
  width: 240px;
  height: 240px;
}

/* Diagram Connecting Line */
.safety-diagram-line {
  position: absolute;
  top: 50%;
  left: 12%;
  right: 12%;
  height: 2px;
  transform: translateY(-50%);
  background: radial-gradient(circle, #8b5cf6 1.5px, transparent 1.5px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  z-index: 1;
}

/* Diagram Flow Layout */
.safety-diagram-flow {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 480px;
  gap: 16px;
}

/* Pill Node */
.safety-node-pill {
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 9999px;
  padding: 8px 18px 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.safety-node-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.08);
}

.safety-node-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.safety-node-icon svg {
  width: 18px;
  height: 18px;
}

.safety-node-icon-ai {
  background: #ede9fe;
  color: #7c3aed;
}

.safety-node-icon-human {
  background: #dbeafe;
  color: #3b82f6;
}

.safety-node-text {
  display: flex;
  flex-direction: column;
}

.safety-node-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.safety-node-subtitle {
  font-size: 0.71875rem;
  color: #6b7280;
  line-height: 1.2;
}

/* Central Shield Badge */
.safety-node-shield-center {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.36);
  flex-shrink: 0;
  position: relative;
  z-index: 4;
  animation: safetyCenterPulse 3s ease-in-out infinite;
}

.safety-node-shield-center svg {
  width: 28px;
  height: 28px;
}

@keyframes safetyCenterPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.36);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.48);
  }
}

/* --------------------------------------------------------------------------
   SECTION 4: Safety Tools For Everyone
   -------------------------------------------------------------------------- */
.safety-tools-section {
  position: relative;
  padding-top: 16px;
  padding-bottom: 84px;
  background-color: #ffffff;
}

.safety-tools-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}

.safety-tools-title {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 12px;
}

.safety-tools-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #6b7280;
  font-weight: 450;
}

/* 4 Tools Grid */
.safety-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.safety-tool-card {
  border-radius: 24px;
  padding: 36px 22px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 18px -2px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.safety-tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px -4px rgba(0, 0, 0, 0.08);
}

/* Card Pastels */
.safety-tool-card-report {
  background: #fbf9ff;
  border-color: rgba(139, 92, 246, 0.12);
}

.safety-tool-card-block {
  background: #f2faf6;
  border-color: rgba(16, 185, 129, 0.12);
}

.safety-tool-card-privacy {
  background: #fdfcf3;
  border-color: rgba(245, 158, 11, 0.12);
}

.safety-tool-card-alerts {
  background: #fff5f5;
  border-color: rgba(239, 68, 68, 0.12);
}

/* Icon Container */
.safety-tool-icon-wrap {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform var(--transition-bounce);
}

.safety-tool-card:hover .safety-tool-icon-wrap {
  transform: scale(1.1);
}

.safety-tool-icon-wrap svg {
  width: 36px;
  height: 36px;
}

.safety-tool-icon-report { color: #8b5cf6; }
.safety-tool-icon-block  { color: #10b981; }
.safety-tool-icon-privacy { color: #f59e0b; }
.safety-tool-icon-alerts { color: #f43f5e; }

/* Tool Title & Text */
.safety-tool-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
  margin-bottom: 8px;
}

.safety-tool-text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #6b7280;
  font-weight: 450;
}

/* --------------------------------------------------------------------------
   SECTION 5: For Parents
   -------------------------------------------------------------------------- */
.safety-parents-section {
  position: relative;
  padding-top: 16px;
  padding-bottom: 96px;
  background-color: #ffffff;
}

.safety-parents-card {
  position: relative;
  background: linear-gradient(135deg, #f8f5ff 0%, #fbf9ff 50%, #f4f0ff 100%);
  border: 1px solid rgba(139, 92, 246, 0.16);
  border-radius: 28px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 48px;
  box-shadow: 0 10px 32px -4px rgba(124, 58, 237, 0.04);
  overflow: hidden;
}

/* Left Visual */
.safety-parents-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.safety-parents-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(124, 58, 237, 0.12));
  transition: transform var(--transition-normal);
}

.safety-parents-card:hover .safety-parents-img {
  transform: translateY(-4px);
}

/* Right Content */
.safety-parents-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.safety-parents-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 12px;
}

.safety-parents-title {
  font-size: clamp(1.85rem, 2.8vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #111827;
  margin-bottom: 16px;
}

.safety-parents-desc {
  font-size: 0.96875rem;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 24px;
  max-width: 460px;
  font-weight: 450;
}

.safety-parents-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7c3aed;
  font-size: 0.9375rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.safety-parents-link:hover {
  color: #6d28d9;
  transform: translateX(3px);
}

.safety-parents-link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.safety-parents-link:hover svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   SECTION 6: Our Commitment
   -------------------------------------------------------------------------- */
.safety-commitment-section {
  position: relative;
  padding-top: 0;
  padding-bottom: 72px;
  background-color: #ffffff;
}

.safety-commitment-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 30px;
  background: linear-gradient(105deg, #fbfaff 0%, #ffffff 72%);
  border: 1px solid rgba(139, 92, 246, 0.16);
  border-radius: 20px;
  box-shadow: 0 8px 24px -8px rgba(124, 58, 237, 0.08);
}

.safety-commitment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  color: #7c3aed;
  background: #f0ebff;
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 50%;
}

.safety-commitment-icon svg {
  width: 34px;
  height: 34px;
}

.safety-commitment-content {
  flex: 1;
  min-width: 0;
}

.safety-commitment-title {
  margin-bottom: 5px;
  color: #111827;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.25;
}

.safety-commitment-text {
  max-width: 760px;
  color: #6b7280;
  font-size: 0.8125rem;
  line-height: 1.55;
  font-weight: 450;
}

.safety-commitment-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 18px;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.safety-commitment-button:hover {
  color: #6d28d9;
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1140px) {
  .safety-layers-grid {
    gap: 14px;
  }

  .safety-layer-card {
    padding: 24px 14px 20px;
  }

  .safety-synergy-card {
    padding: 44px 36px;
    gap: 36px;
  }

  .safety-parents-card {
    padding: 40px 36px;
    gap: 36px;
  }

  .safety-commitment-card {
    padding: 22px 24px;
  }

  .safety-tools-grid {
    gap: 16px;
  }
}

@media (max-width: 992px) {
  .safety-layers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .safety-layers-connector {
    display: none;
  }

  .safety-synergy-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 28px;
  }

  .safety-synergy-content {
    align-items: center;
    text-align: center;
  }

  .safety-synergy-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .safety-synergy-visual {
    margin-top: 12px;
  }

  .safety-tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .safety-parents-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 28px;
  }

  .safety-parents-content {
    align-items: center;
    text-align: center;
  }

  .safety-parents-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .safety-parents-visual {
    margin-bottom: 8px;
  }

  .safety-commitment-card {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .safety-hero-section {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .safety-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .safety-hero-content {
    align-items: center;
    text-align: center;
  }

  .safety-hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .safety-hero-highlights {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .safety-hero-visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .safety-shield-img {
    max-width: 360px;
  }

  .safety-layers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .safety-diagram-flow {
    flex-direction: row;
    gap: 10px;
  }

  .safety-node-pill {
    padding: 6px 12px 6px 8px;
  }
}

@media (max-width: 580px) {
  .safety-hero-section {
    padding-top: 36px;
    padding-bottom: 52px;
  }

  .safety-hero-title {
    font-size: 2.25rem;
  }

  .safety-hero-description {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .safety-hero-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 320px;
  }

  .safety-highlight-card {
    background: #fdfdfd;
    border: 1px solid var(--color-border-subtle);
    padding: 12px 14px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
  }

  .safety-shield-img {
    max-width: 290px;
  }

  .safety-layers-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .safety-diagram-flow {
    flex-direction: column;
    gap: 16px;
  }

  .safety-diagram-line {
    display: none;
  }

  .safety-radar-rings {
    display: none;
  }

  .safety-tools-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }

  .safety-parents-card {
    padding: 32px 20px;
  }

  .safety-commitment-section {
    padding-bottom: 56px;
  }

  .safety-commitment-card {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 20px;
    text-align: center;
  }

  .safety-commitment-text {
    margin-left: auto;
    margin-right: auto;
  }

  .safety-commitment-button {
    width: 100%;
  }
}


